--
-- PostgreSQL database dump
--

\restrict jB9GM3HrkezWkl2zsuA7jpAtem7PR9AWRBd4EGR9Nt5EkXs61y3wthdocd55mn0

-- Dumped from database version 17.10
-- Dumped by pg_dump version 17.10

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: assessment_periods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assessment_periods (
    id integer NOT NULL,
    name character varying(100) NOT NULL,
    period_type character varying(50) NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    school_year character varying(20),
    is_active boolean DEFAULT true,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.assessment_periods OWNER TO postgres;

--
-- Name: assessment_periods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assessment_periods_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.assessment_periods_id_seq OWNER TO postgres;

--
-- Name: assessment_periods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assessment_periods_id_seq OWNED BY public.assessment_periods.id;


--
-- Name: assignments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assignments (
    id integer NOT NULL,
    lesson_id integer,
    title character varying(255) NOT NULL,
    description text,
    instructions text,
    due_date date,
    due_time time without time zone DEFAULT '15:00:00'::time without time zone,
    assignment_type character varying(50) DEFAULT 'homework'::character varying,
    point_value integer DEFAULT 100,
    weight_category character varying(50) DEFAULT 'homework'::character varying,
    allow_retake boolean DEFAULT true,
    max_retakes integer DEFAULT 3,
    passing_grade integer DEFAULT 70,
    is_active boolean DEFAULT true,
    created_by integer,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    questions jsonb
);


ALTER TABLE public.assignments OWNER TO postgres;

--
-- Name: assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assignments_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.assignments_id_seq OWNER TO postgres;

--
-- Name: assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assignments_id_seq OWNED BY public.assignments.id;


--
-- Name: attendance; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.attendance (
    id integer NOT NULL,
    student_id integer,
    attendance_date date NOT NULL,
    status character varying(50) DEFAULT 'present'::character varying,
    check_in_time time without time zone,
    check_out_time time without time zone,
    total_hours numeric(4,2),
    notes text,
    recorded_by integer,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.attendance OWNER TO postgres;

--
-- Name: attendance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attendance_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.attendance_id_seq OWNER TO postgres;

--
-- Name: attendance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attendance_id_seq OWNED BY public.attendance.id;


--
-- Name: calendar_events; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.calendar_events (
    id integer NOT NULL,
    event_date date NOT NULL,
    event_end_date date,
    event_type character varying(50) NOT NULL,
    event_name character varying(255) NOT NULL,
    is_school_day boolean DEFAULT true,
    school_year character varying(20),
    notes text,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.calendar_events OWNER TO postgres;

--
-- Name: calendar_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.calendar_events_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.calendar_events_id_seq OWNER TO postgres;

--
-- Name: calendar_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.calendar_events_id_seq OWNED BY public.calendar_events.id;


--
-- Name: comments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.comments (
    id integer NOT NULL,
    student_id integer,
    assignment_id integer,
    course_id integer,
    user_id integer,
    comment_text text NOT NULL,
    comment_type character varying(50) DEFAULT 'general'::character varying,
    is_private boolean DEFAULT false,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.comments OWNER TO postgres;

--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.comments_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.comments_id_seq OWNER TO postgres;

--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;


--
-- Name: courses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.courses (
    id integer NOT NULL,
    name character varying(255) NOT NULL,
    grade_level integer NOT NULL,
    subject character varying(100) NOT NULL,
    course_type character varying(50) DEFAULT 'core'::character varying,
    description text,
    credit_hours numeric(3,1) DEFAULT 1.0,
    is_active boolean DEFAULT true,
    created_by integer,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.courses OWNER TO postgres;

--
-- Name: courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.courses_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.courses_id_seq OWNER TO postgres;

--
-- Name: courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.courses_id_seq OWNED BY public.courses.id;


--
-- Name: daily_logs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.daily_logs (
    id integer NOT NULL,
    student_id integer,
    log_date date NOT NULL,
    total_hours numeric(5,2) DEFAULT 0,
    math_hours numeric(4,2) DEFAULT 0,
    ela_hours numeric(4,2) DEFAULT 0,
    science_hours numeric(4,2) DEFAULT 0,
    social_studies_hours numeric(4,2) DEFAULT 0,
    elective_hours numeric(4,2) DEFAULT 0,
    subjects_covered text,
    notes text,
    day_status character varying(50) DEFAULT 'school_day'::character varying,
    logged_by integer,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.daily_logs OWNER TO postgres;

--
-- Name: daily_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.daily_logs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.daily_logs_id_seq OWNER TO postgres;

--
-- Name: daily_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.daily_logs_id_seq OWNED BY public.daily_logs.id;


--
-- Name: enrollments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.enrollments (
    id integer NOT NULL,
    student_id integer,
    course_id integer,
    enrolled_date timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    status character varying(50) DEFAULT 'active'::character varying
);


ALTER TABLE public.enrollments OWNER TO postgres;

--
-- Name: enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.enrollments_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.enrollments_id_seq OWNER TO postgres;

--
-- Name: enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.enrollments_id_seq OWNED BY public.enrollments.id;


--
-- Name: grades; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.grades (
    id integer NOT NULL,
    submission_id integer,
    assignment_id integer,
    student_id integer,
    points_earned numeric(6,2),
    point_value integer DEFAULT 100,
    percentage numeric(5,2),
    letter_grade character varying(2),
    weight_category character varying(50) DEFAULT 'homework'::character varying,
    feedback text,
    graded_by integer,
    graded_date timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    is_final boolean DEFAULT true,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.grades OWNER TO postgres;

--
-- Name: grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.grades_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.grades_id_seq OWNER TO postgres;

--
-- Name: grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.grades_id_seq OWNED BY public.grades.id;


--
-- Name: lessons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.lessons (
    id integer NOT NULL,
    unit_id integer,
    title character varying(255) NOT NULL,
    description text,
    lesson_number integer NOT NULL,
    video_url character varying(500),
    video_title character varying(255),
    video_duration character varying(50),
    content text,
    supplementary_links text,
    is_active boolean DEFAULT true,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    learning_objectives text,
    instructional_content text,
    vocabulary jsonb,
    examples jsonb,
    guided_practice jsonb,
    video_source text,
    passage_title text,
    passage_type text,
    reading_passage text,
    passage_source text,
    reading_level text,
    grade_band text,
    audio_url text,
    audio_title text,
    read_aloud_available boolean DEFAULT false,
    concept_title text,
    concept_explanation text,
    formula_text text,
    step_by_step_examples jsonb,
    common_mistakes jsonb,
    materials_needed jsonb,
    safety_notes text,
    experiment_steps jsonb,
    observation_questions jsonb,
    conclusion_prompt text,
    source_title text,
    source_type text,
    source_text text,
    historical_context text,
    timeline_points jsonb,
    map_activity_prompt text,
    real_world_application text,
    video_verified boolean DEFAULT false
);


ALTER TABLE public.lessons OWNER TO postgres;

--
-- Name: lessons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.lessons_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.lessons_id_seq OWNER TO postgres;

--
-- Name: lessons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.lessons_id_seq OWNED BY public.lessons.id;


--
-- Name: notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notifications (
    id integer NOT NULL,
    user_id integer,
    student_id integer,
    notification_type character varying(50) NOT NULL,
    title character varying(255) NOT NULL,
    message text NOT NULL,
    is_read boolean DEFAULT false,
    is_emailed boolean DEFAULT false,
    priority character varying(20) DEFAULT 'normal'::character varying,
    link character varying(500),
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.notifications OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.notifications_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.notifications_id_seq OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;


--
-- Name: period_grades; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.period_grades (
    id integer NOT NULL,
    student_id integer,
    course_id integer,
    assessment_period_id integer,
    homework_avg numeric(5,2),
    quiz_avg numeric(5,2),
    test_avg numeric(5,2),
    weighted_average numeric(5,2),
    letter_grade character varying(2),
    teacher_comments text,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.period_grades OWNER TO postgres;

--
-- Name: period_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.period_grades_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.period_grades_id_seq OWNER TO postgres;

--
-- Name: period_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.period_grades_id_seq OWNED BY public.period_grades.id;


--
-- Name: retakes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.retakes (
    id integer NOT NULL,
    assignment_id integer,
    student_id integer,
    original_grade_id integer,
    new_grade_id integer,
    retake_number integer DEFAULT 1,
    reason text,
    approved_by integer,
    submitted_date timestamp without time zone,
    status character varying(50) DEFAULT 'pending'::character varying,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.retakes OWNER TO postgres;

--
-- Name: retakes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.retakes_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.retakes_id_seq OWNER TO postgres;

--
-- Name: retakes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.retakes_id_seq OWNED BY public.retakes.id;


--
-- Name: students; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.students (
    id integer NOT NULL,
    user_id integer,
    school_id character varying(50) NOT NULL,
    first_name character varying(255) NOT NULL,
    last_name character varying(255) NOT NULL,
    email character varying(255),
    password_hash character varying(255),
    date_of_birth date,
    grade_level integer NOT NULL,
    profile_image character varying(500),
    status character varying(50) DEFAULT 'active'::character varying,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.students OWNER TO postgres;

--
-- Name: students_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.students_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.students_id_seq OWNER TO postgres;

--
-- Name: students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.students_id_seq OWNED BY public.students.id;


--
-- Name: submissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.submissions (
    id integer NOT NULL,
    assignment_id integer,
    student_id integer,
    submission_date timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    submission_text text,
    submission_file_url character varying(500),
    submission_file_name character varying(255),
    hours_spent numeric(5,2) DEFAULT 0,
    status character varying(50) DEFAULT 'submitted'::character varying,
    is_retake boolean DEFAULT false,
    retake_number integer DEFAULT 0,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.submissions OWNER TO postgres;

--
-- Name: submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.submissions_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.submissions_id_seq OWNER TO postgres;

--
-- Name: submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.submissions_id_seq OWNED BY public.submissions.id;


--
-- Name: units; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.units (
    id integer NOT NULL,
    course_id integer,
    title character varying(255) NOT NULL,
    description text,
    unit_number integer NOT NULL,
    is_active boolean DEFAULT true,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.units OWNER TO postgres;

--
-- Name: units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.units_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.units_id_seq OWNER TO postgres;

--
-- Name: units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.units_id_seq OWNED BY public.units.id;


--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.users (
    id integer NOT NULL,
    email character varying(255) NOT NULL,
    password_hash character varying(255) NOT NULL,
    first_name character varying(255) NOT NULL,
    last_name character varying(255) NOT NULL,
    role character varying(50) DEFAULT 'parent'::character varying,
    phone character varying(50),
    notification_email boolean DEFAULT true,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.users OWNER TO postgres;

--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.users_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER SEQUENCE public.users_id_seq OWNER TO postgres;

--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;


--
-- Name: assessment_periods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assessment_periods ALTER COLUMN id SET DEFAULT nextval('public.assessment_periods_id_seq'::regclass);


--
-- Name: assignments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assignments ALTER COLUMN id SET DEFAULT nextval('public.assignments_id_seq'::regclass);


--
-- Name: attendance id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance ALTER COLUMN id SET DEFAULT nextval('public.attendance_id_seq'::regclass);


--
-- Name: calendar_events id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.calendar_events ALTER COLUMN id SET DEFAULT nextval('public.calendar_events_id_seq'::regclass);


--
-- Name: comments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);


--
-- Name: courses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses ALTER COLUMN id SET DEFAULT nextval('public.courses_id_seq'::regclass);


--
-- Name: daily_logs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.daily_logs ALTER COLUMN id SET DEFAULT nextval('public.daily_logs_id_seq'::regclass);


--
-- Name: enrollments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enrollments ALTER COLUMN id SET DEFAULT nextval('public.enrollments_id_seq'::regclass);


--
-- Name: grades id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades ALTER COLUMN id SET DEFAULT nextval('public.grades_id_seq'::regclass);


--
-- Name: lessons id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.lessons ALTER COLUMN id SET DEFAULT nextval('public.lessons_id_seq'::regclass);


--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass);


--
-- Name: period_grades id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.period_grades ALTER COLUMN id SET DEFAULT nextval('public.period_grades_id_seq'::regclass);


--
-- Name: retakes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes ALTER COLUMN id SET DEFAULT nextval('public.retakes_id_seq'::regclass);


--
-- Name: students id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students ALTER COLUMN id SET DEFAULT nextval('public.students_id_seq'::regclass);


--
-- Name: submissions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.submissions ALTER COLUMN id SET DEFAULT nextval('public.submissions_id_seq'::regclass);


--
-- Name: units id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.units ALTER COLUMN id SET DEFAULT nextval('public.units_id_seq'::regclass);


--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);


--
-- Data for Name: assessment_periods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assessment_periods (id, name, period_type, start_date, end_date, school_year, is_active, created_at) FROM stdin;
1	Quarter 1	quarter	2026-08-12	2026-10-16	2026-2027	t	2026-06-23 09:51:03.891491
2	Quarter 2	quarter	2026-10-19	2026-12-18	2026-2027	t	2026-06-23 09:51:03.891491
3	Midterm	midterm	2026-08-12	2026-12-18	2026-2027	t	2026-06-23 09:51:03.891491
4	Quarter 3	quarter	2027-01-04	2027-03-12	2026-2027	t	2026-06-23 09:51:03.891491
5	Quarter 4	quarter	2027-03-15	2027-05-28	2026-2027	t	2026-06-23 09:51:03.891491
6	Final	final	2026-08-12	2027-05-28	2026-2027	t	2026-06-23 09:51:03.891491
\.


--
-- Data for Name: assignments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assignments (id, lesson_id, title, description, instructions, due_date, due_time, assignment_type, point_value, weight_category, allow_retake, max_retakes, passing_grade, is_active, created_by, created_at, updated_at, questions) FROM stdin;
3	2	Comparing Numbers Practice	\N	Complete this homework assignment on "Comparing Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.130911	2026-06-23 11:23:04.130911	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 67", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "81"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 14", "difficulty": "medium", "explanation": "Multiply: 7×14=98", "needs_review": false, "correct_answer": "98"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}]
10	5	Adding Within 20 Quiz	\N	Complete this quiz on "Adding Within 20 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.136027	2026-06-23 11:23:04.136027	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 50 + 50", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "100"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["99", "110", "100", "105"], "question": "What is the sum of 50 and 50?", "difficulty": "easy", "explanation": "50+50=100", "needs_review": false, "correct_answer": "100"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 50+50 = 50+50.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 9", "difficulty": "medium", "explanation": "Multiply: 20×9=180", "needs_review": false, "correct_answer": "180"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 19", "difficulty": "medium", "explanation": "Multiply: 4×19=76", "needs_review": false, "correct_answer": "76"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 9", "difficulty": "medium", "explanation": "Multiply: 2×9=18", "needs_review": false, "correct_answer": "18"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 3", "difficulty": "medium", "explanation": "Multiply: 14×3=42", "needs_review": false, "correct_answer": "42"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}]
13	7	Subtracting Within 10 Practice	\N	Complete this homework assignment on "Subtracting Within 10 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.138762	2026-06-23 11:23:04.138762	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 103 − 79", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "24"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["25", "24", "182", "22"], "question": "What is 103 − 79?", "difficulty": "easy", "explanation": "103-79=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 14", "difficulty": "medium", "explanation": "Multiply: 11×14=154", "needs_review": false, "correct_answer": "154"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 13", "difficulty": "medium", "explanation": "Multiply: 14×13=182", "needs_review": false, "correct_answer": "182"}]
50	25	Plants and Animals Quiz	\N	Complete this quiz on "Plants and Animals Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.164079	2026-06-23 11:23:04.164079	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Soil, darkness, and oxygen", "Sand and ice", "Sunlight, water, and carbon dioxide", "Wind, rocks, and heat"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plants and Animals, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
54	27	Life Cycles Quiz	\N	Complete this quiz on "Life Cycles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.166151	2026-06-23 11:23:04.166151	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
60	30	Weather Patterns Quiz	\N	Complete this quiz on "Weather Patterns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.16978	2026-06-23 11:23:04.16978	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Precipitation", "Evaporation", "Condensation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Weather Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
66	33	Earth Materials Quiz	\N	Complete this quiz on "Earth Materials Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.173222	2026-06-23 11:23:04.173222	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Materials, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
72	36	Being a Good Citizen Quiz	\N	Complete this quiz on "Being a Good Citizen Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.17693	2026-06-23 11:23:04.17693	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Being a Good Citizen. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
912	456	Essay Writing Under Time Quiz	\N	Complete this quiz on "Essay Writing Under Time Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.636229	2026-06-23 11:23:04.636229	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
85	43	Ones and Tens Practice	\N	Complete this homework assignment on "Ones and Tens Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.185856	2026-06-23 11:23:04.185856	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 94 + 89", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "183"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 17", "difficulty": "medium", "explanation": "Multiply: 11×17=187", "needs_review": false, "correct_answer": "187"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 10", "difficulty": "medium", "explanation": "Multiply: 4×10=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}]
95	48	Word Problems Practice	\N	Complete this homework assignment on "Word Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.192201	2026-06-23 11:23:04.192201	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 93 + 60", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "153"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 6", "difficulty": "medium", "explanation": "Multiply: 6×6=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}]
105	53	Making Change Practice	\N	Complete this homework assignment on "Making Change Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.19874	2026-06-23 11:23:04.19874	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 58 + 57", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "115"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 8", "difficulty": "medium", "explanation": "Multiply: 20×8=160", "needs_review": false, "correct_answer": "160"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 3", "difficulty": "medium", "explanation": "Multiply: 8×3=24", "needs_review": false, "correct_answer": "24"}]
1058	6	Addition Basics Unit Test	\N	Complete this test on "Addition Basics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.71451	2026-06-23 11:23:04.71451	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 37 + 21", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "58"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["68", "63", "57", "58"], "question": "What is the sum of 37 and 21?", "difficulty": "easy", "explanation": "37+21=58", "needs_review": false, "correct_answer": "58"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 37+21 = 21+37.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 18", "difficulty": "medium", "explanation": "Multiply: 13×18=234", "needs_review": false, "correct_answer": "234"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 20", "difficulty": "medium", "explanation": "Multiply: 5×20=100", "needs_review": false, "correct_answer": "100"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 20", "difficulty": "medium", "explanation": "Multiply: 6×20=120", "needs_review": false, "correct_answer": "120"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 8", "difficulty": "medium", "explanation": "Multiply: 6×8=48", "needs_review": false, "correct_answer": "48"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}]
128	64	Word Families Quiz	\N	Complete this quiz on "Word Families Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.212381	2026-06-23 11:23:04.212381	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
136	68	Properties of Matter Quiz	\N	Complete this quiz on "Properties of Matter Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.216932	2026-06-23 11:23:04.216932	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Properties of Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
142	71	Speed and Direction Quiz	\N	Complete this quiz on "Speed and Direction Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.220219	2026-06-23 11:23:04.220219	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Speed and Direction, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
145	73	Plant Life Cycles Practice	\N	Complete this homework assignment on "Plant Life Cycles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.222749	2026-06-23 11:23:04.222749	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Soil, darkness, and oxygen", "Wind, rocks, and heat", "Sand and ice", "Sunlight, water, and carbon dioxide"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
14	7	Subtracting Within 10 Quiz	\N	Complete this quiz on "Subtracting Within 10 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.139156	2026-06-23 11:23:04.139156	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 80 − 35", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "45"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["45", "43", "115", "46"], "question": "What is 80 − 35?", "difficulty": "easy", "explanation": "80-35=45", "needs_review": false, "correct_answer": "45"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 14", "difficulty": "medium", "explanation": "Multiply: 10×14=140", "needs_review": false, "correct_answer": "140"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 7", "difficulty": "medium", "explanation": "Multiply: 19×7=133", "needs_review": false, "correct_answer": "133"}]
168	84	Saving and Spending Quiz	\N	Complete this quiz on "Saving and Spending Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.234882	2026-06-23 11:23:04.234882	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Saving and Spending. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
179	90	Division Word Problems Practice	\N	Complete this homework assignment on "Division Word Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.241583	2026-06-23 11:23:04.241583	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "89"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 9", "difficulty": "medium", "explanation": "Multiply: 2×9=18", "needs_review": false, "correct_answer": "18"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 9", "difficulty": "medium", "explanation": "Multiply: 4×9=36", "needs_review": false, "correct_answer": "36"}]
206	103	Subject-Verb Agreement Quiz	\N	Complete this quiz on "Subject-Verb Agreement Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.256612	2026-06-23 11:23:04.256612	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
189	95	Types of Angles Practice	\N	Complete this homework assignment on "Types of Angles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.246922	2026-06-23 11:23:04.246922	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=4", "difficulty": "medium", "explanation": "A=l×w=5×4=20 sq units.", "needs_review": false, "correct_answer": "20"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["18", "20", "9", "20"], "question": "Find the perimeter of a rectangle: length=5, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+4)=2(9)=18", "needs_review": false, "correct_answer": "18"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}]
220	110	Magnets Quiz	\N	Complete this quiz on "Magnets Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.264265	2026-06-23 11:23:04.264265	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Magnets, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
226	113	Habitats Quiz	\N	Complete this quiz on "Habitats Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.267387	2026-06-23 11:23:04.267387	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Habitats, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
238	119	Local Government Quiz	\N	Complete this quiz on "Local Government Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.274811	2026-06-23 11:23:04.274811	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Judicial (Supreme Court)", "Legislative (Congress)", "Military", "Executive (President)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Articles", "The Federalist Papers", "The Preamble", "The Bill of Rights"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Local Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
244	122	Physical Features Quiz	\N	Complete this quiz on "Physical Features Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.278105	2026-06-23 11:23:04.278105	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Physical Features. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
257	129	Estimation Practice	\N	Complete this homework assignment on "Estimation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.285291	2026-06-23 11:23:04.285291	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 58 + 54", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "112"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 11", "difficulty": "medium", "explanation": "Multiply: 5×11=55", "needs_review": false, "correct_answer": "55"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 19", "difficulty": "medium", "explanation": "Multiply: 13×19=247", "needs_review": false, "correct_answer": "247"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}]
290	145	Complex Sentences Quiz	\N	Complete this quiz on "Complex Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.303652	2026-06-23 11:23:04.303652	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
300	150	Active Listening Quiz	\N	Complete this quiz on "Active Listening Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.31115	2026-06-23 11:23:04.31115	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about a boy learning about responsibility when he loses a library book"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
275	138	Order of Operations Practice	\N	Complete this homework assignment on "Order of Operations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.295331	2026-06-23 11:23:04.295331	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 + 82", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "98"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 5", "difficulty": "medium", "explanation": "Multiply: 18×5=90", "needs_review": false, "correct_answer": "90"}]
314	157	Plant Adaptations Quiz	\N	Complete this quiz on "Plant Adaptations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.31979	2026-06-23 11:23:04.31979	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Sand and ice", "Soil, darkness, and oxygen", "Wind, rocks, and heat", "Sunlight, water, and carbon dioxide"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
321	161	Nevada Statehood Practice	\N	Complete this homework assignment on "Nevada Statehood Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.324008	2026-06-23 11:23:04.324008	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Nevada Statehood. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
328	164	Midwest and Southwest Quiz	\N	Complete this quiz on "Midwest and Southwest Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.327278	2026-06-23 11:23:04.327278	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Midwest and Southwest. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
334	167	Age of Discovery Quiz	\N	Complete this quiz on "Age of Discovery Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.330411	2026-06-23 11:23:04.330411	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Age of Discovery. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
372	186	Research Papers Quiz	\N	Complete this quiz on "Research Papers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.350416	2026-06-23 11:23:04.350416	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
347	174	Mixed Numbers Practice	\N	Complete this homework assignment on "Mixed Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.337698	2026-06-23 11:23:04.337698	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 96 + 58", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "154"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 17", "difficulty": "medium", "explanation": "Multiply: 12×17=204", "needs_review": false, "correct_answer": "204"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 17", "difficulty": "medium", "explanation": "Multiply: 10×17=170", "needs_review": false, "correct_answer": "170"}]
357	179	Ordered Pairs Practice	\N	Complete this homework assignment on "Ordered Pairs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.343124	2026-06-23 11:23:04.343124	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 57", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "71"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 12", "difficulty": "medium", "explanation": "Multiply: 19×12=228", "needs_review": false, "correct_answer": "228"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 7", "difficulty": "medium", "explanation": "Multiply: 5×7=35", "needs_review": false, "correct_answer": "35"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}]
390	195	Mixtures and Solutions Quiz	\N	Complete this quiz on "Mixtures and Solutions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.360036	2026-06-23 11:23:04.360036	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Mixtures and Solutions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
396	198	Atmosphere Quiz	\N	Complete this quiz on "Atmosphere Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.363003	2026-06-23 11:23:04.363003	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atmosphere, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
404	202	13 Colonies Quiz	\N	Complete this quiz on "13 Colonies Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.367518	2026-06-23 11:23:04.367518	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to 13 Colonies. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
410	205	Causes of the Revolution Quiz	\N	Complete this quiz on "Causes of the Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.371048	2026-06-23 11:23:04.371048	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A desire to expand westward", "Religious conflict", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Causes of the Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
414	207	Declaration of Independence Quiz	\N	Complete this quiz on "Declaration of Independence Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.37292	2026-06-23 11:23:04.37292	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "A desire to expand westward", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Declaration of Independence. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
69	35	Rules and Laws Practice	\N	Complete this homework assignment on "Rules and Laws Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.175644	2026-06-23 11:23:04.175644	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rules and Laws. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
422	211	Understanding Ratios Quiz	\N	Complete this quiz on "Understanding Ratios Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.377573	2026-06-23 11:23:04.377573	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 33 + 48", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "81"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 7", "difficulty": "medium", "explanation": "Multiply: 20×7=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 16", "difficulty": "medium", "explanation": "Multiply: 2×16=32", "needs_review": false, "correct_answer": "32"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}]
426	213	Proportional Relationships Quiz	\N	Complete this quiz on "Proportional Relationships Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.379379	2026-06-23 11:23:04.379379	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 59 + 71", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "130"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 3", "difficulty": "medium", "explanation": "Multiply: 9×3=27", "needs_review": false, "correct_answer": "27"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 20", "difficulty": "medium", "explanation": "Multiply: 5×20=100", "needs_review": false, "correct_answer": "100"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 13", "difficulty": "medium", "explanation": "Multiply: 9×13=117", "needs_review": false, "correct_answer": "117"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}]
439	220	Mean Median and Mode Practice	\N	Complete this homework assignment on "Mean Median and Mode Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.386459	2026-06-23 11:23:04.386459	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 69 + 73", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "142"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 10", "difficulty": "medium", "explanation": "Multiply: 16×10=160", "needs_review": false, "correct_answer": "160"}]
468	234	Presentations Quiz	\N	Complete this quiz on "Presentations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.401647	2026-06-23 11:23:04.401647	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
478	239	Circulatory System Quiz	\N	Complete this quiz on "Circulatory System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.407507	2026-06-23 11:23:04.407507	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Circulatory System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
484	242	Ecosystems Quiz	\N	Complete this quiz on "Ecosystems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.410522	2026-06-23 11:23:04.410522	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ecosystems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
492	246	Ancient Greece Quiz	\N	Complete this quiz on "Ancient Greece Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.41469	2026-06-23 11:23:04.41469	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Ancient Greece. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
505	253	Constant of Proportionality Practice	\N	Complete this homework assignment on "Constant of Proportionality Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.422404	2026-06-23 11:23:04.422404	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 80 + 82", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 17", "difficulty": "medium", "explanation": "Multiply: 6×17=102", "needs_review": false, "correct_answer": "102"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 9", "difficulty": "medium", "explanation": "Multiply: 12×9=108", "needs_review": false, "correct_answer": "108"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}]
512	256	Multiplying and Dividing Integers Quiz	\N	Complete this quiz on "Multiplying and Dividing Integers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.425556	2026-06-23 11:23:04.425556	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "8 groups of 11.", "needs_review": false, "correct_answer": "88"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["77", "88", "96", "19"], "question": "What is the product of 8 and 11?", "difficulty": "easy", "explanation": "8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}]
519	260	Area of Circles Practice	\N	Complete this homework assignment on "Area of Circles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.429063	2026-06-23 11:23:04.429063	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=6", "difficulty": "medium", "explanation": "A=l×w=8×6=48 sq units.", "needs_review": false, "correct_answer": "48"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["48", "14", "28", "32"], "question": "Find the perimeter of a rectangle: length=8, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+6)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 6", "difficulty": "medium", "explanation": "Multiply: 20×6=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}]
527	264	Comparing Populations Practice	\N	Complete this homework assignment on "Comparing Populations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.432919	2026-06-23 11:23:04.432919	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 83 + 87", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "170"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 5", "difficulty": "medium", "explanation": "Multiply: 20×5=100", "needs_review": false, "correct_answer": "100"}]
17	9	Subtraction Word Problems Practice	\N	Complete this homework assignment on "Subtraction Word Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.141012	2026-06-23 11:23:04.141012	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 88 − 79", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "9"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["9", "167", "10", "7"], "question": "What is 88 − 79?", "difficulty": "easy", "explanation": "88-79=9", "needs_review": false, "correct_answer": "9"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "Multiply: 4×11=44", "needs_review": false, "correct_answer": "44"}]
540	270	Argumentative Essays Quiz	\N	Complete this quiz on "Argumentative Essays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.4405	2026-06-23 11:23:04.4405	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
546	273	Misplaced Modifiers Quiz	\N	Complete this quiz on "Misplaced Modifiers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.443631	2026-06-23 11:23:04.443631	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
550	275	Connotation vs Denotation Quiz	\N	Complete this quiz on "Connotation vs Denotation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.44571	2026-06-23 11:23:04.44571	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
554	277	Genetics Basics Quiz	\N	Complete this quiz on "Genetics Basics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.448092	2026-06-23 11:23:04.448092	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Genetics Basics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
562	281	Skeletal and Muscular Systems Quiz	\N	Complete this quiz on "Skeletal and Muscular Systems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.452016	2026-06-23 11:23:04.452016	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Skeletal and Muscular Systems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
582	291	Age of Exploration Quiz	\N	Complete this quiz on "Age of Exploration Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.462364	2026-06-23 11:23:04.462364	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Age of Exploration. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
591	296	Slope Practice	\N	Complete this homework assignment on "Slope Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.467458	2026-06-23 11:23:04.467458	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 69 + 98", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "167"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 14", "difficulty": "medium", "explanation": "Multiply: 20×14=280", "needs_review": false, "correct_answer": "280"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 13", "difficulty": "medium", "explanation": "Multiply: 16×13=208", "needs_review": false, "correct_answer": "208"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 10", "difficulty": "medium", "explanation": "Multiply: 14×10=140", "needs_review": false, "correct_answer": "140"}]
601	301	Understanding Functions Practice	\N	Complete this homework assignment on "Understanding Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.472833	2026-06-23 11:23:04.472833	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 38 + 59", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "97"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}]
620	310	Thesis Statements Quiz	\N	Complete this quiz on "Thesis Statements Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.48229	2026-06-23 11:23:04.48229	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
628	314	Literary Movements Quiz	\N	Complete this quiz on "Literary Movements Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.486101	2026-06-23 11:23:04.486101	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
632	316	Formal vs Informal Writing Quiz	\N	Complete this quiz on "Formal vs Informal Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.488368	2026-06-23 11:23:04.488368	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
605	303	Function Tables Practice	\N	Complete this homework assignment on "Function Tables Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.474581	2026-06-23 11:23:04.474581	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 + 29", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "39"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}]
640	320	Elements and Compounds Quiz	\N	Complete this quiz on "Elements and Compounds Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.49255	2026-06-23 11:23:04.49255	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Ionic", "Covalent", "Hydrogen", "Metallic"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Elements and Compounds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1065	27	Living Things Unit Test	\N	Complete this test on "Living Things Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.718225	2026-06-23 11:23:04.718225	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
654	327	Climate Change Quiz	\N	Complete this quiz on "Climate Change Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.499146	2026-06-23 11:23:04.499146	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Change, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
662	331	Causes of the Civil War Quiz	\N	Complete this quiz on "Causes of the Civil War Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.503349	2026-06-23 11:23:04.503349	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "Taxation without representation", "A desire to expand westward", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Causes of the Civil War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
668	334	Industrial Revolution Quiz	\N	Complete this quiz on "Industrial Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.506861	2026-06-23 11:23:04.506861	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "Religious conflict", "A desire to expand westward", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Industrial Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
708	354	Rhetorical Analysis Quiz	\N	Complete this quiz on "Rhetorical Analysis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.527463	2026-06-23 11:23:04.527463	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
714	357	Tone and Voice Quiz	\N	Complete this quiz on "Tone and Voice Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.530655	2026-06-23 11:23:04.530655	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
682	341	Graphing Linear Inequalities Quiz	\N	Complete this quiz on "Graphing Linear Inequalities Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.514265	2026-06-23 11:23:04.514265	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 34 + 26", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "60"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 7", "difficulty": "medium", "explanation": "Multiply: 14×7=98", "needs_review": false, "correct_answer": "98"}]
688	344	Multiplying Polynomials Quiz	\N	Complete this quiz on "Multiplying Polynomials Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.517144	2026-06-23 11:23:04.517144	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 7 × 9", "difficulty": "medium", "explanation": "7 groups of 9.", "needs_review": false, "correct_answer": "63"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["70", "54", "16", "63"], "question": "What is the product of 7 and 9?", "difficulty": "easy", "explanation": "7×9=63", "needs_review": false, "correct_answer": "63"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 9", "difficulty": "medium", "explanation": "Multiply: 6×9=54", "needs_review": false, "correct_answer": "54"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 7", "difficulty": "medium", "explanation": "Multiply: 5×7=35", "needs_review": false, "correct_answer": "35"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 15", "difficulty": "medium", "explanation": "Multiply: 7×15=105", "needs_review": false, "correct_answer": "105"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}]
692	346	Graphing Quadratics Quiz	\N	Complete this quiz on "Graphing Quadratics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.519225	2026-06-23 11:23:04.519225	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 64", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "129"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 10", "difficulty": "medium", "explanation": "Multiply: 12×10=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 2", "difficulty": "medium", "explanation": "Multiply: 16×2=32", "needs_review": false, "correct_answer": "32"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 3", "difficulty": "medium", "explanation": "Multiply: 15×3=45", "needs_review": false, "correct_answer": "45"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 2", "difficulty": "medium", "explanation": "Multiply: 7×2=14", "needs_review": false, "correct_answer": "14"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 16", "difficulty": "medium", "explanation": "Multiply: 16×16=256", "needs_review": false, "correct_answer": "256"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}]
696	348	Applications of Quadratics Quiz	\N	Complete this quiz on "Applications of Quadratics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.521098	2026-06-23 11:23:04.521098	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 17", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "31"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 13", "difficulty": "medium", "explanation": "Multiply: 6×13=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}]
55	28	Types of Weather Practice	\N	Complete this homework assignment on "Types of Weather Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.167172	2026-06-23 11:23:04.167172	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Collection", "Precipitation", "Condensation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Types of Weather, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
730	365	DNA Structure Quiz	\N	Complete this quiz on "DNA Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.540088	2026-06-23 11:23:04.540088	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about DNA Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
738	369	Speciation Quiz	\N	Complete this quiz on "Speciation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.544423	2026-06-23 11:23:04.544423	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Speciation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
744	372	Human Impact Quiz	\N	Complete this quiz on "Human Impact Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.54726	2026-06-23 11:23:04.54726	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
748	374	Classical Greece and Rome Quiz	\N	Complete this quiz on "Classical Greece and Rome Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.549615	2026-06-23 11:23:04.549615	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Classical Greece and Rome. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
57	29	Four Seasons Practice	\N	Complete this homework assignment on "Four Seasons Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.16828	2026-06-23 11:23:04.16828	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Four Seasons, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
770	385	Points Lines and Planes Quiz	\N	Complete this quiz on "Points Lines and Planes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.561863	2026-06-23 11:23:04.561863	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 75 + 29", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "104"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 9", "difficulty": "medium", "explanation": "Multiply: 16×9=144", "needs_review": false, "correct_answer": "144"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 17", "difficulty": "medium", "explanation": "Multiply: 6×17=102", "needs_review": false, "correct_answer": "102"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 15", "difficulty": "medium", "explanation": "Multiply: 12×15=180", "needs_review": false, "correct_answer": "180"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 19", "difficulty": "medium", "explanation": "Multiply: 9×19=171", "needs_review": false, "correct_answer": "171"}]
782	391	Circle Properties Quiz	\N	Complete this quiz on "Circle Properties Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.56785	2026-06-23 11:23:04.56785	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 99 + 37", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "136"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 9", "difficulty": "medium", "explanation": "Multiply: 2×9=18", "needs_review": false, "correct_answer": "18"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 12", "difficulty": "medium", "explanation": "Multiply: 14×12=168", "needs_review": false, "correct_answer": "168"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 6", "difficulty": "medium", "explanation": "Multiply: 17×6=102", "needs_review": false, "correct_answer": "102"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 11", "difficulty": "medium", "explanation": "Multiply: 7×11=77", "needs_review": false, "correct_answer": "77"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 2", "difficulty": "medium", "explanation": "Multiply: 13×2=26", "needs_review": false, "correct_answer": "26"}]
786	393	Inscribed Angles Quiz	\N	Complete this quiz on "Inscribed Angles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.569563	2026-06-23 11:23:04.569563	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=7, width=5", "difficulty": "medium", "explanation": "A=l×w=7×5=35 sq units.", "needs_review": false, "correct_answer": "35"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["12", "28", "24", "35"], "question": "Find the perimeter of a rectangle: length=7, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(7+5)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 6", "difficulty": "medium", "explanation": "Multiply: 16×6=96", "needs_review": false, "correct_answer": "96"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 6", "difficulty": "medium", "explanation": "Multiply: 8×6=48", "needs_review": false, "correct_answer": "48"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 10", "difficulty": "medium", "explanation": "Multiply: 17×10=170", "needs_review": false, "correct_answer": "170"}]
800	400	Advanced Research Methods Quiz	\N	Complete this quiz on "Advanced Research Methods Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.577352	2026-06-23 11:23:04.577352	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
804	402	Synthesis Writing Quiz	\N	Complete this quiz on "Synthesis Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.5792	2026-06-23 11:23:04.5792	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
808	404	Analyzing Rhetoric Quiz	\N	Complete this quiz on "Analyzing Rhetoric Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.581183	2026-06-23 11:23:04.581183	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
814	407	Poetry Composition Quiz	\N	Complete this quiz on "Poetry Composition Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.584059	2026-06-23 11:23:04.584059	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
820	410	Periodic Table Quiz	\N	Complete this quiz on "Periodic Table Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.587633	2026-06-23 11:23:04.587633	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Periodic Table, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
824	412	Ionic Bonds Quiz	\N	Complete this quiz on "Ionic Bonds Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.589932	2026-06-23 11:23:04.589932	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ionic Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
828	414	Metallic Bonds Quiz	\N	Complete this quiz on "Metallic Bonds Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.591794	2026-06-23 11:23:04.591794	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Metallic Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
842	421	Colonial Society Quiz	\N	Complete this quiz on "Colonial Society Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.599302	2026-06-23 11:23:04.599302	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Colonial Society. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
847	424	Westward Expansion Practice	\N	Complete this homework assignment on "Westward Expansion Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.60273	2026-06-23 11:23:04.60273	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "A desire to expand westward", "Taxation without representation", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Westward Expansion. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
852	426	Manifest Destiny Quiz	\N	Complete this quiz on "Manifest Destiny Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.604924	2026-06-23 11:23:04.604924	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Manifest Destiny. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
858	429	Reconstruction Era Quiz	\N	Complete this quiz on "Reconstruction Era Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.608045	2026-06-23 11:23:04.608045	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
894	447	American Realism Quiz	\N	Complete this quiz on "American Realism Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.627018	2026-06-23 11:23:04.627018	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
900	450	Contemporary Literature Quiz	\N	Complete this quiz on "Contemporary Literature Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.630057	2026-06-23 11:23:04.630057	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
871	436	Rational Expressions Practice	\N	Complete this homework assignment on "Rational Expressions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.615565	2026-06-23 11:23:04.615565	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 80 + 88", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "168"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 4", "difficulty": "medium", "explanation": "Multiply: 10×4=40", "needs_review": false, "correct_answer": "40"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 12", "difficulty": "medium", "explanation": "Multiply: 7×12=84", "needs_review": false, "correct_answer": "84"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}]
874	437	Radical Equations Quiz	\N	Complete this quiz on "Radical Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.61664	2026-06-23 11:23:04.61664	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 8", "x = 32", "x = 4", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 12", "difficulty": "medium", "explanation": "Multiply: 11×12=132", "needs_review": false, "correct_answer": "132"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 15", "difficulty": "medium", "explanation": "Multiply: 17×15=255", "needs_review": false, "correct_answer": "255"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}]
887	444	Series and Summation Practice	\N	Complete this homework assignment on "Series and Summation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.62342	2026-06-23 11:23:04.62342	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 39 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "50"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 8", "difficulty": "medium", "explanation": "Multiply: 5×8=40", "needs_review": false, "correct_answer": "40"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 10", "difficulty": "medium", "explanation": "Multiply: 4×10=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}]
918	459	Work Energy and Power Quiz	\N	Complete this quiz on "Work Energy and Power Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.639852	2026-06-23 11:23:04.639852	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Work Energy and Power, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
922	461	Sound Waves Quiz	\N	Complete this quiz on "Sound Waves Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.6419	2026-06-23 11:23:04.6419	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Sound Waves, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
932	466	Nuclear Physics Quiz	\N	Complete this quiz on "Nuclear Physics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.646951	2026-06-23 11:23:04.646951	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Nuclear Physics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1016	508	Ocean Floor Quiz	\N	Complete this quiz on "Ocean Floor Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.691166	2026-06-23 11:23:04.691166	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Floor, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
953	477	Monetary and Fiscal Policy Practice	\N	Complete this homework assignment on "Monetary and Fiscal Policy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.658018	2026-06-23 11:23:04.658018	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Monetary and Fiscal Policy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
968	484	Trigonometric Functions Quiz	\N	Complete this quiz on "Trigonometric Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.666056	2026-06-23 11:23:04.666056	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 25 + 94", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "119"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 20", "difficulty": "medium", "explanation": "Multiply: 20×20=400", "needs_review": false, "correct_answer": "400"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 12", "difficulty": "medium", "explanation": "Multiply: 10×12=120", "needs_review": false, "correct_answer": "120"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 8", "difficulty": "medium", "explanation": "Multiply: 9×8=72", "needs_review": false, "correct_answer": "72"}]
970	485	Trigonometric Identities Quiz	\N	Complete this quiz on "Trigonometric Identities Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.66698	2026-06-23 11:23:04.66698	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 53 + 23", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "76"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 10", "difficulty": "medium", "explanation": "Multiply: 14×10=140", "needs_review": false, "correct_answer": "140"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}]
61	31	Day and Night Practice	\N	Complete this homework assignment on "Day and Night Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.170776	2026-06-23 11:23:04.170776	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Day and Night, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
996	498	Contemporary British Writers Quiz	\N	Complete this quiz on "Contemporary British Writers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.680565	2026-06-23 11:23:04.680565	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1002	501	Professional Writing Quiz	\N	Complete this quiz on "Professional Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.683395	2026-06-23 11:23:04.683395	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1008	504	Portfolio Development Quiz	\N	Complete this quiz on "Portfolio Development Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.686224	2026-06-23 11:23:04.686224	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1009	505	Minerals and Rocks Practice	\N	Complete this homework assignment on "Minerals and Rocks Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.687596	2026-06-23 11:23:04.687596	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Minerals and Rocks, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1030	515	Galaxies Quiz	\N	Complete this quiz on "Galaxies Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.698014	2026-06-23 11:23:04.698014	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Galaxies, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1040	520	World Powers Quiz	\N	Complete this quiz on "World Powers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.703383	2026-06-23 11:23:04.703383	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World Powers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1048	524	Social Institutions Quiz	\N	Complete this quiz on "Social Institutions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.707505	2026-06-23 11:23:04.707505	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Social Institutions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1054	527	Media Literacy Quiz	\N	Complete this quiz on "Media Literacy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.710496	2026-06-23 11:23:04.710496	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Media Literacy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1068	36	My Community Unit Test	\N	Complete this test on "My Community Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.719716	2026-06-23 11:23:04.719716	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Being a Good Citizen. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1081	75	Life Cycles Unit Test	\N	Complete this test on "Life Cycles Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.726645	2026-06-23 11:23:04.726645	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Butterfly Metamorphosis, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1089	99	Reading Comprehension Unit Test	\N	Complete this test on "Reading Comprehension Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.730639	2026-06-23 11:23:04.730639	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1087	93	Fractions Unit Test	\N	Complete this test on "Fractions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.729707	2026-06-23 11:23:04.729707	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/8", "1/2", "3/4", "2/4"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 5", "difficulty": "medium", "explanation": "Multiply: 14×5=70", "needs_review": false, "correct_answer": "70"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 17", "difficulty": "medium", "explanation": "Multiply: 16×17=272", "needs_review": false, "correct_answer": "272"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 8", "difficulty": "medium", "explanation": "Multiply: 14×8=112", "needs_review": false, "correct_answer": "112"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}]
256	128	Long Division Quiz	\N	Complete this quiz on "Long Division Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.284689	2026-06-23 11:23:04.284689	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 43 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "64"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 15", "difficulty": "medium", "explanation": "Multiply: 17×15=255", "needs_review": false, "correct_answer": "255"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 19", "difficulty": "medium", "explanation": "Multiply: 10×19=190", "needs_review": false, "correct_answer": "190"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 16", "difficulty": "medium", "explanation": "Multiply: 13×16=208", "needs_review": false, "correct_answer": "208"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 9", "difficulty": "medium", "explanation": "Multiply: 12×9=108", "needs_review": false, "correct_answer": "108"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}]
1119	189	Grammar Unit Test	\N	Complete this test on "Grammar Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.746335	2026-06-23 11:23:04.746335	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1116	180	Coordinate Planes Unit Test	\N	Complete this test on "Coordinate Planes Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.744795	2026-06-23 11:23:04.744795	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 42 + 52", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 7", "difficulty": "medium", "explanation": "Multiply: 7×7=49", "needs_review": false, "correct_answer": "49"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 18", "difficulty": "medium", "explanation": "Multiply: 14×18=252", "needs_review": false, "correct_answer": "252"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 14", "difficulty": "medium", "explanation": "Multiply: 2×14=28", "needs_review": false, "correct_answer": "28"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 6", "difficulty": "medium", "explanation": "Multiply: 18×6=108", "needs_review": false, "correct_answer": "108"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 19", "difficulty": "medium", "explanation": "Multiply: 6×19=114", "needs_review": false, "correct_answer": "114"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 13", "difficulty": "medium", "explanation": "Multiply: 10×13=130", "needs_review": false, "correct_answer": "130"}]
1129	219	Expressions and Equations Unit Test	\N	Complete this test on "Expressions and Equations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.751098	2026-06-23 11:23:04.751098	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 35 + 25", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "60"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 7", "difficulty": "medium", "explanation": "Multiply: 7×7=49", "needs_review": false, "correct_answer": "49"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 18", "difficulty": "medium", "explanation": "Multiply: 5×18=90", "needs_review": false, "correct_answer": "90"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 4", "difficulty": "medium", "explanation": "Multiply: 11×4=44", "needs_review": false, "correct_answer": "44"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}]
1148	276	Vocabulary Unit Test	\N	Complete this test on "Vocabulary Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.760638	2026-06-23 11:23:04.760638	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1151	285	Ecology Unit Test	\N	Complete this test on "Ecology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.762152	2026-06-23 11:23:04.762152	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Conservation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1155	297	Linear Equations Unit Test	\N	Complete this test on "Linear Equations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.764002	2026-06-23 11:23:04.764002	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 32", "x = 8", "x = 14", "x = 4"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 7", "difficulty": "medium", "explanation": "Multiply: 7×7=49", "needs_review": false, "correct_answer": "49"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 16", "difficulty": "medium", "explanation": "Multiply: 18×16=288", "needs_review": false, "correct_answer": "288"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 15", "difficulty": "medium", "explanation": "Multiply: 7×15=105", "needs_review": false, "correct_answer": "105"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 4", "difficulty": "medium", "explanation": "Multiply: 19×4=76", "needs_review": false, "correct_answer": "76"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}]
1163	321	Physical Science Unit Test	\N	Complete this test on "Physical Science Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.767868	2026-06-23 11:23:04.767868	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Hydrogen", "Metallic", "Ionic", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Chemical Reactions Basics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1174	354	Analytical Writing Unit Test	\N	Complete this test on "Analytical Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.773179	2026-06-23 11:23:04.773179	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1185	387	Foundations of Geometry Unit Test	\N	Complete this test on "Foundations of Geometry Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.778579	2026-06-23 11:23:04.778579	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 56 + 31", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "87"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 6", "difficulty": "medium", "explanation": "Multiply: 3×6=18", "needs_review": false, "correct_answer": "18"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 5", "difficulty": "medium", "explanation": "Multiply: 14×5=70", "needs_review": false, "correct_answer": "70"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 12", "difficulty": "medium", "explanation": "Multiply: 13×12=156", "needs_review": false, "correct_answer": "156"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 12", "difficulty": "medium", "explanation": "Multiply: 20×12=240", "needs_review": false, "correct_answer": "240"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 3", "difficulty": "medium", "explanation": "Multiply: 20×3=60", "needs_review": false, "correct_answer": "60"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 13", "difficulty": "medium", "explanation": "Multiply: 19×13=247", "needs_review": false, "correct_answer": "247"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 4", "difficulty": "medium", "explanation": "Multiply: 9×4=36", "needs_review": false, "correct_answer": "36"}]
1194	414	Chemical Bonding Unit Test	\N	Complete this test on "Chemical Bonding Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.782863	2026-06-23 11:23:04.782863	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Metallic Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1201	435	Polynomial Functions Unit Test	\N	Complete this test on "Polynomial Functions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.786378	2026-06-23 11:23:04.786378	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 49 + 54", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "103"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 16", "difficulty": "medium", "explanation": "Multiply: 2×16=32", "needs_review": false, "correct_answer": "32"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 11", "difficulty": "medium", "explanation": "Multiply: 17×11=187", "needs_review": false, "correct_answer": "187"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 18", "difficulty": "medium", "explanation": "Multiply: 17×18=306", "needs_review": false, "correct_answer": "306"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 2", "difficulty": "medium", "explanation": "Multiply: 12×2=24", "needs_review": false, "correct_answer": "24"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 10", "difficulty": "medium", "explanation": "Multiply: 13×10=130", "needs_review": false, "correct_answer": "130"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}]
1215	477	Economics Unit Test	\N	Complete this test on "Economics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79379	2026-06-23 11:23:04.79379	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Monetary and Fiscal Policy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
26	13	Letter Sounds A-M Quiz	\N	Complete this quiz on "Letter Sounds A-M Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.147054	2026-06-23 11:23:04.147054	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1218	486	Trigonometry Unit Test	\N	Complete this test on "Trigonometry Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.795281	2026-06-23 11:23:04.795281	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 56 + 68", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "124"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 7", "difficulty": "medium", "explanation": "Multiply: 14×7=98", "needs_review": false, "correct_answer": "98"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 2", "difficulty": "medium", "explanation": "Multiply: 12×2=24", "needs_review": false, "correct_answer": "24"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 18", "difficulty": "medium", "explanation": "Multiply: 8×18=144", "needs_review": false, "correct_answer": "144"}]
1228	516	Astronomy Unit Test	\N	Complete this test on "Astronomy Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.800321	2026-06-23 11:23:04.800321	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cosmology, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
30	15	Consonant Blends Quiz	\N	Complete this quiz on "Consonant Blends Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.14921	2026-06-23 11:23:04.14921	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
32	16	Common Sight Words Quiz	\N	Complete this quiz on "Common Sight Words Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.150663	2026-06-23 11:23:04.150663	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
35	18	Reading Comprehension Practice	\N	Complete this homework assignment on "Reading Comprehension Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.152603	2026-06-23 11:23:04.152603	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
36	18	Reading Comprehension Quiz	\N	Complete this quiz on "Reading Comprehension Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.152966	2026-06-23 11:23:04.152966	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
6	3	Number Patterns Quiz	\N	Complete this quiz on "Number Patterns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.133335	2026-06-23 11:23:04.133335	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 36 + 52", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "88"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 18", "difficulty": "medium", "explanation": "Multiply: 6×18=108", "needs_review": false, "correct_answer": "108"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 7", "difficulty": "medium", "explanation": "Multiply: 20×7=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 20", "difficulty": "medium", "explanation": "Multiply: 7×20=140", "needs_review": false, "correct_answer": "140"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}]
40	20	Writing Words Quiz	\N	Complete this quiz on "Writing Words Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.156929	2026-06-23 11:23:04.156929	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
20	10	Basic Shapes Quiz	\N	Complete this quiz on "Basic Shapes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.142789	2026-06-23 11:23:04.142789	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "A=l×w=8×7=56 sq units.", "needs_review": false, "correct_answer": "56"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["32", "30", "56", "15"], "question": "Find the perimeter of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+7)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 11", "difficulty": "medium", "explanation": "Multiply: 3×11=33", "needs_review": false, "correct_answer": "33"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 15", "difficulty": "medium", "explanation": "Multiply: 10×15=150", "needs_review": false, "correct_answer": "150"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 6", "difficulty": "medium", "explanation": "Multiply: 3×6=18", "needs_review": false, "correct_answer": "18"}]
43	22	Nouns Practice	\N	Complete this homework assignment on "Nouns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.159269	2026-06-23 11:23:04.159269	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
46	23	Verbs Quiz	\N	Complete this quiz on "Verbs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.161033	2026-06-23 11:23:04.161033	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
80	40	The Flag Quiz	\N	Complete this quiz on "The Flag Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.182352	2026-06-23 11:23:04.182352	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to The Flag. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1062	18	Sight Words and Reading Unit Test	\N	Complete this test on "Sight Words and Reading Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.71674	2026-06-23 11:23:04.71674	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
47	24	Capitalization and Punctuation Practice	\N	Complete this homework assignment on "Capitalization and Punctuation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.161828	2026-06-23 11:23:04.161828	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1	1	Counting to 20 Practice	\N	Complete this homework assignment on "Counting to 20 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.127412	2026-06-23 11:23:04.127412	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 24 + 71", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "95"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 2", "difficulty": "medium", "explanation": "Multiply: 7×2=14", "needs_review": false, "correct_answer": "14"}]
2	1	Counting to 20 Quiz	\N	Complete this quiz on "Counting to 20 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.129733	2026-06-23 11:23:04.129733	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 90 + 28", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "118"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 13", "difficulty": "medium", "explanation": "Multiply: 18×13=234", "needs_review": false, "correct_answer": "234"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}]
4	2	Comparing Numbers Quiz	\N	Complete this quiz on "Comparing Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.131877	2026-06-23 11:23:04.131877	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 12", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "77"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 15", "difficulty": "medium", "explanation": "Multiply: 15×15=225", "needs_review": false, "correct_answer": "225"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 9", "difficulty": "medium", "explanation": "Multiply: 20×9=180", "needs_review": false, "correct_answer": "180"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 13", "difficulty": "medium", "explanation": "Multiply: 11×13=143", "needs_review": false, "correct_answer": "143"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 17", "difficulty": "medium", "explanation": "Multiply: 13×17=221", "needs_review": false, "correct_answer": "221"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}]
5	3	Number Patterns Practice	\N	Complete this homework assignment on "Number Patterns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.132928	2026-06-23 11:23:04.132928	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 39", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "53"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 16", "difficulty": "medium", "explanation": "Multiply: 17×16=272", "needs_review": false, "correct_answer": "272"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 4", "difficulty": "medium", "explanation": "Multiply: 19×4=76", "needs_review": false, "correct_answer": "76"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}]
768	384	Cold War Quiz	\N	Complete this quiz on "Cold War Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.560189	2026-06-23 11:23:04.560189	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "A trade dispute with France", "Religious conflict", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cold War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
9	5	Adding Within 20 Practice	\N	Complete this homework assignment on "Adding Within 20 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.135697	2026-06-23 11:23:04.135697	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 38 + 15", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "53"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["52", "63", "53", "58"], "question": "What is the sum of 38 and 15?", "difficulty": "easy", "explanation": "38+15=53", "needs_review": false, "correct_answer": "53"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 38+15 = 15+38.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}]
11	6	Addition Word Problems Practice	\N	Complete this homework assignment on "Addition Word Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.136851	2026-06-23 11:23:04.136851	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 17 + 26", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "43"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["42", "48", "53", "43"], "question": "What is the sum of 17 and 26?", "difficulty": "easy", "explanation": "17+26=43", "needs_review": false, "correct_answer": "43"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 17+26 = 26+17.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 12", "difficulty": "medium", "explanation": "Multiply: 14×12=168", "needs_review": false, "correct_answer": "168"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}]
12	6	Addition Word Problems Quiz	\N	Complete this quiz on "Addition Word Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.13737	2026-06-23 11:23:04.13737	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 33 + 22", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "55"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["65", "60", "55", "54"], "question": "What is the sum of 33 and 22?", "difficulty": "easy", "explanation": "33+22=55", "needs_review": false, "correct_answer": "55"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 33+22 = 22+33.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}]
15	8	Subtracting Within 20 Practice	\N	Complete this homework assignment on "Subtracting Within 20 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.13989	2026-06-23 11:23:04.13989	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 136 − 124", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "12"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["12", "10", "13", "260"], "question": "What is 136 − 124?", "difficulty": "easy", "explanation": "136-124=12", "needs_review": false, "correct_answer": "12"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "Multiply: 4×11=44", "needs_review": false, "correct_answer": "44"}]
16	8	Subtracting Within 20 Quiz	\N	Complete this quiz on "Subtracting Within 20 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.140276	2026-06-23 11:23:04.140276	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 146 − 43", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "103"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["101", "103", "189", "104"], "question": "What is 146 − 43?", "difficulty": "easy", "explanation": "146-43=103", "needs_review": false, "correct_answer": "103"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 7", "difficulty": "medium", "explanation": "Multiply: 12×7=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}]
18	9	Subtraction Word Problems Quiz	\N	Complete this quiz on "Subtraction Word Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.141361	2026-06-23 11:23:04.141361	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 143 − 81", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "62"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["60", "63", "62", "224"], "question": "What is 143 − 81?", "difficulty": "easy", "explanation": "143-81=62", "needs_review": false, "correct_answer": "62"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 13", "difficulty": "medium", "explanation": "Multiply: 6×13=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 12", "difficulty": "medium", "explanation": "Multiply: 10×12=120", "needs_review": false, "correct_answer": "120"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 17", "difficulty": "medium", "explanation": "Multiply: 16×17=272", "needs_review": false, "correct_answer": "272"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 15", "difficulty": "medium", "explanation": "Multiply: 14×15=210", "needs_review": false, "correct_answer": "210"}]
1059	9	Subtraction Basics Unit Test	\N	Complete this test on "Subtraction Basics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.715029	2026-06-23 11:23:04.715029	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 77 − 43", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "34"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["32", "120", "35", "34"], "question": "What is 77 − 43?", "difficulty": "easy", "explanation": "77-43=34", "needs_review": false, "correct_answer": "34"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 6", "difficulty": "medium", "explanation": "Multiply: 8×6=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 10", "difficulty": "medium", "explanation": "Multiply: 12×10=120", "needs_review": false, "correct_answer": "120"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 19", "difficulty": "medium", "explanation": "Multiply: 5×19=95", "needs_review": false, "correct_answer": "95"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 16", "difficulty": "medium", "explanation": "Multiply: 14×16=224", "needs_review": false, "correct_answer": "224"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 15", "difficulty": "medium", "explanation": "Multiply: 17×15=255", "needs_review": false, "correct_answer": "255"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 9", "difficulty": "medium", "explanation": "Multiply: 5×9=45", "needs_review": false, "correct_answer": "45"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}]
22	11	Measuring Length Quiz	\N	Complete this quiz on "Measuring Length Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.143821	2026-06-23 11:23:04.143821	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 31 + 73", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "104"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 2", "difficulty": "medium", "explanation": "Multiply: 14×2=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 9", "difficulty": "medium", "explanation": "Multiply: 20×9=180", "needs_review": false, "correct_answer": "180"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 11", "difficulty": "medium", "explanation": "Multiply: 3×11=33", "needs_review": false, "correct_answer": "33"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 3", "difficulty": "medium", "explanation": "Multiply: 20×3=60", "needs_review": false, "correct_answer": "60"}]
24	12	Telling Time to the Hour Quiz	\N	Complete this quiz on "Telling Time to the Hour Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.144862	2026-06-23 11:23:04.144862	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 72 + 49", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "121"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 3", "difficulty": "medium", "explanation": "Multiply: 17×3=51", "needs_review": false, "correct_answer": "51"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 8", "difficulty": "medium", "explanation": "Multiply: 8×8=64", "needs_review": false, "correct_answer": "64"}]
49	25	Plants and Animals Practice	\N	Complete this homework assignment on "Plants and Animals Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.16374	2026-06-23 11:23:04.16374	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Wind, rocks, and heat", "Sand and ice", "Sunlight, water, and carbon dioxide", "Soil, darkness, and oxygen"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plants and Animals, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
51	26	Animal Habitats Practice	\N	Complete this homework assignment on "Animal Habitats Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.164759	2026-06-23 11:23:04.164759	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Habitats, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
52	26	Animal Habitats Quiz	\N	Complete this quiz on "Animal Habitats Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.165072	2026-06-23 11:23:04.165072	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Habitats, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
152	76	Continents and Oceans Quiz	\N	Complete this quiz on "Continents and Oceans Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.226739	2026-06-23 11:23:04.226739	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "7", "6", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Continents and Oceans. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
56	28	Types of Weather Quiz	\N	Complete this quiz on "Types of Weather Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.167488	2026-06-23 11:23:04.167488	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Condensation", "Precipitation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Types of Weather, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
58	29	Four Seasons Quiz	\N	Complete this quiz on "Four Seasons Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.168672	2026-06-23 11:23:04.168672	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Four Seasons, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
59	30	Weather Patterns Practice	\N	Complete this homework assignment on "Weather Patterns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.169427	2026-06-23 11:23:04.169427	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Precipitation", "Evaporation", "Condensation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Weather Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
62	31	Day and Night Quiz	\N	Complete this quiz on "Day and Night Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.171108	2026-06-23 11:23:04.171108	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Day and Night, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
63	32	Sun Moon and Stars Practice	\N	Complete this homework assignment on "Sun Moon and Stars Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.1718	2026-06-23 11:23:04.1718	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Sun Moon and Stars, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
64	32	Sun Moon and Stars Quiz	\N	Complete this quiz on "Sun Moon and Stars Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.172152	2026-06-23 11:23:04.172152	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Sun Moon and Stars, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
65	33	Earth Materials Practice	\N	Complete this homework assignment on "Earth Materials Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.172881	2026-06-23 11:23:04.172881	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Materials, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1066	30	Weather and Seasons Unit Test	\N	Complete this test on "Weather and Seasons Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.718716	2026-06-23 11:23:04.718716	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Precipitation", "Collection", "Condensation", "Evaporation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Weather Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1067	33	Earth and Space Unit Test	\N	Complete this test on "Earth and Space Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.719224	2026-06-23 11:23:04.719224	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Materials, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
67	34	Community Helpers Practice	\N	Complete this homework assignment on "Community Helpers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.174688	2026-06-23 11:23:04.174688	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Community Helpers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
68	34	Community Helpers Quiz	\N	Complete this quiz on "Community Helpers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.174998	2026-06-23 11:23:04.174998	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Community Helpers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
70	35	Rules and Laws Quiz	\N	Complete this quiz on "Rules and Laws Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.175972	2026-06-23 11:23:04.175972	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rules and Laws. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
73	37	Maps and Directions Practice	\N	Complete this homework assignment on "Maps and Directions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.178032	2026-06-23 11:23:04.178032	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["8", "5", "7", "6"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Maps and Directions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
74	37	Maps and Directions Quiz	\N	Complete this quiz on "Maps and Directions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.178336	2026-06-23 11:23:04.178336	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "6", "7", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Maps and Directions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
76	38	Land and Water Quiz	\N	Complete this quiz on "Land and Water Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.17934	2026-06-23 11:23:04.17934	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Land and Water. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
78	39	My Neighborhood Quiz	\N	Complete this quiz on "My Neighborhood Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.180746	2026-06-23 11:23:04.180746	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to My Neighborhood. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
79	40	The Flag Practice	\N	Complete this homework assignment on "The Flag Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.181991	2026-06-23 11:23:04.181991	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to The Flag. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
83	42	Famous Americans Practice	\N	Complete this homework assignment on "Famous Americans Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.184024	2026-06-23 11:23:04.184024	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Famous Americans. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
84	42	Famous Americans Quiz	\N	Complete this quiz on "Famous Americans Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.184351	2026-06-23 11:23:04.184351	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Famous Americans. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1070	42	American Symbols Unit Test	\N	Complete this test on "American Symbols Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.720709	2026-06-23 11:23:04.720709	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Famous Americans. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
111	56	Building Vocabulary Practice	\N	Complete this homework assignment on "Building Vocabulary Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.202693	2026-06-23 11:23:04.202693	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
113	57	Story Elements Practice	\N	Complete this homework assignment on "Story Elements Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.203706	2026-06-23 11:23:04.203706	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
116	58	Topic Sentences Quiz	\N	Complete this quiz on "Topic Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.205758	2026-06-23 11:23:04.205758	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
127	64	Word Families Practice	\N	Complete this homework assignment on "Word Families Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.212085	2026-06-23 11:23:04.212085	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
120	60	Conclusion Sentences Quiz	\N	Complete this quiz on "Conclusion Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.207851	2026-06-23 11:23:04.207851	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
121	61	Adjectives Practice	\N	Complete this homework assignment on "Adjectives Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.208867	2026-06-23 11:23:04.208867	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about a boy learning about responsibility when he loses a library book"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
146	73	Plant Life Cycles Quiz	\N	Complete this quiz on "Plant Life Cycles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.223115	2026-06-23 11:23:04.223115	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Soil, darkness, and oxygen", "Wind, rocks, and heat", "Sunlight, water, and carbon dioxide", "Sand and ice"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
124	62	Adverbs Quiz	\N	Complete this quiz on "Adverbs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.210181	2026-06-23 11:23:04.210181	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
125	63	Complete Sentences Practice	\N	Complete this homework assignment on "Complete Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.210783	2026-06-23 11:23:04.210783	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
126	63	Complete Sentences Quiz	\N	Complete this quiz on "Complete Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.211097	2026-06-23 11:23:04.211097	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
129	65	Prefixes and Suffixes Practice	\N	Complete this homework assignment on "Prefixes and Suffixes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.212976	2026-06-23 11:23:04.212976	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
130	65	Prefixes and Suffixes Quiz	\N	Complete this quiz on "Prefixes and Suffixes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.213325	2026-06-23 11:23:04.213325	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
132	66	Context Clues Quiz	\N	Complete this quiz on "Context Clues Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.214293	2026-06-23 11:23:04.214293	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1077	63	Grammar Unit Test	\N	Complete this test on "Grammar Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.724174	2026-06-23 11:23:04.724174	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about how being kind to a new student makes a difference"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
86	43	Ones and Tens Quiz	\N	Complete this quiz on "Ones and Tens Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.186156	2026-06-23 11:23:04.186156	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 48 + 95", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "143"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 2", "difficulty": "medium", "explanation": "Multiply: 16×2=32", "needs_review": false, "correct_answer": "32"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 7", "difficulty": "medium", "explanation": "Multiply: 3×7=21", "needs_review": false, "correct_answer": "21"}]
88	44	Hundreds Quiz	\N	Complete this quiz on "Hundreds Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.187112	2026-06-23 11:23:04.187112	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 35 + 97", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "132"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 5", "difficulty": "medium", "explanation": "Multiply: 4×5=20", "needs_review": false, "correct_answer": "20"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 13", "difficulty": "medium", "explanation": "Multiply: 18×13=234", "needs_review": false, "correct_answer": "234"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 15", "difficulty": "medium", "explanation": "Multiply: 12×15=180", "needs_review": false, "correct_answer": "180"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 13", "difficulty": "medium", "explanation": "Multiply: 16×13=208", "needs_review": false, "correct_answer": "208"}]
92	46	Adding Two-Digit Numbers Quiz	\N	Complete this quiz on "Adding Two-Digit Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.190152	2026-06-23 11:23:04.190152	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 51 + 41", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "92"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["102", "97", "92", "91"], "question": "What is the sum of 51 and 41?", "difficulty": "easy", "explanation": "51+41=92", "needs_review": false, "correct_answer": "92"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 51+41 = 41+51.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 9", "difficulty": "medium", "explanation": "Multiply: 12×9=108", "needs_review": false, "correct_answer": "108"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 18", "difficulty": "medium", "explanation": "Multiply: 6×18=108", "needs_review": false, "correct_answer": "108"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 19", "difficulty": "medium", "explanation": "Multiply: 2×19=38", "needs_review": false, "correct_answer": "38"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 7", "difficulty": "medium", "explanation": "Multiply: 10×7=70", "needs_review": false, "correct_answer": "70"}]
94	47	Subtracting Two-Digit Numbers Quiz	\N	Complete this quiz on "Subtracting Two-Digit Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.191564	2026-06-23 11:23:04.191564	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 258 − 50", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "208"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["209", "208", "308", "206"], "question": "What is 258 − 50?", "difficulty": "easy", "explanation": "258-50=208", "needs_review": false, "correct_answer": "208"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 5", "difficulty": "medium", "explanation": "Multiply: 11×5=55", "needs_review": false, "correct_answer": "55"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 16", "difficulty": "medium", "explanation": "Multiply: 16×16=256", "needs_review": false, "correct_answer": "256"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 11", "difficulty": "medium", "explanation": "Multiply: 6×11=66", "needs_review": false, "correct_answer": "66"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}]
147	74	Animal Life Cycles Practice	\N	Complete this homework assignment on "Animal Life Cycles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.223763	2026-06-23 11:23:04.223763	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
97	49	Measuring in Inches Practice	\N	Complete this homework assignment on "Measuring in Inches Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.194444	2026-06-23 11:23:04.194444	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 38 + 79", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "117"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 20", "difficulty": "medium", "explanation": "Multiply: 11×20=220", "needs_review": false, "correct_answer": "220"}]
98	49	Measuring in Inches Quiz	\N	Complete this quiz on "Measuring in Inches Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.194918	2026-06-23 11:23:04.194918	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 31 + 33", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "64"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 8", "difficulty": "medium", "explanation": "Multiply: 17×8=136", "needs_review": false, "correct_answer": "136"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 9", "difficulty": "medium", "explanation": "Multiply: 3×9=27", "needs_review": false, "correct_answer": "27"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 19", "difficulty": "medium", "explanation": "Multiply: 10×19=190", "needs_review": false, "correct_answer": "190"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}]
100	50	Measuring in Centimeters Quiz	\N	Complete this quiz on "Measuring in Centimeters Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.195871	2026-06-23 11:23:04.195871	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "79"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 10", "difficulty": "medium", "explanation": "Multiply: 9×10=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 19", "difficulty": "medium", "explanation": "Multiply: 9×19=171", "needs_review": false, "correct_answer": "171"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 11", "difficulty": "medium", "explanation": "Multiply: 3×11=33", "needs_review": false, "correct_answer": "33"}]
103	52	Counting Coins Practice	\N	Complete this homework assignment on "Counting Coins Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.197753	2026-06-23 11:23:04.197753	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 + 19", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "37"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 4", "difficulty": "medium", "explanation": "Multiply: 6×4=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}]
104	52	Counting Coins Quiz	\N	Complete this quiz on "Counting Coins Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.198112	2026-06-23 11:23:04.198112	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 42 + 68", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "110"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 12", "difficulty": "medium", "explanation": "Multiply: 20×12=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}]
106	53	Making Change Quiz	\N	Complete this quiz on "Making Change Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.19909	2026-06-23 11:23:04.19909	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 55", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "123"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 18", "difficulty": "medium", "explanation": "Multiply: 2×18=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 9", "difficulty": "medium", "explanation": "Multiply: 15×9=135", "needs_review": false, "correct_answer": "135"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}]
107	54	Reading Graphs Practice	\N	Complete this homework assignment on "Reading Graphs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.199935	2026-06-23 11:23:04.199935	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 + 68", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "83"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 15", "difficulty": "medium", "explanation": "Multiply: 9×15=135", "needs_review": false, "correct_answer": "135"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}]
148	74	Animal Life Cycles Quiz	\N	Complete this quiz on "Animal Life Cycles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.22413	2026-06-23 11:23:04.22413	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1072	48	Addition and Subtraction Unit Test	\N	Complete this test on "Addition and Subtraction Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.721757	2026-06-23 11:23:04.721757	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 52 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "67"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 18", "difficulty": "medium", "explanation": "Multiply: 8×18=144", "needs_review": false, "correct_answer": "144"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 3", "difficulty": "medium", "explanation": "Multiply: 8×3=24", "needs_review": false, "correct_answer": "24"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 7", "difficulty": "medium", "explanation": "Multiply: 3×7=21", "needs_review": false, "correct_answer": "21"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 4", "difficulty": "medium", "explanation": "Multiply: 11×4=44", "needs_review": false, "correct_answer": "44"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 18", "difficulty": "medium", "explanation": "Multiply: 13×18=234", "needs_review": false, "correct_answer": "234"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}]
1073	51	Measurement Unit Test	\N	Complete this test on "Measurement Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.722306	2026-06-23 11:23:04.722306	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 26", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 17", "difficulty": "medium", "explanation": "Multiply: 4×17=68", "needs_review": false, "correct_answer": "68"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 8", "difficulty": "medium", "explanation": "Multiply: 10×8=80", "needs_review": false, "correct_answer": "80"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 5", "difficulty": "medium", "explanation": "Multiply: 3×5=15", "needs_review": false, "correct_answer": "15"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}]
108	54	Reading Graphs Quiz	\N	Complete this quiz on "Reading Graphs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.200286	2026-06-23 11:23:04.200286	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 32 + 62", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 17", "difficulty": "medium", "explanation": "Multiply: 16×17=272", "needs_review": false, "correct_answer": "272"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "Multiply: 7×4=28", "needs_review": false, "correct_answer": "28"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 5", "difficulty": "medium", "explanation": "Multiply: 14×5=70", "needs_review": false, "correct_answer": "70"}]
1074	54	Money and Data Unit Test	\N	Complete this test on "Money and Data Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.722764	2026-06-23 11:23:04.722764	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 37 + 41", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "78"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 14", "difficulty": "medium", "explanation": "Multiply: 15×14=210", "needs_review": false, "correct_answer": "210"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 10", "difficulty": "medium", "explanation": "Multiply: 9×10=90", "needs_review": false, "correct_answer": "90"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 15", "difficulty": "medium", "explanation": "Multiply: 12×15=180", "needs_review": false, "correct_answer": "180"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}]
134	67	Solids Liquids and Gases Quiz	\N	Complete this quiz on "Solids Liquids and Gases Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.21603	2026-06-23 11:23:04.21603	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solids Liquids and Gases, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
137	69	Changes in Matter Practice	\N	Complete this homework assignment on "Changes in Matter Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.217602	2026-06-23 11:23:04.217602	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Changes in Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
138	69	Changes in Matter Quiz	\N	Complete this quiz on "Changes in Matter Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.217957	2026-06-23 11:23:04.217957	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Changes in Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
140	70	Pushes and Pulls Quiz	\N	Complete this quiz on "Pushes and Pulls Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.219178	2026-06-23 11:23:04.219178	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Pushes and Pulls, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
143	72	Simple Machines Practice	\N	Complete this homework assignment on "Simple Machines Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.221052	2026-06-23 11:23:04.221052	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Simple Machines, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
144	72	Simple Machines Quiz	\N	Complete this quiz on "Simple Machines Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.221453	2026-06-23 11:23:04.221453	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Simple Machines, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1080	72	Force and Motion Unit Test	\N	Complete this test on "Force and Motion Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.726153	2026-06-23 11:23:04.726153	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Simple Machines, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
150	75	Butterfly Metamorphosis Quiz	\N	Complete this quiz on "Butterfly Metamorphosis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.225165	2026-06-23 11:23:04.225165	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Butterfly Metamorphosis, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
151	76	Continents and Oceans Practice	\N	Complete this homework assignment on "Continents and Oceans Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.226444	2026-06-23 11:23:04.226444	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["6", "8", "7", "5"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Continents and Oceans. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
154	77	Map Skills Quiz	\N	Complete this quiz on "Map Skills Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.227647	2026-06-23 11:23:04.227647	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "8", "7", "6"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Map Skills. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
155	78	Natural Resources Practice	\N	Complete this homework assignment on "Natural Resources Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.228221	2026-06-23 11:23:04.228221	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Natural Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
156	78	Natural Resources Quiz	\N	Complete this quiz on "Natural Resources Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.228512	2026-06-23 11:23:04.228512	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Natural Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
160	80	Important Historical Figures Quiz	\N	Complete this quiz on "Important Historical Figures Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.230626	2026-06-23 11:23:04.230626	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Important Historical Figures. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
162	81	Timeline of Events Quiz	\N	Complete this quiz on "Timeline of Events Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.231676	2026-06-23 11:23:04.231676	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Timeline of Events. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
163	82	Needs vs Wants Practice	\N	Complete this homework assignment on "Needs vs Wants Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.232597	2026-06-23 11:23:04.232597	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Needs vs Wants. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
165	83	Goods and Services Practice	\N	Complete this homework assignment on "Goods and Services Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.233489	2026-06-23 11:23:04.233489	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Goods and Services. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
167	84	Saving and Spending Practice	\N	Complete this homework assignment on "Saving and Spending Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.234554	2026-06-23 11:23:04.234554	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Saving and Spending. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1084	84	Economics Unit Test	\N	Complete this test on "Economics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.728184	2026-06-23 11:23:04.728184	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Saving and Spending. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
194	97	Main Idea and Details Quiz	\N	Complete this quiz on "Main Idea and Details Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.249951	2026-06-23 11:23:04.249951	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
196	98	Making Inferences Quiz	\N	Complete this quiz on "Making Inferences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.250851	2026-06-23 11:23:04.250851	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about a boy learning about responsibility when he loses a library book"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
197	99	Summarizing Practice	\N	Complete this homework assignment on "Summarizing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.251478	2026-06-23 11:23:04.251478	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
201	101	Informational Writing Practice	\N	Complete this homework assignment on "Informational Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.2539	2026-06-23 11:23:04.2539	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
202	101	Informational Writing Quiz	\N	Complete this quiz on "Informational Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.254246	2026-06-23 11:23:04.254246	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
204	102	Opinion Writing Quiz	\N	Complete this quiz on "Opinion Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.255264	2026-06-23 11:23:04.255264	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
207	104	Pronouns Practice	\N	Complete this homework assignment on "Pronouns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.257239	2026-06-23 11:23:04.257239	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
209	105	Conjunctions Practice	\N	Complete this homework assignment on "Conjunctions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.258226	2026-06-23 11:23:04.258226	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
213	107	Finding Information Practice	\N	Complete this homework assignment on "Finding Information Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.260405	2026-06-23 11:23:04.260405	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
214	107	Finding Information Quiz	\N	Complete this quiz on "Finding Information Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.260801	2026-06-23 11:23:04.260801	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
216	108	Taking Notes Quiz	\N	Complete this quiz on "Taking Notes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.26168	2026-06-23 11:23:04.26168	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1092	108	Research Skills Unit Test	\N	Complete this test on "Research Skills Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.732178	2026-06-23 11:23:04.732178	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
170	85	Multiplication Concepts Quiz	\N	Complete this quiz on "Multiplication Concepts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.236629	2026-06-23 11:23:04.236629	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "5 groups of 10.", "needs_review": false, "correct_answer": "50"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["55", "40", "50", "15"], "question": "What is the product of 5 and 10?", "difficulty": "easy", "explanation": "5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 3", "difficulty": "medium", "explanation": "Multiply: 16×3=48", "needs_review": false, "correct_answer": "48"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 3", "difficulty": "medium", "explanation": "Multiply: 19×3=57", "needs_review": false, "correct_answer": "57"}]
171	86	Times Tables 1-5 Practice	\N	Complete this homework assignment on "Times Tables 1-5 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.237358	2026-06-23 11:23:04.237358	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 34 + 77", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "111"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}]
174	87	Times Tables 6-12 Quiz	\N	Complete this quiz on "Times Tables 6-12 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.238787	2026-06-23 11:23:04.238787	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 73 + 35", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "108"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 12", "difficulty": "medium", "explanation": "Multiply: 3×12=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 10", "difficulty": "medium", "explanation": "Multiply: 3×10=30", "needs_review": false, "correct_answer": "30"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 11", "difficulty": "medium", "explanation": "Multiply: 6×11=66", "needs_review": false, "correct_answer": "66"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}]
176	88	Division Concepts Quiz	\N	Complete this quiz on "Division Concepts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.23998	2026-06-23 11:23:04.23998	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 95 + 95", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "190"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 5", "difficulty": "medium", "explanation": "Multiply: 3×5=15", "needs_review": false, "correct_answer": "15"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 10", "difficulty": "medium", "explanation": "Multiply: 2×10=20", "needs_review": false, "correct_answer": "20"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 12", "difficulty": "medium", "explanation": "Multiply: 18×12=216", "needs_review": false, "correct_answer": "216"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 13", "difficulty": "medium", "explanation": "Multiply: 12×13=156", "needs_review": false, "correct_answer": "156"}]
177	89	Division Facts Practice	\N	Complete this homework assignment on "Division Facts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.240626	2026-06-23 11:23:04.240626	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 48 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "69"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 17", "difficulty": "medium", "explanation": "Multiply: 2×17=34", "needs_review": false, "correct_answer": "34"}]
178	89	Division Facts Quiz	\N	Complete this quiz on "Division Facts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.24095	2026-06-23 11:23:04.24095	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 + 54", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "74"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 16", "difficulty": "medium", "explanation": "Multiply: 19×16=304", "needs_review": false, "correct_answer": "304"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 13", "difficulty": "medium", "explanation": "Multiply: 12×13=156", "needs_review": false, "correct_answer": "156"}]
181	91	Understanding Fractions Practice	\N	Complete this homework assignment on "Understanding Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.242894	2026-06-23 11:23:04.242894	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/4", "3/8", "2/4", "1/2"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 9", "difficulty": "medium", "explanation": "Multiply: 17×9=153", "needs_review": false, "correct_answer": "153"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 16", "difficulty": "medium", "explanation": "Multiply: 18×16=288", "needs_review": false, "correct_answer": "288"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}]
182	91	Understanding Fractions Quiz	\N	Complete this quiz on "Understanding Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.243188	2026-06-23 11:23:04.243188	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/4", "1/2", "2/4", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 20", "difficulty": "medium", "explanation": "Multiply: 16×20=320", "needs_review": false, "correct_answer": "320"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 17", "difficulty": "medium", "explanation": "Multiply: 10×17=170", "needs_review": false, "correct_answer": "170"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 19", "difficulty": "medium", "explanation": "Multiply: 19×19=361", "needs_review": false, "correct_answer": "361"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}]
183	92	Comparing Fractions Practice	\N	Complete this homework assignment on "Comparing Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.243798	2026-06-23 11:23:04.243798	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["2/4", "1/2", "3/4", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 3", "difficulty": "medium", "explanation": "Multiply: 15×3=45", "needs_review": false, "correct_answer": "45"}]
184	92	Comparing Fractions Quiz	\N	Complete this quiz on "Comparing Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.24412	2026-06-23 11:23:04.24412	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["1/2", "3/8", "3/4", "2/4"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 9", "difficulty": "medium", "explanation": "Multiply: 6×9=54", "needs_review": false, "correct_answer": "54"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "Multiply: 7×4=28", "needs_review": false, "correct_answer": "28"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 15", "difficulty": "medium", "explanation": "Multiply: 11×15=165", "needs_review": false, "correct_answer": "165"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 13", "difficulty": "medium", "explanation": "Multiply: 16×13=208", "needs_review": false, "correct_answer": "208"}]
187	94	Area and Perimeter Practice	\N	Complete this homework assignment on "Area and Perimeter Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.245952	2026-06-23 11:23:04.245952	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=7, width=6", "difficulty": "medium", "explanation": "A=l×w=7×6=42 sq units.", "needs_review": false, "correct_answer": "42"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["42", "26", "13", "28"], "question": "Find the perimeter of a rectangle: length=7, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(7+6)=2(13)=26", "needs_review": false, "correct_answer": "26"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 16", "difficulty": "medium", "explanation": "Multiply: 6×16=96", "needs_review": false, "correct_answer": "96"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 18", "difficulty": "medium", "explanation": "Multiply: 5×18=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}]
188	94	Area and Perimeter Quiz	\N	Complete this quiz on "Area and Perimeter Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.246267	2026-06-23 11:23:04.246267	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=4", "difficulty": "medium", "explanation": "A=l×w=5×4=20 sq units.", "needs_review": false, "correct_answer": "20"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["9", "18", "20", "20"], "question": "Find the perimeter of a rectangle: length=5, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+4)=2(9)=18", "needs_review": false, "correct_answer": "18"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 10", "difficulty": "medium", "explanation": "Multiply: 13×10=130", "needs_review": false, "correct_answer": "130"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 13", "difficulty": "medium", "explanation": "Multiply: 17×13=221", "needs_review": false, "correct_answer": "221"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 18", "difficulty": "medium", "explanation": "Multiply: 14×18=252", "needs_review": false, "correct_answer": "252"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 11", "difficulty": "medium", "explanation": "Multiply: 18×11=198", "needs_review": false, "correct_answer": "198"}]
190	95	Types of Angles Quiz	\N	Complete this quiz on "Types of Angles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.247248	2026-06-23 11:23:04.247248	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=3", "difficulty": "medium", "explanation": "A=l×w=10×3=30 sq units.", "needs_review": false, "correct_answer": "30"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["40", "30", "26", "13"], "question": "Find the perimeter of a rectangle: length=10, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+3)=2(13)=26", "needs_review": false, "correct_answer": "26"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 10", "difficulty": "medium", "explanation": "Multiply: 11×10=110", "needs_review": false, "correct_answer": "110"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 9", "difficulty": "medium", "explanation": "Multiply: 3×9=27", "needs_review": false, "correct_answer": "27"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}]
1086	90	Division Unit Test	\N	Complete this test on "Division Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.729223	2026-06-23 11:23:04.729223	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 70 + 80", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "150"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 5", "difficulty": "medium", "explanation": "Multiply: 11×5=55", "needs_review": false, "correct_answer": "55"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 16", "difficulty": "medium", "explanation": "Multiply: 18×16=288", "needs_review": false, "correct_answer": "288"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 14", "difficulty": "medium", "explanation": "Multiply: 3×14=42", "needs_review": false, "correct_answer": "42"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 2", "difficulty": "medium", "explanation": "Multiply: 11×2=22", "needs_review": false, "correct_answer": "22"}]
192	96	Symmetry Quiz	\N	Complete this quiz on "Symmetry Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.248141	2026-06-23 11:23:04.248141	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 55 + 76", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "131"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 16", "difficulty": "medium", "explanation": "Multiply: 5×16=80", "needs_review": false, "correct_answer": "80"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 16", "difficulty": "medium", "explanation": "Multiply: 17×16=272", "needs_review": false, "correct_answer": "272"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 15", "difficulty": "medium", "explanation": "Multiply: 17×15=255", "needs_review": false, "correct_answer": "255"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}]
1088	96	Geometry Unit Test	\N	Complete this test on "Geometry Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.730169	2026-06-23 11:23:04.730169	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 33 + 97", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "130"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 3", "difficulty": "medium", "explanation": "Multiply: 20×3=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 5", "difficulty": "medium", "explanation": "Multiply: 16×5=80", "needs_review": false, "correct_answer": "80"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 7", "difficulty": "medium", "explanation": "Multiply: 13×7=91", "needs_review": false, "correct_answer": "91"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}]
217	109	Balanced and Unbalanced Forces Practice	\N	Complete this homework assignment on "Balanced and Unbalanced Forces Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.263	2026-06-23 11:23:04.263	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["30 N", "13 N", "7 N", "3.3 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Balanced and Unbalanced Forces, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
219	110	Magnets Practice	\N	Complete this homework assignment on "Magnets Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.263965	2026-06-23 11:23:04.263965	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Magnets, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
221	111	Gravity Practice	\N	Complete this homework assignment on "Gravity Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.264859	2026-06-23 11:23:04.264859	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Gravity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1093	111	Forces and Motion Unit Test	\N	Complete this test on "Forces and Motion Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.732676	2026-06-23 11:23:04.732676	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Gravity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
224	112	Food Chains Quiz	\N	Complete this quiz on "Food Chains Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.266497	2026-06-23 11:23:04.266497	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Food Chains, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
227	114	Adaptations Practice	\N	Complete this homework assignment on "Adaptations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.267975	2026-06-23 11:23:04.267975	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
228	114	Adaptations Quiz	\N	Complete this quiz on "Adaptations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.268272	2026-06-23 11:23:04.268272	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
230	115	Water Cycle Quiz	\N	Complete this quiz on "Water Cycle Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.269756	2026-06-23 11:23:04.269756	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Precipitation", "Collection", "Condensation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Water Cycle, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
232	116	Cloud Types Quiz	\N	Complete this quiz on "Cloud Types Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.27086	2026-06-23 11:23:04.27086	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cloud Types, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
233	117	Severe Weather Practice	\N	Complete this homework assignment on "Severe Weather Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.271797	2026-06-23 11:23:04.271797	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Condensation", "Precipitation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Severe Weather, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1095	117	Weather Unit Test	\N	Complete this test on "Weather Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.733637	2026-06-23 11:23:04.733637	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Collection", "Condensation", "Evaporation", "Precipitation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Severe Weather, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
236	118	Urban Rural and Suburban Quiz	\N	Complete this quiz on "Urban Rural and Suburban Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.273813	2026-06-23 11:23:04.273813	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Urban Rural and Suburban. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
237	119	Local Government Practice	\N	Complete this homework assignment on "Local Government Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.274484	2026-06-23 11:23:04.274484	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Executive (President)", "Legislative (Congress)", "Military", "Judicial (Supreme Court)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Preamble", "The Federalist Papers", "The Articles", "The Bill of Rights"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Local Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
240	120	Community Resources Quiz	\N	Complete this quiz on "Community Resources Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.275825	2026-06-23 11:23:04.275825	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Community Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
241	121	Regions of the US Practice	\N	Complete this homework assignment on "Regions of the US Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.276775	2026-06-23 11:23:04.276775	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Regions of the US. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
242	121	Regions of the US Quiz	\N	Complete this quiz on "Regions of the US Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.277084	2026-06-23 11:23:04.277084	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Regions of the US. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
246	123	Human Geography Quiz	\N	Complete this quiz on "Human Geography Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.279043	2026-06-23 11:23:04.279043	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["7", "6", "5", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
247	124	Supply and Demand Practice	\N	Complete this homework assignment on "Supply and Demand Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.279967	2026-06-23 11:23:04.279967	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Supply and Demand. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
248	124	Supply and Demand Quiz	\N	Complete this quiz on "Supply and Demand Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.280289	2026-06-23 11:23:04.280289	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Supply and Demand. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
249	125	Producers and Consumers Practice	\N	Complete this homework assignment on "Producers and Consumers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.280885	2026-06-23 11:23:04.280885	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Producers and Consumers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1097	123	Geography Unit Test	\N	Complete this test on "Geography Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.734647	2026-06-23 11:23:04.734647	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "8", "7", "6"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
250	125	Producers and Consumers Quiz	\N	Complete this quiz on "Producers and Consumers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.281207	2026-06-23 11:23:04.281207	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Producers and Consumers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
252	126	Trade Quiz	\N	Complete this quiz on "Trade Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.282158	2026-06-23 11:23:04.282158	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Trade. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
278	139	Fiction vs Nonfiction Quiz	\N	Complete this quiz on "Fiction vs Nonfiction Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.297239	2026-06-23 11:23:04.297239	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
280	140	Character Analysis Quiz	\N	Complete this quiz on "Character Analysis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.298218	2026-06-23 11:23:04.298218	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
268	134	Area of Rectangles Quiz	\N	Complete this quiz on "Area of Rectangles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.291671	2026-06-23 11:23:04.291671	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=4", "difficulty": "medium", "explanation": "A=l×w=10×4=40 sq units.", "needs_review": false, "correct_answer": "40"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["40", "28", "40", "14"], "question": "Find the perimeter of a rectangle: length=10, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+4)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 8", "difficulty": "medium", "explanation": "Multiply: 17×8=136", "needs_review": false, "correct_answer": "136"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 20", "difficulty": "medium", "explanation": "Multiply: 7×20=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 12", "difficulty": "medium", "explanation": "Multiply: 11×12=132", "needs_review": false, "correct_answer": "132"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 12", "difficulty": "medium", "explanation": "Multiply: 18×12=216", "needs_review": false, "correct_answer": "216"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 20", "difficulty": "medium", "explanation": "Multiply: 5×20=100", "needs_review": false, "correct_answer": "100"}]
284	142	Essay Structure Quiz	\N	Complete this quiz on "Essay Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.300504	2026-06-23 11:23:04.300504	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
286	143	Descriptive Writing Quiz	\N	Complete this quiz on "Descriptive Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.301402	2026-06-23 11:23:04.301402	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
287	144	Research Reports Practice	\N	Complete this homework assignment on "Research Reports Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.302184	2026-06-23 11:23:04.302184	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
291	146	Quotation Marks Practice	\N	Complete this homework assignment on "Quotation Marks Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.304359	2026-06-23 11:23:04.304359	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
292	146	Quotation Marks Quiz	\N	Complete this quiz on "Quotation Marks Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.304748	2026-06-23 11:23:04.304748	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
295	148	Oral Presentations Practice	\N	Complete this homework assignment on "Oral Presentations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.307056	2026-06-23 11:23:04.307056	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
297	149	Discussion Skills Practice	\N	Complete this homework assignment on "Discussion Skills Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.309291	2026-06-23 11:23:04.309291	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
299	150	Active Listening Practice	\N	Complete this homework assignment on "Active Listening Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.310803	2026-06-23 11:23:04.310803	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1105	147	Grammar Unit Test	\N	Complete this test on "Grammar Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.739189	2026-06-23 11:23:04.739189	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about why fresh water is an important resource to protect"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
253	127	Multi-Digit Multiplication Practice	\N	Complete this homework assignment on "Multi-Digit Multiplication Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.283522	2026-06-23 11:23:04.283522	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 6 × 4", "difficulty": "medium", "explanation": "6 groups of 4.", "needs_review": false, "correct_answer": "24"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["20", "24", "10", "30"], "question": "What is the product of 6 and 4?", "difficulty": "easy", "explanation": "6×4=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 18", "difficulty": "medium", "explanation": "Multiply: 14×18=252", "needs_review": false, "correct_answer": "252"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 11", "difficulty": "medium", "explanation": "Multiply: 16×11=176", "needs_review": false, "correct_answer": "176"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 3", "difficulty": "medium", "explanation": "Multiply: 16×3=48", "needs_review": false, "correct_answer": "48"}]
254	127	Multi-Digit Multiplication Quiz	\N	Complete this quiz on "Multi-Digit Multiplication Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.283803	2026-06-23 11:23:04.283803	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "9 groups of 7.", "needs_review": false, "correct_answer": "63"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["56", "63", "16", "72"], "question": "What is the product of 9 and 7?", "difficulty": "easy", "explanation": "9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 3", "difficulty": "medium", "explanation": "Multiply: 2×3=6", "needs_review": false, "correct_answer": "6"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 3", "difficulty": "medium", "explanation": "Multiply: 20×3=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 7", "difficulty": "medium", "explanation": "Multiply: 8×7=56", "needs_review": false, "correct_answer": "56"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 14", "difficulty": "medium", "explanation": "Multiply: 19×14=266", "needs_review": false, "correct_answer": "266"}]
255	128	Long Division Practice	\N	Complete this homework assignment on "Long Division Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.284395	2026-06-23 11:23:04.284395	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 55 + 77", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "132"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "Multiply: 7×4=28", "needs_review": false, "correct_answer": "28"}]
258	129	Estimation Quiz	\N	Complete this quiz on "Estimation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.285691	2026-06-23 11:23:04.285691	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 47 + 71", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "118"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 11", "difficulty": "medium", "explanation": "Multiply: 18×11=198", "needs_review": false, "correct_answer": "198"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 20", "difficulty": "medium", "explanation": "Multiply: 13×20=260", "needs_review": false, "correct_answer": "260"}]
260	130	Equivalent Fractions Quiz	\N	Complete this quiz on "Equivalent Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.287066	2026-06-23 11:23:04.287066	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["2/4", "1/2", "3/4", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 19", "difficulty": "medium", "explanation": "Multiply: 8×19=152", "needs_review": false, "correct_answer": "152"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}]
261	131	Adding Fractions Practice	\N	Complete this homework assignment on "Adding Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.287909	2026-06-23 11:23:04.287909	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 43 + 42", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "85"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["90", "85", "95", "84"], "question": "What is the sum of 43 and 42?", "difficulty": "easy", "explanation": "43+42=85", "needs_review": false, "correct_answer": "85"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 43+42 = 42+43.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 7", "difficulty": "medium", "explanation": "Multiply: 20×7=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}]
264	132	Introduction to Decimals Quiz	\N	Complete this quiz on "Introduction to Decimals Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.289384	2026-06-23 11:23:04.289384	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 86 + 92", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "178"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 3", "difficulty": "medium", "explanation": "Multiply: 4×3=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 4", "difficulty": "medium", "explanation": "Multiply: 2×4=8", "needs_review": false, "correct_answer": "8"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 7", "difficulty": "medium", "explanation": "Multiply: 5×7=35", "needs_review": false, "correct_answer": "35"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}]
265	133	Unit Conversion Practice	\N	Complete this homework assignment on "Unit Conversion Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.290375	2026-06-23 11:23:04.290375	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 25 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "40"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 13", "difficulty": "medium", "explanation": "Multiply: 18×13=234", "needs_review": false, "correct_answer": "234"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 16", "difficulty": "medium", "explanation": "Multiply: 17×16=272", "needs_review": false, "correct_answer": "272"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}]
266	133	Unit Conversion Quiz	\N	Complete this quiz on "Unit Conversion Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.290699	2026-06-23 11:23:04.290699	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 69 + 10", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "79"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 15", "difficulty": "medium", "explanation": "Multiply: 5×15=75", "needs_review": false, "correct_answer": "75"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 10", "difficulty": "medium", "explanation": "Multiply: 3×10=30", "needs_review": false, "correct_answer": "30"}]
267	134	Area of Rectangles Practice	\N	Complete this homework assignment on "Area of Rectangles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.291356	2026-06-23 11:23:04.291356	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=8", "difficulty": "medium", "explanation": "A=l×w=8×8=64 sq units.", "needs_review": false, "correct_answer": "64"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["32", "64", "32", "16"], "question": "Find the perimeter of a rectangle: length=8, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+8)=2(16)=32", "needs_review": false, "correct_answer": "32"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}]
269	135	Perimeter Problems Practice	\N	Complete this homework assignment on "Perimeter Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.292264	2026-06-23 11:23:04.292264	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=11, width=4", "difficulty": "medium", "explanation": "A=l×w=11×4=44 sq units.", "needs_review": false, "correct_answer": "44"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["15", "30", "44", "44"], "question": "Find the perimeter of a rectangle: length=11, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(11+4)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 15", "difficulty": "medium", "explanation": "Multiply: 16×15=240", "needs_review": false, "correct_answer": "240"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 19", "difficulty": "medium", "explanation": "Multiply: 5×19=95", "needs_review": false, "correct_answer": "95"}]
272	136	Number Patterns Quiz	\N	Complete this quiz on "Number Patterns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.293795	2026-06-23 11:23:04.293795	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 31", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "45"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 13", "difficulty": "medium", "explanation": "Multiply: 6×13=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 11", "difficulty": "medium", "explanation": "Multiply: 3×11=33", "needs_review": false, "correct_answer": "33"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 19", "difficulty": "medium", "explanation": "Multiply: 6×19=114", "needs_review": false, "correct_answer": "114"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}]
273	137	Input-Output Tables Practice	\N	Complete this homework assignment on "Input-Output Tables Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.294422	2026-06-23 11:23:04.294422	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 36 + 42", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "78"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 10", "difficulty": "medium", "explanation": "Multiply: 4×10=40", "needs_review": false, "correct_answer": "40"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 18", "difficulty": "medium", "explanation": "Multiply: 16×18=288", "needs_review": false, "correct_answer": "288"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}]
274	137	Input-Output Tables Quiz	\N	Complete this quiz on "Input-Output Tables Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.294726	2026-06-23 11:23:04.294726	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 37 + 83", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "120"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 18", "difficulty": "medium", "explanation": "Multiply: 5×18=90", "needs_review": false, "correct_answer": "90"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 3", "difficulty": "medium", "explanation": "Multiply: 7×3=21", "needs_review": false, "correct_answer": "21"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}]
276	138	Order of Operations Quiz	\N	Complete this quiz on "Order of Operations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.295648	2026-06-23 11:23:04.295648	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 49 + 29", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "78"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 5", "difficulty": "medium", "explanation": "Multiply: 14×5=70", "needs_review": false, "correct_answer": "70"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 2", "difficulty": "medium", "explanation": "Multiply: 15×2=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 17", "difficulty": "medium", "explanation": "Multiply: 12×17=204", "needs_review": false, "correct_answer": "204"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}]
1102	138	Patterns and Algebra Unit Test	\N	Complete this test on "Patterns and Algebra Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.737567	2026-06-23 11:23:04.737567	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 69 + 12", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "81"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 15", "difficulty": "medium", "explanation": "Multiply: 5×15=75", "needs_review": false, "correct_answer": "75"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 4", "difficulty": "medium", "explanation": "Multiply: 5×4=20", "needs_review": false, "correct_answer": "20"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 10", "difficulty": "medium", "explanation": "Multiply: 17×10=170", "needs_review": false, "correct_answer": "170"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 12", "difficulty": "medium", "explanation": "Multiply: 19×12=228", "needs_review": false, "correct_answer": "228"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}]
1142	258	Operations with Rational Numbers Unit Test	\N	Complete this test on "Operations with Rational Numbers Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.757826	2026-06-23 11:23:04.757826	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 20", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "74"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 13", "difficulty": "medium", "explanation": "Multiply: 5×13=65", "needs_review": false, "correct_answer": "65"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 6", "difficulty": "medium", "explanation": "Multiply: 20×6=120", "needs_review": false, "correct_answer": "120"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 5", "difficulty": "medium", "explanation": "Multiply: 18×5=90", "needs_review": false, "correct_answer": "90"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 10", "difficulty": "medium", "explanation": "Multiply: 12×10=120", "needs_review": false, "correct_answer": "120"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 20", "difficulty": "medium", "explanation": "Multiply: 16×20=320", "needs_review": false, "correct_answer": "320"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}]
302	151	Forms of Energy Quiz	\N	Complete this quiz on "Forms of Energy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.313216	2026-06-23 11:23:04.313216	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Forms of Energy, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
303	152	Energy Transfer Practice	\N	Complete this homework assignment on "Energy Transfer Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.314078	2026-06-23 11:23:04.314078	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Energy Transfer, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
305	153	Electricity Practice	\N	Complete this homework assignment on "Electricity Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.315165	2026-06-23 11:23:04.315165	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electricity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
307	154	Rocks and Minerals Practice	\N	Complete this homework assignment on "Rocks and Minerals Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.316475	2026-06-23 11:23:04.316475	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Rocks and Minerals, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
308	154	Rocks and Minerals Quiz	\N	Complete this quiz on "Rocks and Minerals Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.316787	2026-06-23 11:23:04.316787	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Rocks and Minerals, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
309	155	Erosion and Weathering Practice	\N	Complete this homework assignment on "Erosion and Weathering Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.317389	2026-06-23 11:23:04.317389	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Condensation", "Collection", "Evaporation", "Precipitation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Erosion and Weathering, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
313	157	Plant Adaptations Practice	\N	Complete this homework assignment on "Plant Adaptations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.319512	2026-06-23 11:23:04.319512	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Soil, darkness, and oxygen", "Sand and ice", "Sunlight, water, and carbon dioxide", "Wind, rocks, and heat"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
315	158	Animal Adaptations Practice	\N	Complete this homework assignment on "Animal Adaptations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.320359	2026-06-23 11:23:04.320359	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
317	159	Food Webs Practice	\N	Complete this homework assignment on "Food Webs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.321449	2026-06-23 11:23:04.321449	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Food Webs, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
318	159	Food Webs Quiz	\N	Complete this quiz on "Food Webs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.321767	2026-06-23 11:23:04.321767	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Food Webs, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1108	156	Earth Science Unit Test	\N	Complete this test on "Earth Science Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.740799	2026-06-23 11:23:04.740799	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Fossils, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1109	159	Life Science Unit Test	\N	Complete this test on "Life Science Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.741327	2026-06-23 11:23:04.741327	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Food Webs, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
319	160	Native Americans of Nevada Practice	\N	Complete this homework assignment on "Native Americans of Nevada Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.323066	2026-06-23 11:23:04.323066	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Native Americans of Nevada. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
320	160	Native Americans of Nevada Quiz	\N	Complete this quiz on "Native Americans of Nevada Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.323365	2026-06-23 11:23:04.323365	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Native Americans of Nevada. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
323	162	Nevada Geography Practice	\N	Complete this homework assignment on "Nevada Geography Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.324898	2026-06-23 11:23:04.324898	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["8", "5", "6", "7"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Nevada Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
325	163	Northeast and Southeast Practice	\N	Complete this homework assignment on "Northeast and Southeast Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.326068	2026-06-23 11:23:04.326068	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Northeast and Southeast. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
326	163	Northeast and Southeast Quiz	\N	Complete this quiz on "Northeast and Southeast Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.326389	2026-06-23 11:23:04.326389	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Northeast and Southeast. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
270	135	Perimeter Problems Quiz	\N	Complete this quiz on "Perimeter Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.29256	2026-06-23 11:23:04.29256	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "A=l×w=8×7=56 sq units.", "needs_review": false, "correct_answer": "56"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["56", "32", "15", "30"], "question": "Find the perimeter of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+7)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 8", "difficulty": "medium", "explanation": "Multiply: 11×8=88", "needs_review": false, "correct_answer": "88"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 19", "difficulty": "medium", "explanation": "Multiply: 4×19=76", "needs_review": false, "correct_answer": "76"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 4", "difficulty": "medium", "explanation": "Multiply: 17×4=68", "needs_review": false, "correct_answer": "68"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 9", "difficulty": "medium", "explanation": "Multiply: 7×9=63", "needs_review": false, "correct_answer": "63"}]
329	165	West Region Practice	\N	Complete this homework assignment on "West Region Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.327837	2026-06-23 11:23:04.327837	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to West Region. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
330	165	West Region Quiz	\N	Complete this quiz on "West Region Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.328132	2026-06-23 11:23:04.328132	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to West Region. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
331	166	European Explorers Practice	\N	Complete this homework assignment on "European Explorers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.329082	2026-06-23 11:23:04.329082	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to European Explorers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
332	166	European Explorers Quiz	\N	Complete this quiz on "European Explorers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.329391	2026-06-23 11:23:04.329391	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to European Explorers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
333	167	Age of Discovery Practice	\N	Complete this homework assignment on "Age of Discovery Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.330032	2026-06-23 11:23:04.330032	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Age of Discovery. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
335	168	Impact on Native Peoples Practice	\N	Complete this homework assignment on "Impact on Native Peoples Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.331006	2026-06-23 11:23:04.331006	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Impact on Native Peoples. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
336	168	Impact on Native Peoples Quiz	\N	Complete this quiz on "Impact on Native Peoples Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.331286	2026-06-23 11:23:04.331286	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Impact on Native Peoples. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1112	168	Exploration Unit Test	\N	Complete this test on "Exploration Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.742891	2026-06-23 11:23:04.742891	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Impact on Native Peoples. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
558	279	Natural Selection Quiz	\N	Complete this quiz on "Natural Selection Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.449924	2026-06-23 11:23:04.449924	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Natural Selection, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
362	181	Point of View Quiz	\N	Complete this quiz on "Point of View Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.345821	2026-06-23 11:23:04.345821	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
364	182	Figurative Language Quiz	\N	Complete this quiz on "Figurative Language Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.346649	2026-06-23 11:23:04.346649	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about why fresh water is an important resource to protect"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
369	185	Narrative Essays Practice	\N	Complete this homework assignment on "Narrative Essays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.34928	2026-06-23 11:23:04.34928	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
371	186	Research Papers Practice	\N	Complete this homework assignment on "Research Papers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.350136	2026-06-23 11:23:04.350136	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
375	188	Prepositions Practice	\N	Complete this homework assignment on "Prepositions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.352055	2026-06-23 11:23:04.352055	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
377	189	Comma Rules Practice	\N	Complete this homework assignment on "Comma Rules Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.352979	2026-06-23 11:23:04.352979	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
860	430	World Wars Quiz	\N	Complete this quiz on "World Wars Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.6095	2026-06-23 11:23:04.6095	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A desire to expand westward", "Taxation without representation", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World Wars. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
381	191	Context Clues Practice	\N	Complete this homework assignment on "Context Clues Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.355263	2026-06-23 11:23:04.355263	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
382	191	Context Clues Quiz	\N	Complete this quiz on "Context Clues Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.355566	2026-06-23 11:23:04.355566	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
383	192	Academic Vocabulary Practice	\N	Complete this homework assignment on "Academic Vocabulary Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.356259	2026-06-23 11:23:04.356259	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1120	192	Vocabulary Unit Test	\N	Complete this test on "Vocabulary Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.746838	2026-06-23 11:23:04.746838	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
338	169	Decimal Place Value Quiz	\N	Complete this quiz on "Decimal Place Value Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.332863	2026-06-23 11:23:04.332863	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 70", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "135"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 7", "difficulty": "medium", "explanation": "Multiply: 12×7=84", "needs_review": false, "correct_answer": "84"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 11", "difficulty": "medium", "explanation": "Multiply: 5×11=55", "needs_review": false, "correct_answer": "55"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 4", "difficulty": "medium", "explanation": "Multiply: 10×4=40", "needs_review": false, "correct_answer": "40"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 7", "difficulty": "medium", "explanation": "Multiply: 8×7=56", "needs_review": false, "correct_answer": "56"}]
340	170	Adding and Subtracting Decimals Quiz	\N	Complete this quiz on "Adding and Subtracting Decimals Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.333735	2026-06-23 11:23:04.333735	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 87 + 213", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "300"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["305", "300", "310", "299"], "question": "What is the sum of 87 and 213?", "difficulty": "easy", "explanation": "87+213=300", "needs_review": false, "correct_answer": "300"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 87+213 = 213+87.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 14", "difficulty": "medium", "explanation": "Multiply: 16×14=224", "needs_review": false, "correct_answer": "224"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 16", "difficulty": "medium", "explanation": "Multiply: 16×16=256", "needs_review": false, "correct_answer": "256"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}]
342	171	Multiplying Decimals Quiz	\N	Complete this quiz on "Multiplying Decimals Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.334678	2026-06-23 11:23:04.334678	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "6 groups of 10.", "needs_review": false, "correct_answer": "60"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["60", "66", "50", "16"], "question": "What is the product of 6 and 10?", "difficulty": "easy", "explanation": "6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 14", "difficulty": "medium", "explanation": "Multiply: 7×14=98", "needs_review": false, "correct_answer": "98"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}]
344	172	Multiplying Fractions Quiz	\N	Complete this quiz on "Multiplying Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.335857	2026-06-23 11:23:04.335857	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "8 groups of 12.", "needs_review": false, "correct_answer": "96"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["104", "20", "96", "84"], "question": "What is the product of 8 and 12?", "difficulty": "easy", "explanation": "8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 16", "difficulty": "medium", "explanation": "Multiply: 10×16=160", "needs_review": false, "correct_answer": "160"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 18", "difficulty": "medium", "explanation": "Multiply: 6×18=108", "needs_review": false, "correct_answer": "108"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 20", "difficulty": "medium", "explanation": "Multiply: 2×20=40", "needs_review": false, "correct_answer": "40"}]
345	173	Dividing Fractions Practice	\N	Complete this homework assignment on "Dividing Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.336472	2026-06-23 11:23:04.336472	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["2/4", "3/4", "3/8", "1/2"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}]
348	174	Mixed Numbers Quiz	\N	Complete this quiz on "Mixed Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.338033	2026-06-23 11:23:04.338033	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 41 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "56"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 17", "difficulty": "medium", "explanation": "Multiply: 13×17=221", "needs_review": false, "correct_answer": "221"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 3", "difficulty": "medium", "explanation": "Multiply: 20×3=60", "needs_review": false, "correct_answer": "60"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}]
350	175	Volume of Rectangular Prisms Quiz	\N	Complete this quiz on "Volume of Rectangular Prisms Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.339302	2026-06-23 11:23:04.339302	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=12, width=6", "difficulty": "medium", "explanation": "A=l×w=12×6=72 sq units.", "needs_review": false, "correct_answer": "72"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["18", "36", "48", "72"], "question": "Find the perimeter of a rectangle: length=12, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(12+6)=2(18)=36", "needs_review": false, "correct_answer": "36"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 11", "difficulty": "medium", "explanation": "Multiply: 12×11=132", "needs_review": false, "correct_answer": "132"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 13", "difficulty": "medium", "explanation": "Multiply: 10×13=130", "needs_review": false, "correct_answer": "130"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 3", "difficulty": "medium", "explanation": "Multiply: 14×3=42", "needs_review": false, "correct_answer": "42"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}]
352	176	Converting Units Quiz	\N	Complete this quiz on "Converting Units Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.340294	2026-06-23 11:23:04.340294	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 79 + 78", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "157"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 6", "difficulty": "medium", "explanation": "Multiply: 20×6=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 20", "difficulty": "medium", "explanation": "Multiply: 9×20=180", "needs_review": false, "correct_answer": "180"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 19", "difficulty": "medium", "explanation": "Multiply: 12×19=228", "needs_review": false, "correct_answer": "228"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 5", "difficulty": "medium", "explanation": "Multiply: 11×5=55", "needs_review": false, "correct_answer": "55"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}]
354	177	Metric System Quiz	\N	Complete this quiz on "Metric System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.341156	2026-06-23 11:23:04.341156	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 80 + 75", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "155"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 18", "difficulty": "medium", "explanation": "Multiply: 2×18=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 3", "difficulty": "medium", "explanation": "Multiply: 7×3=21", "needs_review": false, "correct_answer": "21"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}]
356	178	Plotting Points Quiz	\N	Complete this quiz on "Plotting Points Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.342571	2026-06-23 11:23:04.342571	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 96 + 66", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 5", "difficulty": "medium", "explanation": "Multiply: 4×5=20", "needs_review": false, "correct_answer": "20"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 10", "difficulty": "medium", "explanation": "Multiply: 7×10=70", "needs_review": false, "correct_answer": "70"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 6", "difficulty": "medium", "explanation": "Multiply: 16×6=96", "needs_review": false, "correct_answer": "96"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 12", "difficulty": "medium", "explanation": "Multiply: 13×12=156", "needs_review": false, "correct_answer": "156"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}]
358	179	Ordered Pairs Quiz	\N	Complete this quiz on "Ordered Pairs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.343435	2026-06-23 11:23:04.343435	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 61", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "149"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 12", "difficulty": "medium", "explanation": "Multiply: 6×12=72", "needs_review": false, "correct_answer": "72"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 6", "difficulty": "medium", "explanation": "Multiply: 17×6=102", "needs_review": false, "correct_answer": "102"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}]
359	180	Graphing Patterns Practice	\N	Complete this homework assignment on "Graphing Patterns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.344024	2026-06-23 11:23:04.344024	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 79 + 40", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "119"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 6", "difficulty": "medium", "explanation": "Multiply: 12×6=72", "needs_review": false, "correct_answer": "72"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}]
1114	174	Fractions Unit Test	\N	Complete this test on "Fractions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.74384	2026-06-23 11:23:04.74384	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 76 + 72", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "148"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 6", "difficulty": "medium", "explanation": "Multiply: 7×6=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 11", "difficulty": "medium", "explanation": "Multiply: 7×11=77", "needs_review": false, "correct_answer": "77"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 13", "difficulty": "medium", "explanation": "Multiply: 18×13=234", "needs_review": false, "correct_answer": "234"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 7", "difficulty": "medium", "explanation": "Multiply: 16×7=112", "needs_review": false, "correct_answer": "112"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 19", "difficulty": "medium", "explanation": "Multiply: 9×19=171", "needs_review": false, "correct_answer": "171"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 3", "difficulty": "medium", "explanation": "Multiply: 9×3=27", "needs_review": false, "correct_answer": "27"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 17", "difficulty": "medium", "explanation": "Multiply: 6×17=102", "needs_review": false, "correct_answer": "102"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 15", "difficulty": "medium", "explanation": "Multiply: 14×15=210", "needs_review": false, "correct_answer": "210"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}]
1115	177	Volume and Measurement Unit Test	\N	Complete this test on "Volume and Measurement Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.744314	2026-06-23 11:23:04.744314	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 99 + 25", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "124"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 5", "difficulty": "medium", "explanation": "Multiply: 18×5=90", "needs_review": false, "correct_answer": "90"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 15", "difficulty": "medium", "explanation": "Multiply: 7×15=105", "needs_review": false, "correct_answer": "105"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 20", "difficulty": "medium", "explanation": "Multiply: 6×20=120", "needs_review": false, "correct_answer": "120"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 18", "difficulty": "medium", "explanation": "Multiply: 20×18=360", "needs_review": false, "correct_answer": "360"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 10", "difficulty": "medium", "explanation": "Multiply: 18×10=180", "needs_review": false, "correct_answer": "180"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 14", "difficulty": "medium", "explanation": "Multiply: 10×14=140", "needs_review": false, "correct_answer": "140"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 15", "difficulty": "medium", "explanation": "Multiply: 7×15=105", "needs_review": false, "correct_answer": "105"}]
360	180	Graphing Patterns Quiz	\N	Complete this quiz on "Graphing Patterns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.344296	2026-06-23 11:23:04.344296	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 81 + 62", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "143"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 6", "difficulty": "medium", "explanation": "Multiply: 9×6=54", "needs_review": false, "correct_answer": "54"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 3", "difficulty": "medium", "explanation": "Multiply: 4×3=12", "needs_review": false, "correct_answer": "12"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 8", "difficulty": "medium", "explanation": "Multiply: 6×8=48", "needs_review": false, "correct_answer": "48"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}]
385	193	Properties of Matter Practice	\N	Complete this homework assignment on "Properties of Matter Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.35788	2026-06-23 11:23:04.35788	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Properties of Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
386	193	Properties of Matter Quiz	\N	Complete this quiz on "Properties of Matter Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.358267	2026-06-23 11:23:04.358267	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Properties of Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
388	194	Chemical vs Physical Changes Quiz	\N	Complete this quiz on "Chemical vs Physical Changes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.359148	2026-06-23 11:23:04.359148	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Ionic", "Metallic", "Hydrogen", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Chemical vs Physical Changes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
391	196	Water Cycle Practice	\N	Complete this homework assignment on "Water Cycle Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.360973	2026-06-23 11:23:04.360973	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Collection", "Evaporation", "Condensation", "Precipitation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Water Cycle, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
392	196	Water Cycle Quiz	\N	Complete this quiz on "Water Cycle Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.361253	2026-06-23 11:23:04.361253	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Condensation", "Precipitation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Water Cycle, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
394	197	Ocean Currents Quiz	\N	Complete this quiz on "Ocean Currents Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.362143	2026-06-23 11:23:04.362143	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Currents, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
397	199	Solar System Practice	\N	Complete this homework assignment on "Solar System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.364	2026-06-23 11:23:04.364	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solar System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
398	199	Solar System Quiz	\N	Complete this quiz on "Solar System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.364272	2026-06-23 11:23:04.364272	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solar System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
399	200	Stars and Galaxies Practice	\N	Complete this homework assignment on "Stars and Galaxies Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.364852	2026-06-23 11:23:04.364852	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stars and Galaxies, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
400	200	Stars and Galaxies Quiz	\N	Complete this quiz on "Stars and Galaxies Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.365171	2026-06-23 11:23:04.365171	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stars and Galaxies, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
401	201	Earth Moon System Practice	\N	Complete this homework assignment on "Earth Moon System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.365772	2026-06-23 11:23:04.365772	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Moon System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
402	201	Earth Moon System Quiz	\N	Complete this quiz on "Earth Moon System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.36605	2026-06-23 11:23:04.36605	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Moon System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1123	201	Space Science Unit Test	\N	Complete this test on "Space Science Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.748245	2026-06-23 11:23:04.748245	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earth Moon System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
403	202	13 Colonies Practice	\N	Complete this homework assignment on "13 Colonies Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.367227	2026-06-23 11:23:04.367227	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to 13 Colonies. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
406	203	Colonial Life Quiz	\N	Complete this quiz on "Colonial Life Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.368474	2026-06-23 11:23:04.368474	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Colonial Life. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
408	204	Road to Revolution Quiz	\N	Complete this quiz on "Road to Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.36935	2026-06-23 11:23:04.36935	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "Religious conflict", "A trade dispute with France", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Road to Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
411	206	Key Battles Practice	\N	Complete this homework assignment on "Key Battles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.371727	2026-06-23 11:23:04.371727	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Key Battles. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
415	208	Constitution Practice	\N	Complete this homework assignment on "Constitution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.373882	2026-06-23 11:23:04.373882	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Judicial (Supreme Court)", "Executive (President)", "Military", "Legislative (Congress)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Federalist Papers", "The Bill of Rights", "The Articles", "The Preamble"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Constitution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
417	209	Bill of Rights Practice	\N	Complete this homework assignment on "Bill of Rights Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.374775	2026-06-23 11:23:04.374775	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Bill of Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
418	209	Bill of Rights Quiz	\N	Complete this quiz on "Bill of Rights Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.375197	2026-06-23 11:23:04.375197	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Bill of Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1125	207	American Revolution Unit Test	\N	Complete this test on "American Revolution Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.749186	2026-06-23 11:23:04.749186	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "Taxation without representation", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Declaration of Independence. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
420	210	Westward Expansion Quiz	\N	Complete this quiz on "Westward Expansion Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.376074	2026-06-23 11:23:04.376074	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A trade dispute with France", "Religious conflict", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Westward Expansion. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
445	223	Analyzing Characters Practice	\N	Complete this homework assignment on "Analyzing Characters Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.390257	2026-06-23 11:23:04.390257	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
446	223	Analyzing Characters Quiz	\N	Complete this quiz on "Analyzing Characters Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.390569	2026-06-23 11:23:04.390569	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
449	225	Author Purpose Practice	\N	Complete this homework assignment on "Author Purpose Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.391974	2026-06-23 11:23:04.391974	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
450	225	Author Purpose Quiz	\N	Complete this quiz on "Author Purpose Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.392256	2026-06-23 11:23:04.392256	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
460	230	Note-Taking Strategies Quiz	\N	Complete this quiz on "Note-Taking Strategies Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.397829	2026-06-23 11:23:04.397829	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
452	226	Claims and Evidence Quiz	\N	Complete this quiz on "Claims and Evidence Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.393482	2026-06-23 11:23:04.393482	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
454	227	Counterarguments Quiz	\N	Complete this quiz on "Counterarguments Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.394636	2026-06-23 11:23:04.394636	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
466	233	Group Discussions Quiz	\N	Complete this quiz on "Group Discussions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.400713	2026-06-23 11:23:04.400713	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
456	228	Persuasive Techniques Quiz	\N	Complete this quiz on "Persuasive Techniques Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.395703	2026-06-23 11:23:04.395703	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
458	229	Evaluating Sources Quiz	\N	Complete this quiz on "Evaluating Sources Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.396897	2026-06-23 11:23:04.396897	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
459	230	Note-Taking Strategies Practice	\N	Complete this homework assignment on "Note-Taking Strategies Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.397533	2026-06-23 11:23:04.397533	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
464	232	Debate Skills Quiz	\N	Complete this quiz on "Debate Skills Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.399867	2026-06-23 11:23:04.399867	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
465	233	Group Discussions Practice	\N	Complete this homework assignment on "Group Discussions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.400438	2026-06-23 11:23:04.400438	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1132	228	Argumentative Writing Unit Test	\N	Complete this test on "Argumentative Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.75265	2026-06-23 11:23:04.75265	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1133	231	Research Unit Test	\N	Complete this test on "Research Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.753155	2026-06-23 11:23:04.753155	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1134	234	Speaking and Listening Unit Test	\N	Complete this test on "Speaking and Listening Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.753603	2026-06-23 11:23:04.753603	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
423	212	Unit Rates Practice	\N	Complete this homework assignment on "Unit Rates Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.378159	2026-06-23 11:23:04.378159	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 97 + 88", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "185"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 3", "difficulty": "medium", "explanation": "Multiply: 9×3=27", "needs_review": false, "correct_answer": "27"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 18", "difficulty": "medium", "explanation": "Multiply: 5×18=90", "needs_review": false, "correct_answer": "90"}]
424	212	Unit Rates Quiz	\N	Complete this quiz on "Unit Rates Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.3785	2026-06-23 11:23:04.3785	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 40 + 87", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "127"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 6", "difficulty": "medium", "explanation": "Multiply: 12×6=72", "needs_review": false, "correct_answer": "72"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 4", "difficulty": "medium", "explanation": "Multiply: 11×4=44", "needs_review": false, "correct_answer": "44"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 9", "difficulty": "medium", "explanation": "Multiply: 4×9=36", "needs_review": false, "correct_answer": "36"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}]
425	213	Proportional Relationships Practice	\N	Complete this homework assignment on "Proportional Relationships Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.379082	2026-06-23 11:23:04.379082	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 56 + 71", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "127"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 10", "difficulty": "medium", "explanation": "Multiply: 2×10=20", "needs_review": false, "correct_answer": "20"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 19", "difficulty": "medium", "explanation": "Multiply: 13×19=247", "needs_review": false, "correct_answer": "247"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}]
427	214	Positive and Negative Numbers Practice	\N	Complete this homework assignment on "Positive and Negative Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.380269	2026-06-23 11:23:04.380269	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 24 + 47", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "71"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 13", "difficulty": "medium", "explanation": "Multiply: 9×13=117", "needs_review": false, "correct_answer": "117"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 4", "difficulty": "medium", "explanation": "Multiply: 17×4=68", "needs_review": false, "correct_answer": "68"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}]
429	215	Adding Integers Practice	\N	Complete this homework assignment on "Adding Integers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.381316	2026-06-23 11:23:04.381316	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 83 + 96", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "179"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["184", "178", "189", "179"], "question": "What is the sum of 83 and 96?", "difficulty": "easy", "explanation": "83+96=179", "needs_review": false, "correct_answer": "179"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 83+96 = 96+83.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 13", "difficulty": "medium", "explanation": "Multiply: 14×13=182", "needs_review": false, "correct_answer": "182"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 4", "difficulty": "medium", "explanation": "Multiply: 5×4=20", "needs_review": false, "correct_answer": "20"}]
430	215	Adding Integers Quiz	\N	Complete this quiz on "Adding Integers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.381623	2026-06-23 11:23:04.381623	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 111 + 134", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "245"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["244", "245", "250", "255"], "question": "What is the sum of 111 and 134?", "difficulty": "easy", "explanation": "111+134=245", "needs_review": false, "correct_answer": "245"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 111+134 = 134+111.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 18", "difficulty": "medium", "explanation": "Multiply: 2×18=36", "needs_review": false, "correct_answer": "36"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 8", "difficulty": "medium", "explanation": "Multiply: 2×8=16", "needs_review": false, "correct_answer": "16"}]
431	216	Subtracting Integers Practice	\N	Complete this homework assignment on "Subtracting Integers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.382274	2026-06-23 11:23:04.382274	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 854 − 526", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "328"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["329", "326", "328", "1380"], "question": "What is 854 − 526?", "difficulty": "easy", "explanation": "854-526=328", "needs_review": false, "correct_answer": "328"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 2", "difficulty": "medium", "explanation": "Multiply: 8×2=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 14", "difficulty": "medium", "explanation": "Multiply: 9×14=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}]
432	216	Subtracting Integers Quiz	\N	Complete this quiz on "Subtracting Integers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.382564	2026-06-23 11:23:04.382564	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 552 − 477", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "75"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["75", "1029", "76", "73"], "question": "What is 552 − 477?", "difficulty": "easy", "explanation": "552-477=75", "needs_review": false, "correct_answer": "75"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 8", "difficulty": "medium", "explanation": "Multiply: 10×8=80", "needs_review": false, "correct_answer": "80"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 8", "difficulty": "medium", "explanation": "Multiply: 8×8=64", "needs_review": false, "correct_answer": "64"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}]
436	218	Solving One-Step Equations Quiz	\N	Complete this quiz on "Solving One-Step Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.384789	2026-06-23 11:23:04.384789	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 14", "x = 8", "x = 32"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 10", "difficulty": "medium", "explanation": "Multiply: 14×10=140", "needs_review": false, "correct_answer": "140"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 4", "difficulty": "medium", "explanation": "Multiply: 17×4=68", "needs_review": false, "correct_answer": "68"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 14", "difficulty": "medium", "explanation": "Multiply: 19×14=266", "needs_review": false, "correct_answer": "266"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 5", "difficulty": "medium", "explanation": "Multiply: 3×5=15", "needs_review": false, "correct_answer": "15"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 13", "difficulty": "medium", "explanation": "Multiply: 15×13=195", "needs_review": false, "correct_answer": "195"}]
471	236	Plant vs Animal Cells Practice	\N	Complete this homework assignment on "Plant vs Animal Cells Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.403862	2026-06-23 11:23:04.403862	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Sunlight, water, and carbon dioxide", "Sand and ice", "Wind, rocks, and heat", "Soil, darkness, and oxygen"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant vs Animal Cells, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
440	220	Mean Median and Mode Quiz	\N	Complete this quiz on "Mean Median and Mode Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.386739	2026-06-23 11:23:04.386739	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 44 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "55"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 9", "difficulty": "medium", "explanation": "Multiply: 7×9=63", "needs_review": false, "correct_answer": "63"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 8", "difficulty": "medium", "explanation": "Multiply: 12×8=96", "needs_review": false, "correct_answer": "96"}]
442	221	Data Displays Quiz	\N	Complete this quiz on "Data Displays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.38788	2026-06-23 11:23:04.38788	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 + 40", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "57"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 18", "difficulty": "medium", "explanation": "Multiply: 17×18=306", "needs_review": false, "correct_answer": "306"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 20", "difficulty": "medium", "explanation": "Multiply: 17×20=340", "needs_review": false, "correct_answer": "340"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "Multiply: 4×11=44", "needs_review": false, "correct_answer": "44"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 13", "difficulty": "medium", "explanation": "Multiply: 13×13=169", "needs_review": false, "correct_answer": "169"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}]
443	222	Measures of Variability Practice	\N	Complete this homework assignment on "Measures of Variability Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.388551	2026-06-23 11:23:04.388551	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 21 + 74", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "95"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 2", "difficulty": "medium", "explanation": "Multiply: 8×2=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}]
1128	216	Integers Unit Test	\N	Complete this test on "Integers Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.750619	2026-06-23 11:23:04.750619	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 1161 − 472", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "689"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["689", "1633", "687", "690"], "question": "What is 1161 − 472?", "difficulty": "easy", "explanation": "1161-472=689", "needs_review": false, "correct_answer": "689"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 19", "difficulty": "medium", "explanation": "Multiply: 10×19=190", "needs_review": false, "correct_answer": "190"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 3", "difficulty": "medium", "explanation": "Multiply: 4×3=12", "needs_review": false, "correct_answer": "12"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 11", "difficulty": "medium", "explanation": "Multiply: 7×11=77", "needs_review": false, "correct_answer": "77"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 2", "difficulty": "medium", "explanation": "Multiply: 13×2=26", "needs_review": false, "correct_answer": "26"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 5", "difficulty": "medium", "explanation": "Multiply: 16×5=80", "needs_review": false, "correct_answer": "80"}]
444	222	Measures of Variability Quiz	\N	Complete this quiz on "Measures of Variability Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.388907	2026-06-23 11:23:04.388907	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 43 + 23", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "66"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}]
1130	222	Statistics Unit Test	\N	Complete this test on "Statistics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.751602	2026-06-23 11:23:04.751602	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 40", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "105"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 17", "difficulty": "medium", "explanation": "Multiply: 3×17=51", "needs_review": false, "correct_answer": "51"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 14", "difficulty": "medium", "explanation": "Multiply: 4×14=56", "needs_review": false, "correct_answer": "56"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 5", "difficulty": "medium", "explanation": "Multiply: 20×5=100", "needs_review": false, "correct_answer": "100"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 12", "difficulty": "medium", "explanation": "Multiply: 14×12=168", "needs_review": false, "correct_answer": "168"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 7", "difficulty": "medium", "explanation": "Multiply: 8×7=56", "needs_review": false, "correct_answer": "56"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}]
470	235	Cell Structure Quiz	\N	Complete this quiz on "Cell Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.403207	2026-06-23 11:23:04.403207	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Nucleus", "Cell membrane", "Mitochondria", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
474	237	Cell Functions Quiz	\N	Complete this quiz on "Cell Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.405237	2026-06-23 11:23:04.405237	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Mitochondria", "Nucleus", "Cell membrane", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Functions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
475	238	Digestive System Practice	\N	Complete this homework assignment on "Digestive System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.40615	2026-06-23 11:23:04.40615	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Digestive System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
476	238	Digestive System Quiz	\N	Complete this quiz on "Digestive System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.406451	2026-06-23 11:23:04.406451	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Digestive System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
477	239	Circulatory System Practice	\N	Complete this homework assignment on "Circulatory System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.407206	2026-06-23 11:23:04.407206	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Circulatory System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
480	240	Respiratory System Quiz	\N	Complete this quiz on "Respiratory System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.408366	2026-06-23 11:23:04.408366	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Respiratory System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
482	241	Biomes Quiz	\N	Complete this quiz on "Biomes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.409607	2026-06-23 11:23:04.409607	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Biomes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
483	242	Ecosystems Practice	\N	Complete this homework assignment on "Ecosystems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.410243	2026-06-23 11:23:04.410243	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ecosystems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
485	243	Human Impact on Environment Practice	\N	Complete this homework assignment on "Human Impact on Environment Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.411159	2026-06-23 11:23:04.411159	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact on Environment, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1137	243	Ecology Unit Test	\N	Complete this test on "Ecology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.755105	2026-06-23 11:23:04.755105	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact on Environment, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
523	262	Probability Practice	\N	Complete this homework assignment on "Probability Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.431117	2026-06-23 11:23:04.431117	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 25 + 16", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "41"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 20", "difficulty": "medium", "explanation": "Multiply: 8×20=160", "needs_review": false, "correct_answer": "160"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 9", "difficulty": "medium", "explanation": "Multiply: 18×9=162", "needs_review": false, "correct_answer": "162"}]
488	244	Mesopotamia Quiz	\N	Complete this quiz on "Mesopotamia Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.412898	2026-06-23 11:23:04.412898	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Mesopotamia. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
489	245	Ancient Egypt Practice	\N	Complete this homework assignment on "Ancient Egypt Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.413449	2026-06-23 11:23:04.413449	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Ancient Egypt. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
502	251	Roman Empire Quiz	\N	Complete this quiz on "Roman Empire Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.419728	2026-06-23 11:23:04.419728	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Roman Empire. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
494	247	Maps and Globes Quiz	\N	Complete this quiz on "Maps and Globes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.415934	2026-06-23 11:23:04.415934	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "7", "6", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Maps and Globes. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
496	248	Climate Zones Quiz	\N	Complete this quiz on "Climate Zones Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.416794	2026-06-23 11:23:04.416794	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Climate Zones. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
534	267	Drama and Plays Quiz	\N	Complete this quiz on "Drama and Plays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.437194	2026-06-23 11:23:04.437194	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
498	249	Cultural Geography Quiz	\N	Complete this quiz on "Cultural Geography Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.417657	2026-06-23 11:23:04.417657	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["7", "6", "8", "5"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cultural Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
499	250	Roman Republic Practice	\N	Complete this homework assignment on "Roman Republic Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.418575	2026-06-23 11:23:04.418575	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Roman Republic. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
501	251	Roman Empire Practice	\N	Complete this homework assignment on "Roman Empire Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.41946	2026-06-23 11:23:04.41946	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Roman Empire. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1147	273	Grammar Unit Test	\N	Complete this test on "Grammar Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.760179	2026-06-23 11:23:04.760179	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
503	252	Fall of Rome Practice	\N	Complete this homework assignment on "Fall of Rome Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.420373	2026-06-23 11:23:04.420373	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Fall of Rome. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
504	252	Fall of Rome Quiz	\N	Complete this quiz on "Fall of Rome Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.420756	2026-06-23 11:23:04.420756	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Fall of Rome. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1140	252	Ancient Rome Unit Test	\N	Complete this test on "Ancient Rome Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.756688	2026-06-23 11:23:04.756688	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Fall of Rome. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
542	271	Phrases and Clauses Quiz	\N	Complete this quiz on "Phrases and Clauses Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.441843	2026-06-23 11:23:04.441843	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
530	265	Short Stories Quiz	\N	Complete this quiz on "Short Stories Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.435365	2026-06-23 11:23:04.435365	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
532	266	Poetry Analysis Quiz	\N	Complete this quiz on "Poetry Analysis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.436274	2026-06-23 11:23:04.436274	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
533	267	Drama and Plays Practice	\N	Complete this homework assignment on "Drama and Plays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.436857	2026-06-23 11:23:04.436857	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
538	269	Expository Writing Quiz	\N	Complete this quiz on "Expository Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.439659	2026-06-23 11:23:04.439659	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
539	270	Argumentative Essays Practice	\N	Complete this homework assignment on "Argumentative Essays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.440237	2026-06-23 11:23:04.440237	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
544	272	Active vs Passive Voice Quiz	\N	Complete this quiz on "Active vs Passive Voice Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.442726	2026-06-23 11:23:04.442726	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
547	274	Word Origins Practice	\N	Complete this homework assignment on "Word Origins Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.444569	2026-06-23 11:23:04.444569	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
548	274	Word Origins Quiz	\N	Complete this quiz on "Word Origins Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.444855	2026-06-23 11:23:04.444855	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1145	267	Literature Unit Test	\N	Complete this test on "Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.759266	2026-06-23 11:23:04.759266	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1146	270	Writing Unit Test	\N	Complete this test on "Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.759732	2026-06-23 11:23:04.759732	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
551	276	Academic Language Practice	\N	Complete this homework assignment on "Academic Language Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.446272	2026-06-23 11:23:04.446272	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
552	276	Academic Language Quiz	\N	Complete this quiz on "Academic Language Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.446574	2026-06-23 11:23:04.446574	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
507	254	Proportional Graphs Practice	\N	Complete this homework assignment on "Proportional Graphs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.423286	2026-06-23 11:23:04.423286	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 82 + 16", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "98"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}]
509	255	Scale Drawings Practice	\N	Complete this homework assignment on "Scale Drawings Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.424125	2026-06-23 11:23:04.424125	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 90 + 90", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "180"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 10", "difficulty": "medium", "explanation": "Multiply: 8×10=80", "needs_review": false, "correct_answer": "80"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}]
516	258	Rational Number Word Problems Quiz	\N	Complete this quiz on "Rational Number Word Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.427308	2026-06-23 11:23:04.427308	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 66 + 59", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "125"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 5", "difficulty": "medium", "explanation": "Multiply: 2×5=10", "needs_review": false, "correct_answer": "10"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 8", "difficulty": "medium", "explanation": "Multiply: 15×8=120", "needs_review": false, "correct_answer": "120"}]
511	256	Multiplying and Dividing Integers Practice	\N	Complete this homework assignment on "Multiplying and Dividing Integers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.42528	2026-06-23 11:23:04.42528	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 12 × 11", "difficulty": "medium", "explanation": "12 groups of 11.", "needs_review": false, "correct_answer": "132"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["121", "144", "132", "23"], "question": "What is the product of 12 and 11?", "difficulty": "easy", "explanation": "12×11=132", "needs_review": false, "correct_answer": "132"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 12", "difficulty": "medium", "explanation": "Multiply: 18×12=216", "needs_review": false, "correct_answer": "216"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}]
513	257	Operations with Fractions Practice	\N	Complete this homework assignment on "Operations with Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.426147	2026-06-23 11:23:04.426147	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["1/2", "3/4", "3/8", "2/4"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 7", "difficulty": "medium", "explanation": "Multiply: 16×7=112", "needs_review": false, "correct_answer": "112"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 6", "difficulty": "medium", "explanation": "Multiply: 17×6=102", "needs_review": false, "correct_answer": "102"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 10", "difficulty": "medium", "explanation": "Multiply: 4×10=40", "needs_review": false, "correct_answer": "40"}]
514	257	Operations with Fractions Quiz	\N	Complete this quiz on "Operations with Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.426423	2026-06-23 11:23:04.426423	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["2/4", "3/8", "3/4", "1/2"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 9", "difficulty": "medium", "explanation": "Multiply: 16×9=144", "needs_review": false, "correct_answer": "144"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 14", "difficulty": "medium", "explanation": "Multiply: 7×14=98", "needs_review": false, "correct_answer": "98"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 2", "difficulty": "medium", "explanation": "Multiply: 12×2=24", "needs_review": false, "correct_answer": "24"}]
518	259	Angles Quiz	\N	Complete this quiz on "Angles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.428447	2026-06-23 11:23:04.428447	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=3", "difficulty": "medium", "explanation": "A=l×w=8×3=24 sq units.", "needs_review": false, "correct_answer": "24"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["24", "22", "32", "11"], "question": "Find the perimeter of a rectangle: length=8, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+3)=2(11)=22", "needs_review": false, "correct_answer": "22"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 6", "difficulty": "medium", "explanation": "Multiply: 17×6=102", "needs_review": false, "correct_answer": "102"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 17", "difficulty": "medium", "explanation": "Multiply: 3×17=51", "needs_review": false, "correct_answer": "51"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 16", "difficulty": "medium", "explanation": "Multiply: 9×16=144", "needs_review": false, "correct_answer": "144"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 8", "difficulty": "medium", "explanation": "Multiply: 20×8=160", "needs_review": false, "correct_answer": "160"}]
520	260	Area of Circles Quiz	\N	Complete this quiz on "Area of Circles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.429363	2026-06-23 11:23:04.429363	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=6, width=6", "difficulty": "medium", "explanation": "A=l×w=6×6=36 sq units.", "needs_review": false, "correct_answer": "36"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["12", "36", "24", "24"], "question": "Find the perimeter of a rectangle: length=6, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(6+6)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 11", "difficulty": "medium", "explanation": "Multiply: 9×11=99", "needs_review": false, "correct_answer": "99"}]
522	261	Surface Area and Volume Quiz	\N	Complete this quiz on "Surface Area and Volume Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.430203	2026-06-23 11:23:04.430203	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=9, width=5", "difficulty": "medium", "explanation": "A=l×w=9×5=45 sq units.", "needs_review": false, "correct_answer": "45"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["36", "45", "14", "28"], "question": "Find the perimeter of a rectangle: length=9, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(9+5)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 11", "difficulty": "medium", "explanation": "Multiply: 17×11=187", "needs_review": false, "correct_answer": "187"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}]
524	262	Probability Quiz	\N	Complete this quiz on "Probability Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.43145	2026-06-23 11:23:04.43145	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 + 55", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "65"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 6", "difficulty": "medium", "explanation": "Multiply: 12×6=72", "needs_review": false, "correct_answer": "72"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 19", "difficulty": "medium", "explanation": "Multiply: 12×19=228", "needs_review": false, "correct_answer": "228"}]
525	263	Sampling Practice	\N	Complete this homework assignment on "Sampling Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.432045	2026-06-23 11:23:04.432045	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 43 + 88", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "131"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}]
526	263	Sampling Quiz	\N	Complete this quiz on "Sampling Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.432355	2026-06-23 11:23:04.432355	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 96 + 19", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "115"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 20", "difficulty": "medium", "explanation": "Multiply: 17×20=340", "needs_review": false, "correct_answer": "340"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 13", "difficulty": "medium", "explanation": "Multiply: 16×13=208", "needs_review": false, "correct_answer": "208"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 11", "difficulty": "medium", "explanation": "Multiply: 13×11=143", "needs_review": false, "correct_answer": "143"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 18", "difficulty": "medium", "explanation": "Multiply: 14×18=252", "needs_review": false, "correct_answer": "252"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 7", "difficulty": "medium", "explanation": "Multiply: 16×7=112", "needs_review": false, "correct_answer": "112"}]
528	264	Comparing Populations Quiz	\N	Complete this quiz on "Comparing Populations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.433199	2026-06-23 11:23:04.433199	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 58 + 83", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "141"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 15", "difficulty": "medium", "explanation": "Multiply: 14×15=210", "needs_review": false, "correct_answer": "210"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 10", "difficulty": "medium", "explanation": "Multiply: 18×10=180", "needs_review": false, "correct_answer": "180"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 20", "difficulty": "medium", "explanation": "Multiply: 13×20=260", "needs_review": false, "correct_answer": "260"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 17", "difficulty": "medium", "explanation": "Multiply: 6×17=102", "needs_review": false, "correct_answer": "102"}]
553	277	Genetics Basics Practice	\N	Complete this homework assignment on "Genetics Basics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.4478	2026-06-23 11:23:04.4478	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Genetics Basics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
555	278	DNA and Heredity Practice	\N	Complete this homework assignment on "DNA and Heredity Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.448657	2026-06-23 11:23:04.448657	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about DNA and Heredity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
557	279	Natural Selection Practice	\N	Complete this homework assignment on "Natural Selection Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.449636	2026-06-23 11:23:04.449636	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Natural Selection, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
560	280	Nervous System Quiz	\N	Complete this quiz on "Nervous System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.451123	2026-06-23 11:23:04.451123	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Nervous System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
563	282	Immune System Practice	\N	Complete this homework assignment on "Immune System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.452578	2026-06-23 11:23:04.452578	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Immune System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
564	282	Immune System Quiz	\N	Complete this quiz on "Immune System Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.452874	2026-06-23 11:23:04.452874	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Immune System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
566	283	Population Dynamics Quiz	\N	Complete this quiz on "Population Dynamics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.454039	2026-06-23 11:23:04.454039	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Population Dynamics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
567	284	Symbiotic Relationships Practice	\N	Complete this homework assignment on "Symbiotic Relationships Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.454669	2026-06-23 11:23:04.454669	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Symbiotic Relationships, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
568	284	Symbiotic Relationships Quiz	\N	Complete this quiz on "Symbiotic Relationships Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.455027	2026-06-23 11:23:04.455027	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Symbiotic Relationships, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
569	285	Conservation Practice	\N	Complete this homework assignment on "Conservation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.455742	2026-06-23 11:23:04.455742	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Conservation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1150	282	Human Body Unit Test	\N	Complete this test on "Human Body Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.761649	2026-06-23 11:23:04.761649	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Immune System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
571	286	Middle Ages in Europe Practice	\N	Complete this homework assignment on "Middle Ages in Europe Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.45747	2026-06-23 11:23:04.45747	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Middle Ages in Europe. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
572	286	Middle Ages in Europe Quiz	\N	Complete this quiz on "Middle Ages in Europe Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.457756	2026-06-23 11:23:04.457756	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Middle Ages in Europe. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
575	288	Asian Civilizations Practice	\N	Complete this homework assignment on "Asian Civilizations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.459168	2026-06-23 11:23:04.459168	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Asian Civilizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
577	289	Renaissance Art and Ideas Practice	\N	Complete this homework assignment on "Renaissance Art and Ideas Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.460332	2026-06-23 11:23:04.460332	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Renaissance Art and Ideas. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
578	289	Renaissance Art and Ideas Quiz	\N	Complete this quiz on "Renaissance Art and Ideas Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.460618	2026-06-23 11:23:04.460618	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Renaissance Art and Ideas. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
580	290	Protestant Reformation Quiz	\N	Complete this quiz on "Protestant Reformation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.461452	2026-06-23 11:23:04.461452	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Protestant Reformation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
581	291	Age of Exploration Practice	\N	Complete this homework assignment on "Age of Exploration Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.462061	2026-06-23 11:23:04.462061	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Age of Exploration. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
583	292	Rights and Responsibilities Practice	\N	Complete this homework assignment on "Rights and Responsibilities Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.463312	2026-06-23 11:23:04.463312	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rights and Responsibilities. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
584	292	Rights and Responsibilities Quiz	\N	Complete this quiz on "Rights and Responsibilities Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.463609	2026-06-23 11:23:04.463609	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rights and Responsibilities. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
585	293	Local and State Government Practice	\N	Complete this homework assignment on "Local and State Government Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.464206	2026-06-23 11:23:04.464206	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Judicial (Supreme Court)", "Legislative (Congress)", "Executive (President)", "Military"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Bill of Rights", "The Federalist Papers", "The Articles", "The Preamble"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Local and State Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
587	294	Civic Participation Practice	\N	Complete this homework assignment on "Civic Participation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.465079	2026-06-23 11:23:04.465079	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Participation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1154	294	Civics Unit Test	\N	Complete this test on "Civics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.763525	2026-06-23 11:23:04.763525	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Participation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
614	307	Analyzing Arguments Quiz	\N	Complete this quiz on "Analyzing Arguments Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.479342	2026-06-23 11:23:04.479342	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
615	308	Evaluating Evidence Practice	\N	Complete this homework assignment on "Evaluating Evidence Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.479928	2026-06-23 11:23:04.479928	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
616	308	Evaluating Evidence Quiz	\N	Complete this quiz on "Evaluating Evidence Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.480201	2026-06-23 11:23:04.480201	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
618	309	Identifying Bias Quiz	\N	Complete this quiz on "Identifying Bias Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.481099	2026-06-23 11:23:04.481099	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
619	310	Thesis Statements Practice	\N	Complete this homework assignment on "Thesis Statements Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.482002	2026-06-23 11:23:04.482002	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
622	311	Research Methods Quiz	\N	Complete this quiz on "Research Methods Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.483151	2026-06-23 11:23:04.483151	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
624	312	Citations and Bibliography Quiz	\N	Complete this quiz on "Citations and Bibliography Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.484016	2026-06-23 11:23:04.484016	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
630	315	Comparative Analysis Quiz	\N	Complete this quiz on "Comparative Analysis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.487057	2026-06-23 11:23:04.487057	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
626	313	Historical Context Quiz	\N	Complete this quiz on "Historical Context Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.485182	2026-06-23 11:23:04.485182	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
629	315	Comparative Analysis Practice	\N	Complete this homework assignment on "Comparative Analysis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.486773	2026-06-23 11:23:04.486773	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
592	296	Slope Quiz	\N	Complete this quiz on "Slope Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.467762	2026-06-23 11:23:04.467762	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 59 + 26", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "85"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 15", "difficulty": "medium", "explanation": "Multiply: 18×15=270", "needs_review": false, "correct_answer": "270"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 19", "difficulty": "medium", "explanation": "Multiply: 12×19=228", "needs_review": false, "correct_answer": "228"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}]
634	317	Public Speaking Quiz	\N	Complete this quiz on "Public Speaking Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.489263	2026-06-23 11:23:04.489263	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "Success depends only on luck", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
635	318	Digital Literacy Practice	\N	Complete this homework assignment on "Digital Literacy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.489831	2026-06-23 11:23:04.489831	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
636	318	Digital Literacy Quiz	\N	Complete this quiz on "Digital Literacy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.490098	2026-06-23 11:23:04.490098	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1160	312	Research Writing Unit Test	\N	Complete this test on "Research Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.766437	2026-06-23 11:23:04.766437	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1161	315	Literary Criticism Unit Test	\N	Complete this test on "Literary Criticism Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.766942	2026-06-23 11:23:04.766942	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
1162	318	Communication Unit Test	\N	Complete this test on "Communication Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.767414	2026-06-23 11:23:04.767414	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
589	295	Solving Multi-Step Equations Practice	\N	Complete this homework assignment on "Solving Multi-Step Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.466604	2026-06-23 11:23:04.466604	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 14", "x = 32", "x = 8", "x = 4"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}]
590	295	Solving Multi-Step Equations Quiz	\N	Complete this quiz on "Solving Multi-Step Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.466889	2026-06-23 11:23:04.466889	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 32", "x = 4", "x = 8", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 9", "difficulty": "medium", "explanation": "Multiply: 2×9=18", "needs_review": false, "correct_answer": "18"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 6", "difficulty": "medium", "explanation": "Multiply: 9×6=54", "needs_review": false, "correct_answer": "54"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 10", "difficulty": "medium", "explanation": "Multiply: 17×10=170", "needs_review": false, "correct_answer": "170"}]
594	297	Graphing Linear Equations Quiz	\N	Complete this quiz on "Graphing Linear Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.468709	2026-06-23 11:23:04.468709	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 14", "x = 8", "x = 4", "x = 32"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 15", "difficulty": "medium", "explanation": "Multiply: 17×15=255", "needs_review": false, "correct_answer": "255"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}]
596	298	Solving by Graphing Quiz	\N	Complete this quiz on "Solving by Graphing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.469924	2026-06-23 11:23:04.469924	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 84 + 31", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "115"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 5", "difficulty": "medium", "explanation": "Multiply: 9×5=45", "needs_review": false, "correct_answer": "45"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 19", "difficulty": "medium", "explanation": "Multiply: 5×19=95", "needs_review": false, "correct_answer": "95"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 10", "difficulty": "medium", "explanation": "Multiply: 13×10=130", "needs_review": false, "correct_answer": "130"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}]
598	299	Solving by Substitution Quiz	\N	Complete this quiz on "Solving by Substitution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.470831	2026-06-23 11:23:04.470831	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 13", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "67"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 8", "difficulty": "medium", "explanation": "Multiply: 11×8=88", "needs_review": false, "correct_answer": "88"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 3", "difficulty": "medium", "explanation": "Multiply: 9×3=27", "needs_review": false, "correct_answer": "27"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 10", "difficulty": "medium", "explanation": "Multiply: 9×10=90", "needs_review": false, "correct_answer": "90"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 12", "difficulty": "medium", "explanation": "Multiply: 10×12=120", "needs_review": false, "correct_answer": "120"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}]
600	300	Real-World Systems Quiz	\N	Complete this quiz on "Real-World Systems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.47182	2026-06-23 11:23:04.47182	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 60 + 13", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "73"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 4", "difficulty": "medium", "explanation": "Multiply: 9×4=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 13", "difficulty": "medium", "explanation": "Multiply: 11×13=143", "needs_review": false, "correct_answer": "143"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 19", "difficulty": "medium", "explanation": "Multiply: 13×19=247", "needs_review": false, "correct_answer": "247"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 9", "difficulty": "medium", "explanation": "Multiply: 19×9=171", "needs_review": false, "correct_answer": "171"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 11", "difficulty": "medium", "explanation": "Multiply: 13×11=143", "needs_review": false, "correct_answer": "143"}]
602	301	Understanding Functions Quiz	\N	Complete this quiz on "Understanding Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.473126	2026-06-23 11:23:04.473126	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 30", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "98"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 2", "difficulty": "medium", "explanation": "Multiply: 13×2=26", "needs_review": false, "correct_answer": "26"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 10", "difficulty": "medium", "explanation": "Multiply: 8×10=80", "needs_review": false, "correct_answer": "80"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 12", "difficulty": "medium", "explanation": "Multiply: 7×12=84", "needs_review": false, "correct_answer": "84"}]
609	305	Transformations Practice	\N	Complete this homework assignment on "Transformations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.476629	2026-06-23 11:23:04.476629	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 + 30", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "42"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 13", "difficulty": "medium", "explanation": "Multiply: 13×13=169", "needs_review": false, "correct_answer": "169"}]
606	303	Function Tables Quiz	\N	Complete this quiz on "Function Tables Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.474929	2026-06-23 11:23:04.474929	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 42 + 35", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "77"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 9", "difficulty": "medium", "explanation": "Multiply: 6×9=54", "needs_review": false, "correct_answer": "54"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 10", "difficulty": "medium", "explanation": "Multiply: 19×10=190", "needs_review": false, "correct_answer": "190"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 15", "difficulty": "medium", "explanation": "Multiply: 18×15=270", "needs_review": false, "correct_answer": "270"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 14", "difficulty": "medium", "explanation": "Multiply: 19×14=266", "needs_review": false, "correct_answer": "266"}]
608	304	Pythagorean Theorem Quiz	\N	Complete this quiz on "Pythagorean Theorem Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.476073	2026-06-23 11:23:04.476073	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 90 + 38", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "128"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 15", "difficulty": "medium", "explanation": "Multiply: 9×15=135", "needs_review": false, "correct_answer": "135"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}]
638	319	Atomic Structure Quiz	\N	Complete this quiz on "Atomic Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.491651	2026-06-23 11:23:04.491651	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Covalent", "Metallic", "Hydrogen", "Ionic"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atomic Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
610	305	Transformations Quiz	\N	Complete this quiz on "Transformations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.476905	2026-06-23 11:23:04.476905	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 32 + 60", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "92"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 11", "difficulty": "medium", "explanation": "Multiply: 17×11=187", "needs_review": false, "correct_answer": "187"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 18", "difficulty": "medium", "explanation": "Multiply: 15×18=270", "needs_review": false, "correct_answer": "270"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 16", "difficulty": "medium", "explanation": "Multiply: 5×16=80", "needs_review": false, "correct_answer": "80"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 15", "difficulty": "medium", "explanation": "Multiply: 5×15=75", "needs_review": false, "correct_answer": "75"}]
1158	306	Geometry Unit Test	\N	Complete this test on "Geometry Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.765446	2026-06-23 11:23:04.765446	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=6, width=5", "difficulty": "medium", "explanation": "A=l×w=6×5=30 sq units.", "needs_review": false, "correct_answer": "30"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["22", "11", "24", "30"], "question": "Find the perimeter of a rectangle: length=6, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(6+5)=2(11)=22", "needs_review": false, "correct_answer": "22"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 12", "difficulty": "medium", "explanation": "Multiply: 5×12=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 9", "difficulty": "medium", "explanation": "Multiply: 15×9=135", "needs_review": false, "correct_answer": "135"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}]
637	319	Atomic Structure Practice	\N	Complete this homework assignment on "Atomic Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.491356	2026-06-23 11:23:04.491356	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Hydrogen", "Ionic", "Metallic", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atomic Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
641	321	Chemical Reactions Basics Practice	\N	Complete this homework assignment on "Chemical Reactions Basics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.493112	2026-06-23 11:23:04.493112	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Covalent", "Ionic", "Hydrogen", "Metallic"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Chemical Reactions Basics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
642	321	Chemical Reactions Basics Quiz	\N	Complete this quiz on "Chemical Reactions Basics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.493405	2026-06-23 11:23:04.493405	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Hydrogen", "Ionic", "Metallic", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Chemical Reactions Basics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
643	322	Forces and Motion Practice	\N	Complete this homework assignment on "Forces and Motion Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.494418	2026-06-23 11:23:04.494418	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["7 N", "30 N", "13 N", "3.3 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Forces and Motion, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
644	322	Forces and Motion Quiz	\N	Complete this quiz on "Forces and Motion Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.494714	2026-06-23 11:23:04.494714	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["13 N", "7 N", "30 N", "3.3 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Forces and Motion, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
734	367	Evidence for Evolution Quiz	\N	Complete this quiz on "Evidence for Evolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.542396	2026-06-23 11:23:04.542396	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Evidence for Evolution, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
646	323	Energy and Work Quiz	\N	Complete this quiz on "Energy and Work Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.495544	2026-06-23 11:23:04.495544	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Energy and Work, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
647	324	Waves and Sound Practice	\N	Complete this homework assignment on "Waves and Sound Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.496116	2026-06-23 11:23:04.496116	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Waves and Sound, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
649	325	Plate Tectonics Practice	\N	Complete this homework assignment on "Plate Tectonics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.497218	2026-06-23 11:23:04.497218	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plate Tectonics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
650	325	Plate Tectonics Quiz	\N	Complete this quiz on "Plate Tectonics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.497492	2026-06-23 11:23:04.497492	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plate Tectonics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
651	326	Earthquakes and Volcanoes Practice	\N	Complete this homework assignment on "Earthquakes and Volcanoes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.498041	2026-06-23 11:23:04.498041	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earthquakes and Volcanoes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
652	326	Earthquakes and Volcanoes Quiz	\N	Complete this quiz on "Earthquakes and Volcanoes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.498315	2026-06-23 11:23:04.498315	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Earthquakes and Volcanoes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
653	327	Climate Change Practice	\N	Complete this homework assignment on "Climate Change Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.498866	2026-06-23 11:23:04.498866	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Change, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1165	327	Earth and Space Unit Test	\N	Complete this test on "Earth and Space Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.768868	2026-06-23 11:23:04.768868	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Change, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
656	328	Creating the Constitution Quiz	\N	Complete this quiz on "Creating the Constitution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.500558	2026-06-23 11:23:04.500558	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Legislative (Congress)", "Military", "Executive (President)", "Judicial (Supreme Court)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Preamble", "The Bill of Rights", "The Articles", "The Federalist Papers"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Creating the Constitution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
658	329	Three Branches of Government Quiz	\N	Complete this quiz on "Three Branches of Government Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.501399	2026-06-23 11:23:04.501399	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Executive (President)", "Judicial (Supreme Court)", "Military", "Legislative (Congress)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Federalist Papers", "The Preamble", "The Articles", "The Bill of Rights"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Three Branches of Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
659	330	Amendments Practice	\N	Complete this homework assignment on "Amendments Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.501961	2026-06-23 11:23:04.501961	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Amendments. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
661	331	Causes of the Civil War Practice	\N	Complete this homework assignment on "Causes of the Civil War Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.503072	2026-06-23 11:23:04.503072	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A desire to expand westward", "A trade dispute with France", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Causes of the Civil War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
663	332	Key Battles and Leaders Practice	\N	Complete this homework assignment on "Key Battles and Leaders Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.504091	2026-06-23 11:23:04.504091	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Key Battles and Leaders. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
763	382	World War I Practice	\N	Complete this homework assignment on "World War I Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.558246	2026-06-23 11:23:04.558246	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "A trade dispute with France", "Religious conflict", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World War I. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
666	333	Reconstruction Quiz	\N	Complete this quiz on "Reconstruction Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.505526	2026-06-23 11:23:04.505526	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
667	334	Industrial Revolution Practice	\N	Complete this homework assignment on "Industrial Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.506558	2026-06-23 11:23:04.506558	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "Taxation without representation", "Religious conflict", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Industrial Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
669	335	Immigration Practice	\N	Complete this homework assignment on "Immigration Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.507566	2026-06-23 11:23:04.507566	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Immigration. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
671	336	Progressive Era Practice	\N	Complete this homework assignment on "Progressive Era Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.508439	2026-06-23 11:23:04.508439	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Progressive Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
672	336	Progressive Era Quiz	\N	Complete this quiz on "Progressive Era Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.50875	2026-06-23 11:23:04.50875	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Progressive Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1168	336	Industrialization Unit Test	\N	Complete this test on "Industrialization Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.77031	2026-06-23 11:23:04.77031	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Progressive Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
765	383	World War II Practice	\N	Complete this homework assignment on "World War II Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.559073	2026-06-23 11:23:04.559073	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "Taxation without representation", "A trade dispute with France", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World War II. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
698	349	The Short Story Quiz	\N	Complete this quiz on "The Short Story Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.52277	2026-06-23 11:23:04.52277	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
699	350	The Novel Practice	\N	Complete this homework assignment on "The Novel Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.523357	2026-06-23 11:23:04.523357	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
700	350	The Novel Quiz	\N	Complete this quiz on "The Novel Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.52365	2026-06-23 11:23:04.52365	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
706	353	Compare and Contrast Quiz	\N	Complete this quiz on "Compare and Contrast Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.52659	2026-06-23 11:23:04.52659	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
702	351	Poetry Forms Quiz	\N	Complete this quiz on "Poetry Forms Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.524546	2026-06-23 11:23:04.524546	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
703	352	Literary Analysis Essay Practice	\N	Complete this homework assignment on "Literary Analysis Essay Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.525422	2026-06-23 11:23:04.525422	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
705	353	Compare and Contrast Practice	\N	Complete this homework assignment on "Compare and Contrast Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.526312	2026-06-23 11:23:04.526312	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
680	340	Solving Linear Equations Quiz	\N	Complete this quiz on "Solving Linear Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.513411	2026-06-23 11:23:04.513411	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 32", "x = 14", "x = 4", "x = 8"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 13", "difficulty": "medium", "explanation": "Multiply: 14×13=182", "needs_review": false, "correct_answer": "182"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 4", "difficulty": "medium", "explanation": "Multiply: 17×4=68", "needs_review": false, "correct_answer": "68"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 6", "difficulty": "medium", "explanation": "Multiply: 4×6=24", "needs_review": false, "correct_answer": "24"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}]
707	354	Rhetorical Analysis Practice	\N	Complete this homework assignment on "Rhetorical Analysis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.527167	2026-06-23 11:23:04.527167	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
709	355	Sentence Variety Practice	\N	Complete this homework assignment on "Sentence Variety Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.528449	2026-06-23 11:23:04.528449	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
710	355	Sentence Variety Quiz	\N	Complete this quiz on "Sentence Variety Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.52877	2026-06-23 11:23:04.52877	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
711	356	Parallel Structure Practice	\N	Complete this homework assignment on "Parallel Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.529344	2026-06-23 11:23:04.529344	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
712	356	Parallel Structure Quiz	\N	Complete this quiz on "Parallel Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.529638	2026-06-23 11:23:04.529638	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
715	358	Ethos Pathos Logos Practice	\N	Complete this homework assignment on "Ethos Pathos Logos Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.531587	2026-06-23 11:23:04.531587	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
716	358	Ethos Pathos Logos Quiz	\N	Complete this quiz on "Ethos Pathos Logos Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.531874	2026-06-23 11:23:04.531874	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
717	359	Persuasive Techniques Practice	\N	Complete this homework assignment on "Persuasive Techniques Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.532566	2026-06-23 11:23:04.532566	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
718	359	Persuasive Techniques Quiz	\N	Complete this quiz on "Persuasive Techniques Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.53285	2026-06-23 11:23:04.53285	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1175	357	Grammar and Style Unit Test	\N	Complete this test on "Grammar and Style Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.773655	2026-06-23 11:23:04.773655	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
719	360	Evaluating Arguments Practice	\N	Complete this homework assignment on "Evaluating Arguments Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.533436	2026-06-23 11:23:04.533436	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
720	360	Evaluating Arguments Quiz	\N	Complete this quiz on "Evaluating Arguments Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.533729	2026-06-23 11:23:04.533729	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1176	360	Rhetoric Unit Test	\N	Complete this test on "Rhetoric Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.774214	2026-06-23 11:23:04.774214	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
674	337	Variables and Expressions Quiz	\N	Complete this quiz on "Variables and Expressions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.510329	2026-06-23 11:23:04.510329	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 8", "x = 32", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 10", "difficulty": "medium", "explanation": "Multiply: 19×10=190", "needs_review": false, "correct_answer": "190"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 2", "difficulty": "medium", "explanation": "Multiply: 5×2=10", "needs_review": false, "correct_answer": "10"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}]
676	338	Order of Operations Quiz	\N	Complete this quiz on "Order of Operations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.511197	2026-06-23 11:23:04.511197	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 52 + 87", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "139"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 17", "difficulty": "medium", "explanation": "Multiply: 12×17=204", "needs_review": false, "correct_answer": "204"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}]
678	339	Properties of Real Numbers Quiz	\N	Complete this quiz on "Properties of Real Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.512145	2026-06-23 11:23:04.512145	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 98 + 91", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "189"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}]
679	340	Solving Linear Equations Practice	\N	Complete this homework assignment on "Solving Linear Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.513093	2026-06-23 11:23:04.513093	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 32", "x = 14", "x = 8"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}]
683	342	Systems of Linear Equations Practice	\N	Complete this homework assignment on "Systems of Linear Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.514835	2026-06-23 11:23:04.514835	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 14", "x = 8", "x = 32", "x = 4"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 17", "difficulty": "medium", "explanation": "Multiply: 16×17=272", "needs_review": false, "correct_answer": "272"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 3", "difficulty": "medium", "explanation": "Multiply: 7×3=21", "needs_review": false, "correct_answer": "21"}]
684	342	Systems of Linear Equations Quiz	\N	Complete this quiz on "Systems of Linear Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.515107	2026-06-23 11:23:04.515107	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 32", "x = 8", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 8", "difficulty": "medium", "explanation": "Multiply: 15×8=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}]
685	343	Adding and Subtracting Polynomials Practice	\N	Complete this homework assignment on "Adding and Subtracting Polynomials Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.515969	2026-06-23 11:23:04.515969	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 416 + 445", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "861"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["871", "860", "861", "866"], "question": "What is the sum of 416 and 445?", "difficulty": "easy", "explanation": "416+445=861", "needs_review": false, "correct_answer": "861"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 416+445 = 445+416.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}]
686	343	Adding and Subtracting Polynomials Quiz	\N	Complete this quiz on "Adding and Subtracting Polynomials Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.516265	2026-06-23 11:23:04.516265	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 262 + 128", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "390"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["390", "400", "389", "395"], "question": "What is the sum of 262 and 128?", "difficulty": "easy", "explanation": "262+128=390", "needs_review": false, "correct_answer": "390"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 262+128 = 128+262.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 3", "difficulty": "medium", "explanation": "Multiply: 8×3=24", "needs_review": false, "correct_answer": "24"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}]
689	345	Factoring Practice	\N	Complete this homework assignment on "Factoring Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.517751	2026-06-23 11:23:04.517751	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 41 + 55", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "96"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 19", "difficulty": "medium", "explanation": "Multiply: 6×19=114", "needs_review": false, "correct_answer": "114"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 17", "difficulty": "medium", "explanation": "Multiply: 17×17=289", "needs_review": false, "correct_answer": "289"}]
690	345	Factoring Quiz	\N	Complete this quiz on "Factoring Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.518027	2026-06-23 11:23:04.518027	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 73 + 26", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "99"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 10", "difficulty": "medium", "explanation": "Multiply: 2×10=20", "needs_review": false, "correct_answer": "20"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}]
1171	345	Polynomials Unit Test	\N	Complete this test on "Polynomials Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.771775	2026-06-23 11:23:04.771775	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 + 89", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "102"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 12", "difficulty": "medium", "explanation": "Multiply: 3×12=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 14", "difficulty": "medium", "explanation": "Multiply: 2×14=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 12", "difficulty": "medium", "explanation": "Multiply: 7×12=84", "needs_review": false, "correct_answer": "84"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 7", "difficulty": "medium", "explanation": "Multiply: 10×7=70", "needs_review": false, "correct_answer": "70"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 6", "difficulty": "medium", "explanation": "Multiply: 17×6=102", "needs_review": false, "correct_answer": "102"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 15", "difficulty": "medium", "explanation": "Multiply: 20×15=300", "needs_review": false, "correct_answer": "300"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 12", "difficulty": "medium", "explanation": "Multiply: 6×12=72", "needs_review": false, "correct_answer": "72"}]
1170	342	Linear Equations and Inequalities Unit Test	\N	Complete this test on "Linear Equations and Inequalities Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.771298	2026-06-23 11:23:04.771298	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 32", "x = 8", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 19", "difficulty": "medium", "explanation": "Multiply: 4×19=76", "needs_review": false, "correct_answer": "76"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 18", "difficulty": "medium", "explanation": "Multiply: 2×18=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 5", "difficulty": "medium", "explanation": "Multiply: 3×5=15", "needs_review": false, "correct_answer": "15"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}]
694	347	Quadratic Formula Quiz	\N	Complete this quiz on "Quadratic Formula Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.520144	2026-06-23 11:23:04.520144	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 + 86", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "97"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 12", "difficulty": "medium", "explanation": "Multiply: 19×12=228", "needs_review": false, "correct_answer": "228"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 3", "difficulty": "medium", "explanation": "Multiply: 13×3=39", "needs_review": false, "correct_answer": "39"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 20", "difficulty": "medium", "explanation": "Multiply: 9×20=180", "needs_review": false, "correct_answer": "180"}]
695	348	Applications of Quadratics Practice	\N	Complete this homework assignment on "Applications of Quadratics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.520785	2026-06-23 11:23:04.520785	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 87", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "141"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 3", "difficulty": "medium", "explanation": "Multiply: 18×3=54", "needs_review": false, "correct_answer": "54"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}]
766	383	World War II Quiz	\N	Complete this quiz on "World War II Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.559337	2026-06-23 11:23:04.559337	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A trade dispute with France", "A desire to expand westward", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World War II. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
722	361	Cell Structure and Function Quiz	\N	Complete this quiz on "Cell Structure and Function Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.535359	2026-06-23 11:23:04.535359	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Cell membrane", "Nucleus", "Mitochondria", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Structure and Function, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
723	362	Cell Division Practice	\N	Complete this homework assignment on "Cell Division Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.536031	2026-06-23 11:23:04.536031	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Mitochondria", "Cell membrane", "Nucleus", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Division, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
725	363	Cellular Respiration Practice	\N	Complete this homework assignment on "Cellular Respiration Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.537042	2026-06-23 11:23:04.537042	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Cell membrane", "Nucleus", "Ribosome", "Mitochondria"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cellular Respiration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
728	364	Mendel and Heredity Quiz	\N	Complete this quiz on "Mendel and Heredity Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.538912	2026-06-23 11:23:04.538912	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Mendel and Heredity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
729	365	DNA Structure Practice	\N	Complete this homework assignment on "DNA Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.539789	2026-06-23 11:23:04.539789	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about DNA Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
731	366	Genetic Mutations Practice	\N	Complete this homework assignment on "Genetic Mutations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.540722	2026-06-23 11:23:04.540722	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Genetic Mutations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
736	368	Natural Selection Quiz	\N	Complete this quiz on "Natural Selection Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.543443	2026-06-23 11:23:04.543443	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Natural Selection, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
737	369	Speciation Practice	\N	Complete this homework assignment on "Speciation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.544068	2026-06-23 11:23:04.544068	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Speciation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
739	370	Ecosystems and Biomes Practice	\N	Complete this homework assignment on "Ecosystems and Biomes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.545339	2026-06-23 11:23:04.545339	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ecosystems and Biomes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
767	384	Cold War Practice	\N	Complete this homework assignment on "Cold War Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.559876	2026-06-23 11:23:04.559876	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "Religious conflict", "A trade dispute with France", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cold War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1178	366	Genetics Unit Test	\N	Complete this test on "Genetics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.775209	2026-06-23 11:23:04.775209	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Genetic Mutations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
741	371	Population Ecology Practice	\N	Complete this homework assignment on "Population Ecology Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.54616	2026-06-23 11:23:04.54616	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Population Ecology, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
742	371	Population Ecology Quiz	\N	Complete this quiz on "Population Ecology Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.546437	2026-06-23 11:23:04.546437	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Population Ecology, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
743	372	Human Impact Practice	\N	Complete this homework assignment on "Human Impact Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.546992	2026-06-23 11:23:04.546992	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
745	373	Early Civilizations Practice	\N	Complete this homework assignment on "Early Civilizations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.548473	2026-06-23 11:23:04.548473	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Early Civilizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
747	374	Classical Greece and Rome Practice	\N	Complete this homework assignment on "Classical Greece and Rome Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.54932	2026-06-23 11:23:04.54932	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Classical Greece and Rome. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
749	375	Rise of Religions Practice	\N	Complete this homework assignment on "Rise of Religions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.550195	2026-06-23 11:23:04.550195	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rise of Religions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
751	376	Byzantine Empire Practice	\N	Complete this homework assignment on "Byzantine Empire Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.551465	2026-06-23 11:23:04.551465	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Byzantine Empire. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
753	377	Crusades Practice	\N	Complete this homework assignment on "Crusades Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.552342	2026-06-23 11:23:04.552342	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Crusades. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
754	377	Crusades Quiz	\N	Complete this quiz on "Crusades Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.552614	2026-06-23 11:23:04.552614	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Crusades. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
756	378	Renaissance Quiz	\N	Complete this quiz on "Renaissance Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.553528	2026-06-23 11:23:04.553528	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Renaissance. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
757	379	Enlightenment Practice	\N	Complete this homework assignment on "Enlightenment Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.554618	2026-06-23 11:23:04.554618	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Enlightenment. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
758	379	Enlightenment Quiz	\N	Complete this quiz on "Enlightenment Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.555023	2026-06-23 11:23:04.555023	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Enlightenment. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
761	381	Industrial Revolution Practice	\N	Complete this homework assignment on "Industrial Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.557094	2026-06-23 11:23:04.557094	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "A desire to expand westward", "Taxation without representation", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Industrial Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1182	378	Medieval to Early Modern Unit Test	\N	Complete this test on "Medieval to Early Modern Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.777177	2026-06-23 11:23:04.777177	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Renaissance. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1184	384	Modern World Unit Test	\N	Complete this test on "Modern World Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.778117	2026-06-23 11:23:04.778117	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "Religious conflict", "A trade dispute with France", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cold War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
793	397	Ancient and Classical Literature Practice	\N	Complete this homework assignment on "Ancient and Classical Literature Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.574012	2026-06-23 11:23:04.574012	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
794	397	Ancient and Classical Literature Quiz	\N	Complete this quiz on "Ancient and Classical Literature Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.57433	2026-06-23 11:23:04.57433	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
796	398	Medieval and Renaissance Works Quiz	\N	Complete this quiz on "Medieval and Renaissance Works Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.575201	2026-06-23 11:23:04.575201	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
797	399	Modern World Literature Practice	\N	Complete this homework assignment on "Modern World Literature Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.575814	2026-06-23 11:23:04.575814	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
798	399	Modern World Literature Quiz	\N	Complete this quiz on "Modern World Literature Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.576097	2026-06-23 11:23:04.576097	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1189	399	World Literature Unit Test	\N	Complete this test on "World Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.780461	2026-06-23 11:23:04.780461	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
801	401	Argumentative Essays Practice	\N	Complete this homework assignment on "Argumentative Essays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.577962	2026-06-23 11:23:04.577962	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
802	401	Argumentative Essays Quiz	\N	Complete this quiz on "Argumentative Essays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.578278	2026-06-23 11:23:04.578278	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
803	402	Synthesis Writing Practice	\N	Complete this homework assignment on "Synthesis Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.578901	2026-06-23 11:23:04.578901	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1190	402	Research and Rhetoric Unit Test	\N	Complete this test on "Research and Rhetoric Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.780927	2026-06-23 11:23:04.780927	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
806	403	Literary Theory Quiz	\N	Complete this quiz on "Literary Theory Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.580341	2026-06-23 11:23:04.580341	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
807	404	Analyzing Rhetoric Practice	\N	Complete this homework assignment on "Analyzing Rhetoric Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.580901	2026-06-23 11:23:04.580901	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
809	405	Media Literacy Practice	\N	Complete this homework assignment on "Media Literacy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.581796	2026-06-23 11:23:04.581796	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
810	405	Media Literacy Quiz	\N	Complete this quiz on "Media Literacy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.58209	2026-06-23 11:23:04.58209	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
812	406	Short Story Writing Quiz	\N	Complete this quiz on "Short Story Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.583194	2026-06-23 11:23:04.583194	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
813	407	Poetry Composition Practice	\N	Complete this homework assignment on "Poetry Composition Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.583774	2026-06-23 11:23:04.583774	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
815	408	Personal Narrative Practice	\N	Complete this homework assignment on "Personal Narrative Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.584885	2026-06-23 11:23:04.584885	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
816	408	Personal Narrative Quiz	\N	Complete this quiz on "Personal Narrative Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.58515	2026-06-23 11:23:04.58515	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1192	408	Creative Writing Unit Test	\N	Complete this test on "Creative Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.781891	2026-06-23 11:23:04.781891	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
771	386	Angles and Angle Relationships Practice	\N	Complete this homework assignment on "Angles and Angle Relationships Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.562444	2026-06-23 11:23:04.562444	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=6", "difficulty": "medium", "explanation": "A=l×w=5×6=30 sq units.", "needs_review": false, "correct_answer": "30"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["11", "30", "22", "20"], "question": "Find the perimeter of a rectangle: length=5, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+6)=2(11)=22", "needs_review": false, "correct_answer": "22"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}]
772	386	Angles and Angle Relationships Quiz	\N	Complete this quiz on "Angles and Angle Relationships Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.562726	2026-06-23 11:23:04.562726	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=9, width=5", "difficulty": "medium", "explanation": "A=l×w=9×5=45 sq units.", "needs_review": false, "correct_answer": "45"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["36", "45", "14", "28"], "question": "Find the perimeter of a rectangle: length=9, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(9+5)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 20", "difficulty": "medium", "explanation": "Multiply: 3×20=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 17", "difficulty": "medium", "explanation": "Multiply: 2×17=34", "needs_review": false, "correct_answer": "34"}]
775	388	Triangle Properties Practice	\N	Complete this homework assignment on "Triangle Properties Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.564828	2026-06-23 11:23:04.564828	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=3", "difficulty": "medium", "explanation": "A=l×w=5×3=15 sq units.", "needs_review": false, "correct_answer": "15"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["16", "15", "20", "8"], "question": "Find the perimeter of a rectangle: length=5, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+3)=2(8)=16", "needs_review": false, "correct_answer": "16"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 18", "difficulty": "medium", "explanation": "Multiply: 3×18=54", "needs_review": false, "correct_answer": "54"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 11", "difficulty": "medium", "explanation": "Multiply: 7×11=77", "needs_review": false, "correct_answer": "77"}]
776	388	Triangle Properties Quiz	\N	Complete this quiz on "Triangle Properties Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.565117	2026-06-23 11:23:04.565117	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=11, width=3", "difficulty": "medium", "explanation": "A=l×w=11×3=33 sq units.", "needs_review": false, "correct_answer": "33"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["44", "14", "33", "28"], "question": "Find the perimeter of a rectangle: length=11, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(11+3)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 7", "difficulty": "medium", "explanation": "Multiply: 8×7=56", "needs_review": false, "correct_answer": "56"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 4", "difficulty": "medium", "explanation": "Multiply: 11×4=44", "needs_review": false, "correct_answer": "44"}]
778	389	Congruent Triangles Quiz	\N	Complete this quiz on "Congruent Triangles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.565923	2026-06-23 11:23:04.565923	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=5", "difficulty": "medium", "explanation": "A=l×w=10×5=50 sq units.", "needs_review": false, "correct_answer": "50"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["15", "40", "50", "30"], "question": "Find the perimeter of a rectangle: length=10, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+5)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 17", "difficulty": "medium", "explanation": "Multiply: 17×17=289", "needs_review": false, "correct_answer": "289"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 19", "difficulty": "medium", "explanation": "Multiply: 13×19=247", "needs_review": false, "correct_answer": "247"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 2", "difficulty": "medium", "explanation": "Multiply: 14×2=28", "needs_review": false, "correct_answer": "28"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 12", "difficulty": "medium", "explanation": "Multiply: 6×12=72", "needs_review": false, "correct_answer": "72"}]
781	391	Circle Properties Practice	\N	Complete this homework assignment on "Circle Properties Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.567567	2026-06-23 11:23:04.567567	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 38 + 61", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "99"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 11", "difficulty": "medium", "explanation": "Multiply: 12×11=132", "needs_review": false, "correct_answer": "132"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}]
783	392	Arc Length and Sector Area Practice	\N	Complete this homework assignment on "Arc Length and Sector Area Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.568386	2026-06-23 11:23:04.568386	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=6", "difficulty": "medium", "explanation": "A=l×w=8×6=48 sq units.", "needs_review": false, "correct_answer": "48"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["14", "28", "48", "32"], "question": "Find the perimeter of a rectangle: length=8, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+6)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 8", "difficulty": "medium", "explanation": "Multiply: 15×8=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 19", "difficulty": "medium", "explanation": "Multiply: 5×19=95", "needs_review": false, "correct_answer": "95"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 2", "difficulty": "medium", "explanation": "Multiply: 13×2=26", "needs_review": false, "correct_answer": "26"}]
784	392	Arc Length and Sector Area Quiz	\N	Complete this quiz on "Arc Length and Sector Area Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.568657	2026-06-23 11:23:04.568657	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=11, width=3", "difficulty": "medium", "explanation": "A=l×w=11×3=33 sq units.", "needs_review": false, "correct_answer": "33"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["44", "14", "33", "28"], "question": "Find the perimeter of a rectangle: length=11, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(11+3)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 4", "difficulty": "medium", "explanation": "Multiply: 9×4=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 10", "difficulty": "medium", "explanation": "Multiply: 15×10=150", "needs_review": false, "correct_answer": "150"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 2", "difficulty": "medium", "explanation": "Multiply: 16×2=32", "needs_review": false, "correct_answer": "32"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 3", "difficulty": "medium", "explanation": "Multiply: 15×3=45", "needs_review": false, "correct_answer": "45"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}]
788	394	Area of Polygons Quiz	\N	Complete this quiz on "Area of Polygons Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.570878	2026-06-23 11:23:04.570878	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=7, width=5", "difficulty": "medium", "explanation": "A=l×w=7×5=35 sq units.", "needs_review": false, "correct_answer": "35"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["12", "35", "24", "28"], "question": "Find the perimeter of a rectangle: length=7, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(7+5)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 4", "difficulty": "medium", "explanation": "Multiply: 18×4=72", "needs_review": false, "correct_answer": "72"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 11", "difficulty": "medium", "explanation": "Multiply: 5×11=55", "needs_review": false, "correct_answer": "55"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 12", "difficulty": "medium", "explanation": "Multiply: 20×12=240", "needs_review": false, "correct_answer": "240"}]
790	395	Volume of Solids Quiz	\N	Complete this quiz on "Volume of Solids Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.571851	2026-06-23 11:23:04.571851	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=4", "difficulty": "medium", "explanation": "A=l×w=10×4=40 sq units.", "needs_review": false, "correct_answer": "40"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["40", "40", "28", "14"], "question": "Find the perimeter of a rectangle: length=10, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+4)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 4", "difficulty": "medium", "explanation": "Multiply: 9×4=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 13", "difficulty": "medium", "explanation": "Multiply: 20×13=260", "needs_review": false, "correct_answer": "260"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 9", "difficulty": "medium", "explanation": "Multiply: 17×9=153", "needs_review": false, "correct_answer": "153"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 12", "difficulty": "medium", "explanation": "Multiply: 13×12=156", "needs_review": false, "correct_answer": "156"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 4", "difficulty": "medium", "explanation": "Multiply: 14×4=56", "needs_review": false, "correct_answer": "56"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 18", "difficulty": "medium", "explanation": "Multiply: 16×18=288", "needs_review": false, "correct_answer": "288"}]
791	396	Geometric Transformations Practice	\N	Complete this homework assignment on "Geometric Transformations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.57248	2026-06-23 11:23:04.57248	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 21 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "32"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}]
1187	393	Circles Unit Test	\N	Complete this test on "Circles Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.779489	2026-06-23 11:23:04.779489	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "A=l×w=8×7=56 sq units.", "needs_review": false, "correct_answer": "56"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["15", "30", "32", "56"], "question": "Find the perimeter of a rectangle: length=8, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(8+7)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 11", "difficulty": "medium", "explanation": "Multiply: 12×11=132", "needs_review": false, "correct_answer": "132"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 8", "difficulty": "medium", "explanation": "Multiply: 3×8=24", "needs_review": false, "correct_answer": "24"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 8", "difficulty": "medium", "explanation": "Multiply: 9×8=72", "needs_review": false, "correct_answer": "72"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 15", "difficulty": "medium", "explanation": "Multiply: 12×15=180", "needs_review": false, "correct_answer": "180"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}]
792	396	Geometric Transformations Quiz	\N	Complete this quiz on "Geometric Transformations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.572769	2026-06-23 11:23:04.572769	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 87 + 18", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "105"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 14", "difficulty": "medium", "explanation": "Multiply: 19×14=266", "needs_review": false, "correct_answer": "266"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 14", "difficulty": "medium", "explanation": "Multiply: 12×14=168", "needs_review": false, "correct_answer": "168"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 14", "difficulty": "medium", "explanation": "Multiply: 12×14=168", "needs_review": false, "correct_answer": "168"}]
1188	396	Area Volume and Transformations Unit Test	\N	Complete this test on "Area Volume and Transformations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.779971	2026-06-23 11:23:04.779971	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 + 70", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "90"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 6", "difficulty": "medium", "explanation": "Multiply: 6×6=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 7", "difficulty": "medium", "explanation": "Multiply: 5×7=35", "needs_review": false, "correct_answer": "35"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 11", "difficulty": "medium", "explanation": "Multiply: 9×11=99", "needs_review": false, "correct_answer": "99"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}]
817	409	Atoms and Elements Practice	\N	Complete this homework assignment on "Atoms and Elements Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.58628	2026-06-23 11:23:04.58628	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Ionic", "Metallic", "Hydrogen", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atoms and Elements, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1038	519	Human Rights Quiz	\N	Complete this quiz on "Human Rights Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.702213	2026-06-23 11:23:04.702213	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
819	410	Periodic Table Practice	\N	Complete this homework assignment on "Periodic Table Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.587257	2026-06-23 11:23:04.587257	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Periodic Table, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
821	411	Electron Configuration Practice	\N	Complete this homework assignment on "Electron Configuration Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.588331	2026-06-23 11:23:04.588331	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electron Configuration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
823	412	Ionic Bonds Practice	\N	Complete this homework assignment on "Ionic Bonds Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.589643	2026-06-23 11:23:04.589643	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ionic Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
826	413	Covalent Bonds Quiz	\N	Complete this quiz on "Covalent Bonds Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.590834	2026-06-23 11:23:04.590834	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Covalent Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
827	414	Metallic Bonds Practice	\N	Complete this homework assignment on "Metallic Bonds Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.591414	2026-06-23 11:23:04.591414	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Metallic Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
829	415	Balancing Equations Practice	\N	Complete this homework assignment on "Balancing Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.592683	2026-06-23 11:23:04.592683	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Balancing Equations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
830	415	Balancing Equations Quiz	\N	Complete this quiz on "Balancing Equations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.592985	2026-06-23 11:23:04.592985	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Balancing Equations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
832	416	Types of Reactions Quiz	\N	Complete this quiz on "Types of Reactions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.593944	2026-06-23 11:23:04.593944	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Types of Reactions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
833	417	Stoichiometry Practice	\N	Complete this homework assignment on "Stoichiometry Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.594522	2026-06-23 11:23:04.594522	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stoichiometry, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
834	417	Stoichiometry Quiz	\N	Complete this quiz on "Stoichiometry Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.594825	2026-06-23 11:23:04.594825	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stoichiometry, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
835	418	Solutions and Solubility Practice	\N	Complete this homework assignment on "Solutions and Solubility Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.59569	2026-06-23 11:23:04.59569	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solutions and Solubility, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
940	470	Congress Quiz	\N	Complete this quiz on "Congress Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.651032	2026-06-23 11:23:04.651032	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Congress. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1195	417	Chemical Reactions Unit Test	\N	Complete this test on "Chemical Reactions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.783331	2026-06-23 11:23:04.783331	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stoichiometry, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
838	419	Acids and Bases Quiz	\N	Complete this quiz on "Acids and Bases Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.596999	2026-06-23 11:23:04.596999	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Acids and Bases, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
839	420	pH Scale Practice	\N	Complete this homework assignment on "pH Scale Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.597586	2026-06-23 11:23:04.597586	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about pH Scale, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
840	420	pH Scale Quiz	\N	Complete this quiz on "pH Scale Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.597861	2026-06-23 11:23:04.597861	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about pH Scale, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
841	421	Colonial Society Practice	\N	Complete this homework assignment on "Colonial Society Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.599013	2026-06-23 11:23:04.599013	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Colonial Society. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
843	422	American Revolution Practice	\N	Complete this homework assignment on "American Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.600461	2026-06-23 11:23:04.600461	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "A trade dispute with France", "Taxation without representation", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to American Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
844	422	American Revolution Quiz	\N	Complete this quiz on "American Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.600788	2026-06-23 11:23:04.600788	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A desire to expand westward", "A trade dispute with France", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to American Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
972	486	Applications of Trigonometry Quiz	\N	Complete this quiz on "Applications of Trigonometry Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.66778	2026-06-23 11:23:04.66778	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 + 58", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "68"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 14", "difficulty": "medium", "explanation": "Multiply: 20×14=280", "needs_review": false, "correct_answer": "280"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}]
90	45	Comparing Three-Digit Numbers Quiz	\N	Complete this quiz on "Comparing Three-Digit Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.18846	2026-06-23 11:23:04.18846	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 67", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "155"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 2", "difficulty": "medium", "explanation": "Multiply: 5×2=10", "needs_review": false, "correct_answer": "10"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 12", "difficulty": "medium", "explanation": "Multiply: 14×12=168", "needs_review": false, "correct_answer": "168"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 20", "difficulty": "medium", "explanation": "Multiply: 2×20=40", "needs_review": false, "correct_answer": "40"}]
848	424	Westward Expansion Quiz	\N	Complete this quiz on "Westward Expansion Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.603054	2026-06-23 11:23:04.603054	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "Taxation without representation", "A desire to expand westward", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Westward Expansion. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
850	425	Jacksonian Democracy Quiz	\N	Complete this quiz on "Jacksonian Democracy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.603897	2026-06-23 11:23:04.603897	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Jacksonian Democracy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
854	427	Slavery and Abolition Quiz	\N	Complete this quiz on "Slavery and Abolition Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.606137	2026-06-23 11:23:04.606137	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Slavery and Abolition. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
856	428	Civil War Quiz	\N	Complete this quiz on "Civil War Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.607084	2026-06-23 11:23:04.607084	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "Taxation without representation", "A trade dispute with France", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civil War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
857	429	Reconstruction Era Practice	\N	Complete this homework assignment on "Reconstruction Era Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.607703	2026-06-23 11:23:04.607703	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
859	430	World Wars Practice	\N	Complete this homework assignment on "World Wars Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.608987	2026-06-23 11:23:04.608987	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "A desire to expand westward", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World Wars. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
861	431	Civil Rights Movement Practice	\N	Complete this homework assignment on "Civil Rights Movement Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.610094	2026-06-23 11:23:04.610094	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civil Rights Movement. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
862	431	Civil Rights Movement Quiz	\N	Complete this quiz on "Civil Rights Movement Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.61037	2026-06-23 11:23:04.61037	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civil Rights Movement. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
864	432	Contemporary Issues Quiz	\N	Complete this quiz on "Contemporary Issues Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.6113	2026-06-23 11:23:04.6113	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Contemporary Issues. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1200	432	Modern America Unit Test	\N	Complete this test on "Modern America Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.785874	2026-06-23 11:23:04.785874	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Contemporary Issues. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
889	445	Early American Literature Practice	\N	Complete this homework assignment on "Early American Literature Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.625082	2026-06-23 11:23:04.625082	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
890	445	Early American Literature Quiz	\N	Complete this quiz on "Early American Literature Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.625379	2026-06-23 11:23:04.625379	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
891	446	Transcendentalism Practice	\N	Complete this homework assignment on "Transcendentalism Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.625931	2026-06-23 11:23:04.625931	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
892	446	Transcendentalism Quiz	\N	Complete this quiz on "Transcendentalism Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.626202	2026-06-23 11:23:04.626202	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
893	447	American Realism Practice	\N	Complete this homework assignment on "American Realism Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.626743	2026-06-23 11:23:04.626743	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
895	448	Harlem Renaissance Practice	\N	Complete this homework assignment on "Harlem Renaissance Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.62793	2026-06-23 11:23:04.62793	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
896	448	Harlem Renaissance Quiz	\N	Complete this quiz on "Harlem Renaissance Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.628279	2026-06-23 11:23:04.628279	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
897	449	Modernism Practice	\N	Complete this homework assignment on "Modernism Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.628896	2026-06-23 11:23:04.628896	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
899	450	Contemporary Literature Practice	\N	Complete this homework assignment on "Contemporary Literature Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.629774	2026-06-23 11:23:04.629774	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
901	451	College Application Essays Practice	\N	Complete this homework assignment on "College Application Essays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.630919	2026-06-23 11:23:04.630919	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
902	451	College Application Essays Quiz	\N	Complete this quiz on "College Application Essays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.631199	2026-06-23 11:23:04.631199	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
903	452	Analytical Writing Practice	\N	Complete this homework assignment on "Analytical Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.631839	2026-06-23 11:23:04.631839	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
905	453	Advanced Research Papers Practice	\N	Complete this homework assignment on "Advanced Research Papers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.632734	2026-06-23 11:23:04.632734	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
906	453	Advanced Research Papers Quiz	\N	Complete this quiz on "Advanced Research Papers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.633145	2026-06-23 11:23:04.633145	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
907	454	Reading Comprehension Strategies Practice	\N	Complete this homework assignment on "Reading Comprehension Strategies Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.634073	2026-06-23 11:23:04.634073	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
908	454	Reading Comprehension Strategies Quiz	\N	Complete this quiz on "Reading Comprehension Strategies Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.634397	2026-06-23 11:23:04.634397	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1205	447	American Literature Unit Test	\N	Complete this test on "American Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.788995	2026-06-23 11:23:04.788995	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1206	450	Modern American Literature Unit Test	\N	Complete this test on "Modern American Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.789465	2026-06-23 11:23:04.789465	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
909	455	Grammar and Usage Practice	\N	Complete this homework assignment on "Grammar and Usage Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.635063	2026-06-23 11:23:04.635063	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
910	455	Grammar and Usage Quiz	\N	Complete this quiz on "Grammar and Usage Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.635371	2026-06-23 11:23:04.635371	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
911	456	Essay Writing Under Time Practice	\N	Complete this homework assignment on "Essay Writing Under Time Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.635936	2026-06-23 11:23:04.635936	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1208	456	SAT/ACT Prep Unit Test	\N	Complete this test on "SAT/ACT Prep Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.790448	2026-06-23 11:23:04.790448	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
866	433	Polynomial Operations Quiz	\N	Complete this quiz on "Polynomial Operations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.612929	2026-06-23 11:23:04.612929	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 95 + 60", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "155"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 14", "difficulty": "medium", "explanation": "Multiply: 11×14=154", "needs_review": false, "correct_answer": "154"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 3", "difficulty": "medium", "explanation": "Multiply: 13×3=39", "needs_review": false, "correct_answer": "39"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 8", "difficulty": "medium", "explanation": "Multiply: 17×8=136", "needs_review": false, "correct_answer": "136"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 15", "difficulty": "medium", "explanation": "Multiply: 9×15=135", "needs_review": false, "correct_answer": "135"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 15", "difficulty": "medium", "explanation": "Multiply: 16×15=240", "needs_review": false, "correct_answer": "240"}]
1202	438	Rational and Radical Functions Unit Test	\N	Complete this test on "Rational and Radical Functions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.786944	2026-06-23 11:23:04.786944	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 71 + 80", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "151"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 14", "difficulty": "medium", "explanation": "Multiply: 4×14=56", "needs_review": false, "correct_answer": "56"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 20", "difficulty": "medium", "explanation": "Multiply: 3×20=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 7", "difficulty": "medium", "explanation": "Multiply: 14×7=98", "needs_review": false, "correct_answer": "98"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 9", "difficulty": "medium", "explanation": "Multiply: 6×9=54", "needs_review": false, "correct_answer": "54"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 4", "difficulty": "medium", "explanation": "Multiply: 14×4=56", "needs_review": false, "correct_answer": "56"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 16", "difficulty": "medium", "explanation": "Multiply: 2×16=32", "needs_review": false, "correct_answer": "32"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 5", "difficulty": "medium", "explanation": "Multiply: 5×5=25", "needs_review": false, "correct_answer": "25"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}]
186	93	Fractions on a Number Line Quiz	\N	Complete this quiz on "Fractions on a Number Line Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.245051	2026-06-23 11:23:04.245051	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/8", "2/4", "1/2", "3/4"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 17", "difficulty": "medium", "explanation": "Multiply: 10×17=170", "needs_review": false, "correct_answer": "170"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 3", "difficulty": "medium", "explanation": "Multiply: 2×3=6", "needs_review": false, "correct_answer": "6"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 13", "difficulty": "medium", "explanation": "Multiply: 12×13=156", "needs_review": false, "correct_answer": "156"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}]
870	435	Polynomial Division Quiz	\N	Complete this quiz on "Polynomial Division Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.614683	2026-06-23 11:23:04.614683	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 37", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "105"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 2", "difficulty": "medium", "explanation": "Multiply: 5×2=10", "needs_review": false, "correct_answer": "10"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 7", "difficulty": "medium", "explanation": "Multiply: 13×7=91", "needs_review": false, "correct_answer": "91"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}]
872	436	Rational Expressions Quiz	\N	Complete this quiz on "Rational Expressions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.615835	2026-06-23 11:23:04.615835	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 + 40", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "51"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 20", "difficulty": "medium", "explanation": "Multiply: 13×20=260", "needs_review": false, "correct_answer": "260"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 8", "difficulty": "medium", "explanation": "Multiply: 15×8=120", "needs_review": false, "correct_answer": "120"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 14", "difficulty": "medium", "explanation": "Multiply: 3×14=42", "needs_review": false, "correct_answer": "42"}]
875	438	Complex Numbers Practice	\N	Complete this homework assignment on "Complex Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.617247	2026-06-23 11:23:04.617247	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 54", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "108"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 20", "difficulty": "medium", "explanation": "Multiply: 5×20=100", "needs_review": false, "correct_answer": "100"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 15", "difficulty": "medium", "explanation": "Multiply: 18×15=270", "needs_review": false, "correct_answer": "270"}]
876	438	Complex Numbers Quiz	\N	Complete this quiz on "Complex Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.617533	2026-06-23 11:23:04.617533	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 74 + 41", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "115"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 12", "difficulty": "medium", "explanation": "Multiply: 20×12=240", "needs_review": false, "correct_answer": "240"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 15", "difficulty": "medium", "explanation": "Multiply: 11×15=165", "needs_review": false, "correct_answer": "165"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}]
877	439	Exponential Functions Practice	\N	Complete this homework assignment on "Exponential Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.618413	2026-06-23 11:23:04.618413	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 81 + 51", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "132"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}]
1203	441	Exponential and Logarithmic Unit Test	\N	Complete this test on "Exponential and Logarithmic Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.787727	2026-06-23 11:23:04.787727	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "99"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 13", "difficulty": "medium", "explanation": "Multiply: 13×13=169", "needs_review": false, "correct_answer": "169"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 10", "difficulty": "medium", "explanation": "Multiply: 12×10=120", "needs_review": false, "correct_answer": "120"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 17", "difficulty": "medium", "explanation": "Multiply: 4×17=68", "needs_review": false, "correct_answer": "68"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 20", "difficulty": "medium", "explanation": "Multiply: 2×20=40", "needs_review": false, "correct_answer": "40"}]
879	440	Logarithmic Functions Practice	\N	Complete this homework assignment on "Logarithmic Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.619272	2026-06-23 11:23:04.619272	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 98 + 92", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "190"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 18", "difficulty": "medium", "explanation": "Multiply: 16×18=288", "needs_review": false, "correct_answer": "288"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 18", "difficulty": "medium", "explanation": "Multiply: 2×18=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 20", "difficulty": "medium", "explanation": "Multiply: 11×20=220", "needs_review": false, "correct_answer": "220"}]
880	440	Logarithmic Functions Quiz	\N	Complete this quiz on "Logarithmic Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.619547	2026-06-23 11:23:04.619547	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 73 + 25", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "98"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 19", "difficulty": "medium", "explanation": "Multiply: 2×19=38", "needs_review": false, "correct_answer": "38"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 20", "difficulty": "medium", "explanation": "Multiply: 15×20=300", "needs_review": false, "correct_answer": "300"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}]
882	441	Exponential Growth and Decay Quiz	\N	Complete this quiz on "Exponential Growth and Decay Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.620603	2026-06-23 11:23:04.620603	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 + 41", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "57"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 4", "difficulty": "medium", "explanation": "Multiply: 6×4=24", "needs_review": false, "correct_answer": "24"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 6", "difficulty": "medium", "explanation": "Multiply: 5×6=30", "needs_review": false, "correct_answer": "30"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 18", "difficulty": "medium", "explanation": "Multiply: 6×18=108", "needs_review": false, "correct_answer": "108"}]
885	443	Geometric Sequences Practice	\N	Complete this homework assignment on "Geometric Sequences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.622533	2026-06-23 11:23:04.622533	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 48 + 98", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "146"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}]
888	444	Series and Summation Quiz	\N	Complete this quiz on "Series and Summation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.623747	2026-06-23 11:23:04.623747	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 97 + 97", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "194"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 17", "difficulty": "medium", "explanation": "Multiply: 3×17=51", "needs_review": false, "correct_answer": "51"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 7", "difficulty": "medium", "explanation": "Multiply: 20×7=140", "needs_review": false, "correct_answer": "140"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 5", "difficulty": "medium", "explanation": "Multiply: 3×5=15", "needs_review": false, "correct_answer": "15"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}]
913	457	Kinematics Practice	\N	Complete this homework assignment on "Kinematics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.63767	2026-06-23 11:23:04.63767	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Kinematics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
914	457	Kinematics Quiz	\N	Complete this quiz on "Kinematics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.638051	2026-06-23 11:23:04.638051	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Kinematics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
915	458	Newton Laws of Motion Practice	\N	Complete this homework assignment on "Newton Laws of Motion Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.638674	2026-06-23 11:23:04.638674	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["13 N", "7 N", "30 N", "3.3 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Newton Laws of Motion, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
916	458	Newton Laws of Motion Quiz	\N	Complete this quiz on "Newton Laws of Motion Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.638973	2026-06-23 11:23:04.638973	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["30 N", "3.3 N", "13 N", "7 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Newton Laws of Motion, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
924	462	Light and Optics Quiz	\N	Complete this quiz on "Light and Optics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.642755	2026-06-23 11:23:04.642755	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Light and Optics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
919	460	Wave Properties Practice	\N	Complete this homework assignment on "Wave Properties Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.640715	2026-06-23 11:23:04.640715	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Wave Properties, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
921	461	Sound Waves Practice	\N	Complete this homework assignment on "Sound Waves Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.641611	2026-06-23 11:23:04.641611	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Sound Waves, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
923	462	Light and Optics Practice	\N	Complete this homework assignment on "Light and Optics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.642484	2026-06-23 11:23:04.642484	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Light and Optics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
927	464	Circuits Practice	\N	Complete this homework assignment on "Circuits Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.644498	2026-06-23 11:23:04.644498	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Circuits, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
928	464	Circuits Quiz	\N	Complete this quiz on "Circuits Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.644768	2026-06-23 11:23:04.644768	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Circuits, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
929	465	Magnetism Practice	\N	Complete this homework assignment on "Magnetism Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.645457	2026-06-23 11:23:04.645457	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Magnetism, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
930	465	Magnetism Quiz	\N	Complete this quiz on "Magnetism Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.645776	2026-06-23 11:23:04.645776	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Magnetism, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
931	466	Nuclear Physics Practice	\N	Complete this homework assignment on "Nuclear Physics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.646681	2026-06-23 11:23:04.646681	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Nuclear Physics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
934	467	Quantum Mechanics Intro Quiz	\N	Complete this quiz on "Quantum Mechanics Intro Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.647809	2026-06-23 11:23:04.647809	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Quantum Mechanics Intro, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
935	468	Relativity Intro Practice	\N	Complete this homework assignment on "Relativity Intro Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.648369	2026-06-23 11:23:04.648369	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Relativity Intro, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1212	468	Modern Physics Unit Test	\N	Complete this test on "Modern Physics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.792429	2026-06-23 11:23:04.792429	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Relativity Intro, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
938	469	Constitution and Federalism Quiz	\N	Complete this quiz on "Constitution and Federalism Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.650148	2026-06-23 11:23:04.650148	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Military", "Legislative (Congress)", "Judicial (Supreme Court)", "Executive (President)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Preamble", "The Articles", "The Bill of Rights", "The Federalist Papers"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Constitution and Federalism. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
939	470	Congress Practice	\N	Complete this homework assignment on "Congress Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.650729	2026-06-23 11:23:04.650729	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Congress. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
942	471	The Presidency and Courts Quiz	\N	Complete this quiz on "The Presidency and Courts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.651979	2026-06-23 11:23:04.651979	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to The Presidency and Courts. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
943	472	Bill of Rights Practice	\N	Complete this homework assignment on "Bill of Rights Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.652938	2026-06-23 11:23:04.652938	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Bill of Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
945	473	Due Process Practice	\N	Complete this homework assignment on "Due Process Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.653952	2026-06-23 11:23:04.653952	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Due Process. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
947	474	Equal Protection Practice	\N	Complete this homework assignment on "Equal Protection Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.654889	2026-06-23 11:23:04.654889	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Equal Protection. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
949	475	Supply and Demand Practice	\N	Complete this homework assignment on "Supply and Demand Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.656221	2026-06-23 11:23:04.656221	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Supply and Demand. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
950	475	Supply and Demand Quiz	\N	Complete this quiz on "Supply and Demand Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.656491	2026-06-23 11:23:04.656491	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Supply and Demand. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
954	477	Monetary and Fiscal Policy Quiz	\N	Complete this quiz on "Monetary and Fiscal Policy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.658316	2026-06-23 11:23:04.658316	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Monetary and Fiscal Policy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
955	478	Budgeting Practice	\N	Complete this homework assignment on "Budgeting Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.659289	2026-06-23 11:23:04.659289	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Budgeting. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
956	478	Budgeting Quiz	\N	Complete this quiz on "Budgeting Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.659621	2026-06-23 11:23:04.659621	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Budgeting. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1214	474	Civil Liberties Unit Test	\N	Complete this test on "Civil Liberties Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.793344	2026-06-23 11:23:04.793344	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Equal Protection. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
959	480	Investing Basics Practice	\N	Complete this homework assignment on "Investing Basics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.661122	2026-06-23 11:23:04.661122	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Investing Basics. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1216	480	Personal Finance Unit Test	\N	Complete this test on "Personal Finance Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.794239	2026-06-23 11:23:04.794239	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Investing Basics. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
986	493	Anglo-Saxon and Medieval Quiz	\N	Complete this quiz on "Anglo-Saxon and Medieval Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.67523	2026-06-23 11:23:04.67523	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
987	494	Shakespeare Practice	\N	Complete this homework assignment on "Shakespeare Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.675902	2026-06-23 11:23:04.675902	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
988	494	Shakespeare Quiz	\N	Complete this quiz on "Shakespeare Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.676303	2026-06-23 11:23:04.676303	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
989	495	Romantic and Victorian Era Practice	\N	Complete this homework assignment on "Romantic and Victorian Era Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.677293	2026-06-23 11:23:04.677293	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
991	496	Modernist Writers Practice	\N	Complete this homework assignment on "Modernist Writers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.678542	2026-06-23 11:23:04.678542	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
993	497	Post-Colonial Literature Practice	\N	Complete this homework assignment on "Post-Colonial Literature Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.679413	2026-06-23 11:23:04.679413	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
994	497	Post-Colonial Literature Quiz	\N	Complete this quiz on "Post-Colonial Literature Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.679699	2026-06-23 11:23:04.679699	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
995	498	Contemporary British Writers Practice	\N	Complete this homework assignment on "Contemporary British Writers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.680266	2026-06-23 11:23:04.680266	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
998	499	Advanced Composition Quiz	\N	Complete this quiz on "Advanced Composition Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.681691	2026-06-23 11:23:04.681691	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
999	500	Academic Research Practice	\N	Complete this homework assignment on "Academic Research Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.682263	2026-06-23 11:23:04.682263	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1000	500	Academic Research Quiz	\N	Complete this quiz on "Academic Research Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.682559	2026-06-23 11:23:04.682559	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1001	501	Professional Writing Practice	\N	Complete this homework assignment on "Professional Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.683121	2026-06-23 11:23:04.683121	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1003	502	Senior Research Project Practice	\N	Complete this homework assignment on "Senior Research Project Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.684233	2026-06-23 11:23:04.684233	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1004	502	Senior Research Project Quiz	\N	Complete this quiz on "Senior Research Project Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.684506	2026-06-23 11:23:04.684506	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1005	503	Presentation Skills Practice	\N	Complete this homework assignment on "Presentation Skills Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.685066	2026-06-23 11:23:04.685066	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1006	503	Presentation Skills Quiz	\N	Complete this quiz on "Presentation Skills Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.685338	2026-06-23 11:23:04.685338	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1007	504	Portfolio Development Practice	\N	Complete this homework assignment on "Portfolio Development Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.685936	2026-06-23 11:23:04.685936	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1222	498	Modern British Literature Unit Test	\N	Complete this test on "Modern British Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79742	2026-06-23 11:23:04.79742	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1223	501	College Writing Unit Test	\N	Complete this test on "College Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79791	2026-06-23 11:23:04.79791	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1224	504	Senior Capstone Unit Test	\N	Complete this test on "Senior Capstone Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79839	2026-06-23 11:23:04.79839	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
961	481	Function Analysis Practice	\N	Complete this homework assignment on "Function Analysis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.662834	2026-06-23 11:23:04.662834	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 32 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "53"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}]
973	487	Introduction to Limits Practice	\N	Complete this homework assignment on "Introduction to Limits Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.668611	2026-06-23 11:23:04.668611	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 94", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 13", "difficulty": "medium", "explanation": "Multiply: 9×13=117", "needs_review": false, "correct_answer": "117"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 17", "difficulty": "medium", "explanation": "Multiply: 2×17=34", "needs_review": false, "correct_answer": "34"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}]
963	482	Transformations of Functions Practice	\N	Complete this homework assignment on "Transformations of Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.663699	2026-06-23 11:23:04.663699	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 66 + 27", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "93"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}]
964	482	Transformations of Functions Quiz	\N	Complete this quiz on "Transformations of Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.663974	2026-06-23 11:23:04.663974	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 72 + 95", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "167"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 9", "difficulty": "medium", "explanation": "Multiply: 13×9=117", "needs_review": false, "correct_answer": "117"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 10", "difficulty": "medium", "explanation": "Multiply: 19×10=190", "needs_review": false, "correct_answer": "190"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 8", "difficulty": "medium", "explanation": "Multiply: 2×8=16", "needs_review": false, "correct_answer": "16"}]
965	483	Inverse Functions Practice	\N	Complete this homework assignment on "Inverse Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.664554	2026-06-23 11:23:04.664554	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 + 70", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "84"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 16", "difficulty": "medium", "explanation": "Multiply: 15×16=240", "needs_review": false, "correct_answer": "240"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 8", "difficulty": "medium", "explanation": "Multiply: 8×8=64", "needs_review": false, "correct_answer": "64"}]
967	484	Trigonometric Functions Practice	\N	Complete this homework assignment on "Trigonometric Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.665734	2026-06-23 11:23:04.665734	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 40 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "61"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 16", "difficulty": "medium", "explanation": "Multiply: 18×16=288", "needs_review": false, "correct_answer": "288"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 19", "difficulty": "medium", "explanation": "Multiply: 5×19=95", "needs_review": false, "correct_answer": "95"}]
969	485	Trigonometric Identities Practice	\N	Complete this homework assignment on "Trigonometric Identities Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.666711	2026-06-23 11:23:04.666711	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 70 + 32", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "102"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 2", "difficulty": "medium", "explanation": "Multiply: 14×2=28", "needs_review": false, "correct_answer": "28"}]
971	486	Applications of Trigonometry Practice	\N	Complete this homework assignment on "Applications of Trigonometry Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.667516	2026-06-23 11:23:04.667516	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 63 + 76", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "139"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 20", "difficulty": "medium", "explanation": "Multiply: 6×20=120", "needs_review": false, "correct_answer": "120"}]
976	488	Evaluating Limits Quiz	\N	Complete this quiz on "Evaluating Limits Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.669704	2026-06-23 11:23:04.669704	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 56 + 11", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "67"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 8", "difficulty": "medium", "explanation": "Multiply: 11×8=88", "needs_review": false, "correct_answer": "88"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 4", "difficulty": "medium", "explanation": "Multiply: 2×4=8", "needs_review": false, "correct_answer": "8"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 18", "difficulty": "medium", "explanation": "Multiply: 20×18=360", "needs_review": false, "correct_answer": "360"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 19", "difficulty": "medium", "explanation": "Multiply: 13×19=247", "needs_review": false, "correct_answer": "247"}]
978	489	Continuity Quiz	\N	Complete this quiz on "Continuity Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.670544	2026-06-23 11:23:04.670544	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 93 + 93", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "186"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 15", "difficulty": "medium", "explanation": "Multiply: 16×15=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 19", "difficulty": "medium", "explanation": "Multiply: 8×19=152", "needs_review": false, "correct_answer": "152"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 12", "difficulty": "medium", "explanation": "Multiply: 12×12=144", "needs_review": false, "correct_answer": "144"}]
979	490	Derivatives Concept Practice	\N	Complete this homework assignment on "Derivatives Concept Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.671514	2026-06-23 11:23:04.671514	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 85 + 23", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "108"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 17", "difficulty": "medium", "explanation": "Multiply: 11×17=187", "needs_review": false, "correct_answer": "187"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 10", "difficulty": "medium", "explanation": "Multiply: 2×10=20", "needs_review": false, "correct_answer": "20"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}]
981	491	Basic Derivative Rules Practice	\N	Complete this homework assignment on "Basic Derivative Rules Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.672447	2026-06-23 11:23:04.672447	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 40 + 23", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "63"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 15", "difficulty": "medium", "explanation": "Multiply: 16×15=240", "needs_review": false, "correct_answer": "240"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 4", "difficulty": "medium", "explanation": "Multiply: 11×4=44", "needs_review": false, "correct_answer": "44"}]
982	491	Basic Derivative Rules Quiz	\N	Complete this quiz on "Basic Derivative Rules Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.672742	2026-06-23 11:23:04.672742	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 63", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "117"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 6", "difficulty": "medium", "explanation": "Multiply: 12×6=72", "needs_review": false, "correct_answer": "72"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 14", "difficulty": "medium", "explanation": "Multiply: 2×14=28", "needs_review": false, "correct_answer": "28"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}]
984	492	Applications of Derivatives Quiz	\N	Complete this quiz on "Applications of Derivatives Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.673746	2026-06-23 11:23:04.673746	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 69 + 93", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 16", "difficulty": "medium", "explanation": "Multiply: 7×16=112", "needs_review": false, "correct_answer": "112"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 7", "difficulty": "medium", "explanation": "Multiply: 17×7=119", "needs_review": false, "correct_answer": "119"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 14", "difficulty": "medium", "explanation": "Multiply: 12×14=168", "needs_review": false, "correct_answer": "168"}]
1219	489	Limits and Continuity Unit Test	\N	Complete this test on "Limits and Continuity Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.795811	2026-06-23 11:23:04.795811	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 51 + 17", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "68"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 8", "difficulty": "medium", "explanation": "Multiply: 12×8=96", "needs_review": false, "correct_answer": "96"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 11", "difficulty": "medium", "explanation": "Multiply: 18×11=198", "needs_review": false, "correct_answer": "198"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 4", "difficulty": "medium", "explanation": "Multiply: 17×4=68", "needs_review": false, "correct_answer": "68"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 17", "difficulty": "medium", "explanation": "Multiply: 16×17=272", "needs_review": false, "correct_answer": "272"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 12", "difficulty": "medium", "explanation": "Multiply: 18×12=216", "needs_review": false, "correct_answer": "216"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 18", "difficulty": "medium", "explanation": "Multiply: 16×18=288", "needs_review": false, "correct_answer": "288"}]
1220	492	Introduction to Calculus Unit Test	\N	Complete this test on "Introduction to Calculus Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.7964	2026-06-23 11:23:04.7964	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 98 + 90", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "188"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 2", "difficulty": "medium", "explanation": "Multiply: 7×2=14", "needs_review": false, "correct_answer": "14"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 5", "difficulty": "medium", "explanation": "Multiply: 20×5=100", "needs_review": false, "correct_answer": "100"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 3", "difficulty": "medium", "explanation": "Multiply: 18×3=54", "needs_review": false, "correct_answer": "54"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 9", "difficulty": "medium", "explanation": "Multiply: 12×9=108", "needs_review": false, "correct_answer": "108"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 16", "difficulty": "medium", "explanation": "Multiply: 14×16=224", "needs_review": false, "correct_answer": "224"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}]
1010	505	Minerals and Rocks Quiz	\N	Complete this quiz on "Minerals and Rocks Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.687963	2026-06-23 11:23:04.687963	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Minerals and Rocks, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1011	506	Plate Tectonics Practice	\N	Complete this homework assignment on "Plate Tectonics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.688642	2026-06-23 11:23:04.688642	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plate Tectonics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1226	510	Oceanography Unit Test	\N	Complete this test on "Oceanography Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79934	2026-06-23 11:23:04.79934	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Share results", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Marine Ecosystems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1013	507	Geologic Time Practice	\N	Complete this homework assignment on "Geologic Time Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.689541	2026-06-23 11:23:04.689541	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Geologic Time, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1014	507	Geologic Time Quiz	\N	Complete this quiz on "Geologic Time Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.689841	2026-06-23 11:23:04.689841	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Geologic Time, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1015	508	Ocean Floor Practice	\N	Complete this homework assignment on "Ocean Floor Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.690853	2026-06-23 11:23:04.690853	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Floor, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1227	513	Meteorology Unit Test	\N	Complete this test on "Meteorology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.799836	2026-06-23 11:23:04.799836	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1017	509	Ocean Currents Practice	\N	Complete this homework assignment on "Ocean Currents Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.69175	2026-06-23 11:23:04.69175	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Currents, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1018	509	Ocean Currents Quiz	\N	Complete this quiz on "Ocean Currents Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.692124	2026-06-23 11:23:04.692124	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Currents, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1019	510	Marine Ecosystems Practice	\N	Complete this homework assignment on "Marine Ecosystems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.692672	2026-06-23 11:23:04.692672	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Marine Ecosystems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1020	510	Marine Ecosystems Quiz	\N	Complete this quiz on "Marine Ecosystems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.692972	2026-06-23 11:23:04.692972	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Marine Ecosystems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1022	511	Atmosphere Quiz	\N	Complete this quiz on "Atmosphere Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.694213	2026-06-23 11:23:04.694213	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atmosphere, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1025	513	Climate Patterns Practice	\N	Complete this homework assignment on "Climate Patterns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.695684	2026-06-23 11:23:04.695684	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1026	513	Climate Patterns Quiz	\N	Complete this quiz on "Climate Patterns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.696021	2026-06-23 11:23:04.696021	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Climate Patterns, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1028	514	Stars and Stellar Evolution Quiz	\N	Complete this quiz on "Stars and Stellar Evolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.697163	2026-06-23 11:23:04.697163	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stars and Stellar Evolution, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1029	515	Galaxies Practice	\N	Complete this homework assignment on "Galaxies Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.697712	2026-06-23 11:23:04.697712	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Galaxies, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1031	516	Cosmology Practice	\N	Complete this homework assignment on "Cosmology Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.698625	2026-06-23 11:23:04.698625	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cosmology, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1032	516	Cosmology Quiz	\N	Complete this quiz on "Cosmology Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.698894	2026-06-23 11:23:04.698894	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cosmology, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1035	518	International Organizations Practice	\N	Complete this homework assignment on "International Organizations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.701083	2026-06-23 11:23:04.701083	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to International Organizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1036	518	International Organizations Quiz	\N	Complete this quiz on "International Organizations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.701353	2026-06-23 11:23:04.701353	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to International Organizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1037	519	Human Rights Practice	\N	Complete this homework assignment on "Human Rights Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.701937	2026-06-23 11:23:04.701937	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1101	135	Measurement Unit Test	\N	Complete this test on "Measurement Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.736896	2026-06-23 11:23:04.736896	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=9, width=8", "difficulty": "medium", "explanation": "A=l×w=9×8=72 sq units.", "needs_review": false, "correct_answer": "72"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["36", "72", "34", "17"], "question": "Find the perimeter of a rectangle: length=9, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(9+8)=2(17)=34", "needs_review": false, "correct_answer": "34"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 2", "difficulty": "medium", "explanation": "Multiply: 11×2=22", "needs_review": false, "correct_answer": "22"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 19", "difficulty": "medium", "explanation": "Multiply: 2×19=38", "needs_review": false, "correct_answer": "38"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 3", "difficulty": "medium", "explanation": "Multiply: 3×3=9", "needs_review": false, "correct_answer": "9"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 6", "difficulty": "medium", "explanation": "Multiply: 11×6=66", "needs_review": false, "correct_answer": "66"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 5", "difficulty": "medium", "explanation": "Multiply: 16×5=80", "needs_review": false, "correct_answer": "80"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 7", "difficulty": "medium", "explanation": "Multiply: 12×7=84", "needs_review": false, "correct_answer": "84"}]
1041	521	Regional Conflicts Practice	\N	Complete this homework assignment on "Regional Conflicts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.704031	2026-06-23 11:23:04.704031	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Regional Conflicts. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1042	521	Regional Conflicts Quiz	\N	Complete this quiz on "Regional Conflicts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.704393	2026-06-23 11:23:04.704393	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Regional Conflicts. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1043	522	Diplomacy Practice	\N	Complete this homework assignment on "Diplomacy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.705055	2026-06-23 11:23:04.705055	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Diplomacy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1044	522	Diplomacy Quiz	\N	Complete this quiz on "Diplomacy Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.705356	2026-06-23 11:23:04.705356	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Diplomacy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1046	523	Culture and Society Quiz	\N	Complete this quiz on "Culture and Society Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.706584	2026-06-23 11:23:04.706584	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Culture and Society. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1047	524	Social Institutions Practice	\N	Complete this homework assignment on "Social Institutions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.707178	2026-06-23 11:23:04.707178	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Social Institutions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1049	525	Social Change Practice	\N	Complete this homework assignment on "Social Change Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.708119	2026-06-23 11:23:04.708119	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Social Change. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1051	526	Analyzing News Practice	\N	Complete this homework assignment on "Analyzing News Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.709253	2026-06-23 11:23:04.709253	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Analyzing News. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1052	526	Analyzing News Quiz	\N	Complete this quiz on "Analyzing News Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.709555	2026-06-23 11:23:04.709555	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Analyzing News. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1232	528	Current Events Unit Test	\N	Complete this test on "Current Events Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.802159	2026-06-23 11:23:04.802159	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Engagement. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1230	522	Geopolitics Unit Test	\N	Complete this test on "Geopolitics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.801243	2026-06-23 11:23:04.801243	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Diplomacy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1231	525	Sociology Unit Test	\N	Complete this test on "Sociology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.80169	2026-06-23 11:23:04.80169	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Social Change. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1055	528	Civic Engagement Practice	\N	Complete this homework assignment on "Civic Engagement Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.711112	2026-06-23 11:23:04.711112	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Engagement. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
25	13	Letter Sounds A-M Practice	\N	Complete this homework assignment on "Letter Sounds A-M Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.146674	2026-06-23 11:23:04.146674	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
27	14	Letter Sounds N-Z Practice	\N	Complete this homework assignment on "Letter Sounds N-Z Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.147794	2026-06-23 11:23:04.147794	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
28	14	Letter Sounds N-Z Quiz	\N	Complete this quiz on "Letter Sounds N-Z Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.14821	2026-06-23 11:23:04.14821	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
29	15	Consonant Blends Practice	\N	Complete this homework assignment on "Consonant Blends Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.148869	2026-06-23 11:23:04.148869	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1061	15	Phonics and Letter Sounds Unit Test	\N	Complete this test on "Phonics and Letter Sounds Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.716116	2026-06-23 11:23:04.716116	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
31	16	Common Sight Words Practice	\N	Complete this homework assignment on "Common Sight Words Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.150325	2026-06-23 11:23:04.150325	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
34	17	Reading Simple Sentences Quiz	\N	Complete this quiz on "Reading Simple Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.151691	2026-06-23 11:23:04.151691	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
33	17	Reading Simple Sentences Practice	\N	Complete this homework assignment on "Reading Simple Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.151341	2026-06-23 11:23:04.151341	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
37	19	Writing Letters Practice	\N	Complete this homework assignment on "Writing Letters Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.154055	2026-06-23 11:23:04.154055	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
38	19	Writing Letters Quiz	\N	Complete this quiz on "Writing Letters Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.154506	2026-06-23 11:23:04.154506	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
39	20	Writing Words Practice	\N	Complete this homework assignment on "Writing Words Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.156513	2026-06-23 11:23:04.156513	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
41	21	Writing Simple Sentences Practice	\N	Complete this homework assignment on "Writing Simple Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.157737	2026-06-23 11:23:04.157737	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
42	21	Writing Simple Sentences Quiz	\N	Complete this quiz on "Writing Simple Sentences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.158115	2026-06-23 11:23:04.158115	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1063	21	Writing Basics Unit Test	\N	Complete this test on "Writing Basics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.717206	2026-06-23 11:23:04.717206	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
44	22	Nouns Quiz	\N	Complete this quiz on "Nouns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.159836	2026-06-23 11:23:04.159836	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
45	23	Verbs Practice	\N	Complete this homework assignment on "Verbs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.160687	2026-06-23 11:23:04.160687	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
48	24	Capitalization and Punctuation Quiz	\N	Complete this quiz on "Capitalization and Punctuation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.162227	2026-06-23 11:23:04.162227	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1064	24	Grammar Foundations Unit Test	\N	Complete this test on "Grammar Foundations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.717694	2026-06-23 11:23:04.717694	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1057	3	Counting and Numbers Unit Test	\N	Complete this test on "Counting and Numbers Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.714014	2026-06-23 11:23:04.714014	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 + 52", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "71"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 10", "difficulty": "medium", "explanation": "Multiply: 16×10=160", "needs_review": false, "correct_answer": "160"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 9", "difficulty": "medium", "explanation": "Multiply: 3×9=27", "needs_review": false, "correct_answer": "27"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 11", "difficulty": "medium", "explanation": "Multiply: 5×11=55", "needs_review": false, "correct_answer": "55"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 3", "difficulty": "medium", "explanation": "Multiply: 15×3=45", "needs_review": false, "correct_answer": "45"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 20", "difficulty": "medium", "explanation": "Multiply: 9×20=180", "needs_review": false, "correct_answer": "180"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 15", "difficulty": "medium", "explanation": "Multiply: 14×15=210", "needs_review": false, "correct_answer": "210"}]
7	4	Adding Within 10 Practice	\N	Complete this homework assignment on "Adding Within 10 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.134663	2026-06-23 11:23:04.134663	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 30 + 42", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "72"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["71", "82", "77", "72"], "question": "What is the sum of 30 and 42?", "difficulty": "easy", "explanation": "30+42=72", "needs_review": false, "correct_answer": "72"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 30+42 = 42+30.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 3", "difficulty": "medium", "explanation": "Multiply: 15×3=45", "needs_review": false, "correct_answer": "45"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 10", "difficulty": "medium", "explanation": "Multiply: 4×10=40", "needs_review": false, "correct_answer": "40"}]
8	4	Adding Within 10 Quiz	\N	Complete this quiz on "Adding Within 10 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.13499	2026-06-23 11:23:04.13499	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 46 + 28", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "74"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["84", "73", "74", "79"], "question": "What is the sum of 46 and 28?", "difficulty": "easy", "explanation": "46+28=74", "needs_review": false, "correct_answer": "74"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 46+28 = 28+46.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 5", "difficulty": "medium", "explanation": "Multiply: 18×5=90", "needs_review": false, "correct_answer": "90"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 17", "difficulty": "medium", "explanation": "Multiply: 3×17=51", "needs_review": false, "correct_answer": "51"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}]
19	10	Basic Shapes Practice	\N	Complete this homework assignment on "Basic Shapes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.142445	2026-06-23 11:23:04.142445	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=12, width=4", "difficulty": "medium", "explanation": "A=l×w=12×4=48 sq units.", "needs_review": false, "correct_answer": "48"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["32", "16", "48", "48"], "question": "Find the perimeter of a rectangle: length=12, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(12+4)=2(16)=32", "needs_review": false, "correct_answer": "32"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 6", "difficulty": "medium", "explanation": "Multiply: 15×6=90", "needs_review": false, "correct_answer": "90"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}]
21	11	Measuring Length Practice	\N	Complete this homework assignment on "Measuring Length Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.14348	2026-06-23 11:23:04.14348	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 69", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "157"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 2", "difficulty": "medium", "explanation": "Multiply: 14×2=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}]
23	12	Telling Time to the Hour Practice	\N	Complete this homework assignment on "Telling Time to the Hour Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.144489	2026-06-23 11:23:04.144489	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 68 + 60", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "128"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 16", "difficulty": "medium", "explanation": "Multiply: 16×16=256", "needs_review": false, "correct_answer": "256"}]
1060	12	Shapes and Measurement Unit Test	\N	Complete this test on "Shapes and Measurement Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.715526	2026-06-23 11:23:04.715526	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 + 18", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "29"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 2", "difficulty": "medium", "explanation": "Multiply: 16×2=32", "needs_review": false, "correct_answer": "32"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 19", "difficulty": "medium", "explanation": "Multiply: 10×19=190", "needs_review": false, "correct_answer": "190"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 19", "difficulty": "medium", "explanation": "Multiply: 4×19=76", "needs_review": false, "correct_answer": "76"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 7", "difficulty": "medium", "explanation": "Multiply: 16×7=112", "needs_review": false, "correct_answer": "112"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 16", "difficulty": "medium", "explanation": "Multiply: 3×16=48", "needs_review": false, "correct_answer": "48"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 13", "difficulty": "medium", "explanation": "Multiply: 12×13=156", "needs_review": false, "correct_answer": "156"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 8", "difficulty": "medium", "explanation": "Multiply: 16×8=128", "needs_review": false, "correct_answer": "128"}]
53	27	Life Cycles Practice	\N	Complete this homework assignment on "Life Cycles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.165793	2026-06-23 11:23:04.165793	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Life Cycles, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
71	36	Being a Good Citizen Practice	\N	Complete this homework assignment on "Being a Good Citizen Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.176593	2026-06-23 11:23:04.176593	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Being a Good Citizen. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
75	38	Land and Water Practice	\N	Complete this homework assignment on "Land and Water Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.178932	2026-06-23 11:23:04.178932	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Land and Water. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
77	39	My Neighborhood Practice	\N	Complete this homework assignment on "My Neighborhood Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.18026	2026-06-23 11:23:04.18026	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to My Neighborhood. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1069	39	Maps and Geography Unit Test	\N	Complete this test on "Maps and Geography Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.720163	2026-06-23 11:23:04.720163	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to My Neighborhood. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
82	41	National Holidays Quiz	\N	Complete this quiz on "National Holidays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.18341	2026-06-23 11:23:04.18341	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to National Holidays. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
81	41	National Holidays Practice	\N	Complete this homework assignment on "National Holidays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.183083	2026-06-23 11:23:04.183083	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to National Holidays. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
109	55	Reading with Expression Practice	\N	Complete this homework assignment on "Reading with Expression Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.201775	2026-06-23 11:23:04.201775	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
110	55	Reading with Expression Quiz	\N	Complete this quiz on "Reading with Expression Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.202083	2026-06-23 11:23:04.202083	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
112	56	Building Vocabulary Quiz	\N	Complete this quiz on "Building Vocabulary Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.203005	2026-06-23 11:23:04.203005	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
114	57	Story Elements Quiz	\N	Complete this quiz on "Story Elements Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.204049	2026-06-23 11:23:04.204049	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1075	57	Reading Fluency Unit Test	\N	Complete this test on "Reading Fluency Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.723284	2026-06-23 11:23:04.723284	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
115	58	Topic Sentences Practice	\N	Complete this homework assignment on "Topic Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.205398	2026-06-23 11:23:04.205398	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
117	59	Supporting Details Practice	\N	Complete this homework assignment on "Supporting Details Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.206475	2026-06-23 11:23:04.206475	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
118	59	Supporting Details Quiz	\N	Complete this quiz on "Supporting Details Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.206843	2026-06-23 11:23:04.206843	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They are afraid of everything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
119	60	Conclusion Sentences Practice	\N	Complete this homework assignment on "Conclusion Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.207551	2026-06-23 11:23:04.207551	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1076	60	Writing Paragraphs Unit Test	\N	Complete this test on "Writing Paragraphs Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.723729	2026-06-23 11:23:04.723729	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
122	61	Adjectives Quiz	\N	Complete this quiz on "Adjectives Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.20921	2026-06-23 11:23:04.20921	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
123	62	Adverbs Practice	\N	Complete this homework assignment on "Adverbs Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.209867	2026-06-23 11:23:04.209867	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1078	66	Spelling and Vocabulary Unit Test	\N	Complete this test on "Spelling and Vocabulary Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.72467	2026-06-23 11:23:04.72467	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
131	66	Context Clues Practice	\N	Complete this homework assignment on "Context Clues Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.214	2026-06-23 11:23:04.214	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
87	44	Hundreds Practice	\N	Complete this homework assignment on "Hundreds Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.186759	2026-06-23 11:23:04.186759	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 30", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "95"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 3", "difficulty": "medium", "explanation": "Multiply: 13×3=39", "needs_review": false, "correct_answer": "39"}]
89	45	Comparing Three-Digit Numbers Practice	\N	Complete this homework assignment on "Comparing Three-Digit Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.188042	2026-06-23 11:23:04.188042	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 48 + 75", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "123"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 8", "difficulty": "medium", "explanation": "Multiply: 17×8=136", "needs_review": false, "correct_answer": "136"}]
1071	45	Place Value Unit Test	\N	Complete this test on "Place Value Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.721256	2026-06-23 11:23:04.721256	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 84 + 10", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 20", "difficulty": "medium", "explanation": "Multiply: 4×20=80", "needs_review": false, "correct_answer": "80"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 3", "difficulty": "medium", "explanation": "Multiply: 2×3=6", "needs_review": false, "correct_answer": "6"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 6", "difficulty": "medium", "explanation": "Multiply: 15×6=90", "needs_review": false, "correct_answer": "90"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 14", "difficulty": "medium", "explanation": "Multiply: 7×14=98", "needs_review": false, "correct_answer": "98"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 20", "difficulty": "medium", "explanation": "Multiply: 19×20=380", "needs_review": false, "correct_answer": "380"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}]
91	46	Adding Two-Digit Numbers Practice	\N	Complete this homework assignment on "Adding Two-Digit Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.18977	2026-06-23 11:23:04.18977	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 71 + 48", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "119"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["129", "119", "124", "118"], "question": "What is the sum of 71 and 48?", "difficulty": "easy", "explanation": "71+48=119", "needs_review": false, "correct_answer": "119"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 71+48 = 48+71.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 17", "difficulty": "medium", "explanation": "Multiply: 7×17=119", "needs_review": false, "correct_answer": "119"}]
93	47	Subtracting Two-Digit Numbers Practice	\N	Complete this homework assignment on "Subtracting Two-Digit Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.191244	2026-06-23 11:23:04.191244	[{"id": 1, "type": "short_answer", "skill": "subtraction", "question": "Calculate: 292 − 140", "difficulty": "medium", "explanation": "Subtract by place value, borrowing as needed.", "needs_review": false, "correct_answer": "152"}, {"id": 2, "type": "multiple_choice", "skill": "subtraction", "options": ["152", "153", "432", "150"], "question": "What is 292 − 140?", "difficulty": "easy", "explanation": "292-140=152", "needs_review": false, "correct_answer": "152"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 10", "difficulty": "medium", "explanation": "Multiply: 8×10=80", "needs_review": false, "correct_answer": "80"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 2", "difficulty": "medium", "explanation": "Multiply: 13×2=26", "needs_review": false, "correct_answer": "26"}]
96	48	Word Problems Quiz	\N	Complete this quiz on "Word Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.192518	2026-06-23 11:23:04.192518	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 64 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "85"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 11", "difficulty": "medium", "explanation": "Multiply: 6×11=66", "needs_review": false, "correct_answer": "66"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 14", "difficulty": "medium", "explanation": "Multiply: 11×14=154", "needs_review": false, "correct_answer": "154"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 13", "difficulty": "medium", "explanation": "Multiply: 16×13=208", "needs_review": false, "correct_answer": "208"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "Multiply: 4×11=44", "needs_review": false, "correct_answer": "44"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 20", "difficulty": "medium", "explanation": "Multiply: 19×20=380", "needs_review": false, "correct_answer": "380"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 3", "difficulty": "medium", "explanation": "Multiply: 14×3=42", "needs_review": false, "correct_answer": "42"}]
99	50	Measuring in Centimeters Practice	\N	Complete this homework assignment on "Measuring in Centimeters Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.195572	2026-06-23 11:23:04.195572	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 98 + 93", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "191"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 20", "difficulty": "medium", "explanation": "Multiply: 11×20=220", "needs_review": false, "correct_answer": "220"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 13", "difficulty": "medium", "explanation": "Multiply: 2×13=26", "needs_review": false, "correct_answer": "26"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}]
101	51	Time to Nearest 5 Minutes Practice	\N	Complete this homework assignment on "Time to Nearest 5 Minutes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.196499	2026-06-23 11:23:04.196499	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 45 + 49", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}]
102	51	Time to Nearest 5 Minutes Quiz	\N	Complete this quiz on "Time to Nearest 5 Minutes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.196794	2026-06-23 11:23:04.196794	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 56 + 97", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "153"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 4", "difficulty": "medium", "explanation": "Multiply: 20×4=80", "needs_review": false, "correct_answer": "80"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 9", "difficulty": "medium", "explanation": "Multiply: 7×9=63", "needs_review": false, "correct_answer": "63"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}]
133	67	Solids Liquids and Gases Practice	\N	Complete this homework assignment on "Solids Liquids and Gases Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.215658	2026-06-23 11:23:04.215658	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solids Liquids and Gases, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
135	68	Properties of Matter Practice	\N	Complete this homework assignment on "Properties of Matter Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.216625	2026-06-23 11:23:04.216625	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Properties of Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1079	69	Matter Unit Test	\N	Complete this test on "Matter Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.72563	2026-06-23 11:23:04.72563	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Changes in Matter, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
139	70	Pushes and Pulls Practice	\N	Complete this homework assignment on "Pushes and Pulls Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.218869	2026-06-23 11:23:04.218869	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Pushes and Pulls, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
141	71	Speed and Direction Practice	\N	Complete this homework assignment on "Speed and Direction Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.219853	2026-06-23 11:23:04.219853	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Speed and Direction, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
149	75	Butterfly Metamorphosis Practice	\N	Complete this homework assignment on "Butterfly Metamorphosis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.224857	2026-06-23 11:23:04.224857	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Butterfly Metamorphosis, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
153	77	Map Skills Practice	\N	Complete this homework assignment on "Map Skills Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.227364	2026-06-23 11:23:04.227364	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "7", "6", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Map Skills. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1082	78	Geography Unit Test	\N	Complete this test on "Geography Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.727191	2026-06-23 11:23:04.727191	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Natural Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
158	79	Past Present and Future Quiz	\N	Complete this quiz on "Past Present and Future Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.229693	2026-06-23 11:23:04.229693	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Past Present and Future. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
157	79	Past Present and Future Practice	\N	Complete this homework assignment on "Past Present and Future Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.229383	2026-06-23 11:23:04.229383	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Past Present and Future. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
159	80	Important Historical Figures Practice	\N	Complete this homework assignment on "Important Historical Figures Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.230339	2026-06-23 11:23:04.230339	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Important Historical Figures. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
161	81	Timeline of Events Practice	\N	Complete this homework assignment on "Timeline of Events Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.231321	2026-06-23 11:23:04.231321	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Timeline of Events. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1083	81	History Unit Test	\N	Complete this test on "History Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.727715	2026-06-23 11:23:04.727715	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Timeline of Events. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
164	82	Needs vs Wants Quiz	\N	Complete this quiz on "Needs vs Wants Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.232896	2026-06-23 11:23:04.232896	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Needs vs Wants. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
166	83	Goods and Services Quiz	\N	Complete this quiz on "Goods and Services Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.233806	2026-06-23 11:23:04.233806	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Goods and Services. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
229	115	Water Cycle Practice	\N	Complete this homework assignment on "Water Cycle Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.269464	2026-06-23 11:23:04.269464	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Precipitation", "Evaporation", "Condensation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Water Cycle, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
193	97	Main Idea and Details Practice	\N	Complete this homework assignment on "Main Idea and Details Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.249567	2026-06-23 11:23:04.249567	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
195	98	Making Inferences Practice	\N	Complete this homework assignment on "Making Inferences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.250531	2026-06-23 11:23:04.250531	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
198	99	Summarizing Quiz	\N	Complete this quiz on "Summarizing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.251865	2026-06-23 11:23:04.251865	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
200	100	Narrative Writing Quiz	\N	Complete this quiz on "Narrative Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.253158	2026-06-23 11:23:04.253158	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
199	100	Narrative Writing Practice	\N	Complete this homework assignment on "Narrative Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.252852	2026-06-23 11:23:04.252852	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
203	102	Opinion Writing Practice	\N	Complete this homework assignment on "Opinion Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.254946	2026-06-23 11:23:04.254946	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1090	102	Writing Unit Test	\N	Complete this test on "Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.731109	2026-06-23 11:23:04.731109	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
205	103	Subject-Verb Agreement Practice	\N	Complete this homework assignment on "Subject-Verb Agreement Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.256262	2026-06-23 11:23:04.256262	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
208	104	Pronouns Quiz	\N	Complete this quiz on "Pronouns Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.257541	2026-06-23 11:23:04.257541	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
210	105	Conjunctions Quiz	\N	Complete this quiz on "Conjunctions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.258556	2026-06-23 11:23:04.258556	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about the life cycle and importance of butterflies"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1091	105	Grammar Unit Test	\N	Complete this test on "Grammar Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.731628	2026-06-23 11:23:04.731628	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
212	106	Using a Dictionary Quiz	\N	Complete this quiz on "Using a Dictionary Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.259766	2026-06-23 11:23:04.259766	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
211	106	Using a Dictionary Practice	\N	Complete this homework assignment on "Using a Dictionary Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.259481	2026-06-23 11:23:04.259481	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
215	108	Taking Notes Practice	\N	Complete this homework assignment on "Taking Notes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.261391	2026-06-23 11:23:04.261391	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
169	85	Multiplication Concepts Practice	\N	Complete this homework assignment on "Multiplication Concepts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.236314	2026-06-23 11:23:04.236314	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "7 groups of 4.", "needs_review": false, "correct_answer": "28"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["28", "24", "11", "35"], "question": "What is the product of 7 and 4?", "difficulty": "easy", "explanation": "7×4=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 8", "difficulty": "medium", "explanation": "Multiply: 18×8=144", "needs_review": false, "correct_answer": "144"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 5", "difficulty": "medium", "explanation": "Multiply: 14×5=70", "needs_review": false, "correct_answer": "70"}]
172	86	Times Tables 1-5 Quiz	\N	Complete this quiz on "Times Tables 1-5 Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.237803	2026-06-23 11:23:04.237803	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 99", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "187"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 17", "difficulty": "medium", "explanation": "Multiply: 8×17=136", "needs_review": false, "correct_answer": "136"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 4", "difficulty": "medium", "explanation": "Multiply: 16×4=64", "needs_review": false, "correct_answer": "64"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 6", "difficulty": "medium", "explanation": "Multiply: 13×6=78", "needs_review": false, "correct_answer": "78"}]
231	116	Cloud Types Practice	\N	Complete this homework assignment on "Cloud Types Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.270424	2026-06-23 11:23:04.270424	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cloud Types, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
173	87	Times Tables 6-12 Practice	\N	Complete this homework assignment on "Times Tables 6-12 Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.238472	2026-06-23 11:23:04.238472	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 + 59", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "69"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 14", "difficulty": "medium", "explanation": "Multiply: 2×14=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 10", "difficulty": "medium", "explanation": "Multiply: 12×10=120", "needs_review": false, "correct_answer": "120"}]
1085	87	Multiplication Unit Test	\N	Complete this test on "Multiplication Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.728711	2026-06-23 11:23:04.728711	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 76 + 46", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "122"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 20", "difficulty": "medium", "explanation": "Multiply: 17×20=340", "needs_review": false, "correct_answer": "340"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 7", "difficulty": "medium", "explanation": "Multiply: 12×7=84", "needs_review": false, "correct_answer": "84"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 6", "difficulty": "medium", "explanation": "Multiply: 8×6=48", "needs_review": false, "correct_answer": "48"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 16", "difficulty": "medium", "explanation": "Multiply: 14×16=224", "needs_review": false, "correct_answer": "224"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 15", "difficulty": "medium", "explanation": "Multiply: 19×15=285", "needs_review": false, "correct_answer": "285"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}]
175	88	Division Concepts Practice	\N	Complete this homework assignment on "Division Concepts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.239684	2026-06-23 11:23:04.239684	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 77 + 67", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "144"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}]
180	90	Division Word Problems Quiz	\N	Complete this quiz on "Division Word Problems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.241953	2026-06-23 11:23:04.241953	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 87 + 42", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "129"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 12", "difficulty": "medium", "explanation": "Multiply: 19×12=228", "needs_review": false, "correct_answer": "228"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 14", "difficulty": "medium", "explanation": "Multiply: 16×14=224", "needs_review": false, "correct_answer": "224"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 6", "difficulty": "medium", "explanation": "Multiply: 12×6=72", "needs_review": false, "correct_answer": "72"}]
185	93	Fractions on a Number Line Practice	\N	Complete this homework assignment on "Fractions on a Number Line Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.244733	2026-06-23 11:23:04.244733	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/4", "1/2", "2/4", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 17", "difficulty": "medium", "explanation": "Multiply: 5×17=85", "needs_review": false, "correct_answer": "85"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 12", "difficulty": "medium", "explanation": "Multiply: 17×12=204", "needs_review": false, "correct_answer": "204"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 8", "difficulty": "medium", "explanation": "Multiply: 17×8=136", "needs_review": false, "correct_answer": "136"}]
191	96	Symmetry Practice	\N	Complete this homework assignment on "Symmetry Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.247859	2026-06-23 11:23:04.247859	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 + 59", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "70"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}]
218	109	Balanced and Unbalanced Forces Quiz	\N	Complete this quiz on "Balanced and Unbalanced Forces Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.263343	2026-06-23 11:23:04.263343	[{"id": 1, "type": "multiple_choice", "skill": "forces", "options": ["13 N", "3.3 N", "7 N", "30 N"], "question": "According to Newton's Second Law, F = ma. If mass is 10 kg and acceleration is 3 m/s², what is the force?", "difficulty": "medium", "explanation": "F=ma=10×3=30 N.", "needs_review": false, "correct_answer": "30 N"}, {"id": 2, "type": "true_false", "skill": "friction", "question": "Friction is a force that opposes motion.", "difficulty": "easy", "explanation": "Friction acts between surfaces in contact and resists sliding.", "needs_review": false, "correct_answer": "True"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Balanced and Unbalanced Forces, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
222	111	Gravity Quiz	\N	Complete this quiz on "Gravity Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.265217	2026-06-23 11:23:04.265217	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Gravity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
223	112	Food Chains Practice	\N	Complete this homework assignment on "Food Chains Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.266214	2026-06-23 11:23:04.266214	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Food Chains, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
225	113	Habitats Practice	\N	Complete this homework assignment on "Habitats Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.2671	2026-06-23 11:23:04.2671	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Habitats, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1094	114	Ecosystems Unit Test	\N	Complete this test on "Ecosystems Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.733171	2026-06-23 11:23:04.733171	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
234	117	Severe Weather Quiz	\N	Complete this quiz on "Severe Weather Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.272208	2026-06-23 11:23:04.272208	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Precipitation", "Condensation", "Collection", "Evaporation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Severe Weather, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
235	118	Urban Rural and Suburban Practice	\N	Complete this homework assignment on "Urban Rural and Suburban Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.27353	2026-06-23 11:23:04.27353	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Urban Rural and Suburban. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
239	120	Community Resources Practice	\N	Complete this homework assignment on "Community Resources Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.275528	2026-06-23 11:23:04.275528	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Community Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1096	120	Communities Unit Test	\N	Complete this test on "Communities Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.734124	2026-06-23 11:23:04.734124	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Community Resources. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
243	122	Physical Features Practice	\N	Complete this homework assignment on "Physical Features Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.277724	2026-06-23 11:23:04.277724	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Physical Features. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
245	123	Human Geography Practice	\N	Complete this homework assignment on "Human Geography Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.2787	2026-06-23 11:23:04.2787	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["6", "5", "7", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
251	126	Trade Practice	\N	Complete this homework assignment on "Trade Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.281843	2026-06-23 11:23:04.281843	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Trade. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1098	126	Economics Unit Test	\N	Complete this test on "Economics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.73517	2026-06-23 11:23:04.73517	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Trade. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
277	139	Fiction vs Nonfiction Practice	\N	Complete this homework assignment on "Fiction vs Nonfiction Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.296911	2026-06-23 11:23:04.296911	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
279	140	Character Analysis Practice	\N	Complete this homework assignment on "Character Analysis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.297858	2026-06-23 11:23:04.297858	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
282	141	Theme and Moral Quiz	\N	Complete this quiz on "Theme and Moral Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.299164	2026-06-23 11:23:04.299164	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
281	141	Theme and Moral Practice	\N	Complete this homework assignment on "Theme and Moral Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.298834	2026-06-23 11:23:04.298834	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about a boy learning about responsibility when he loses a library book"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1103	141	Literature Unit Test	\N	Complete this test on "Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.738119	2026-06-23 11:23:04.738119	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
283	142	Essay Structure Practice	\N	Complete this homework assignment on "Essay Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.300177	2026-06-23 11:23:04.300177	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
285	143	Descriptive Writing Practice	\N	Complete this homework assignment on "Descriptive Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.301087	2026-06-23 11:23:04.301087	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
288	144	Research Reports Quiz	\N	Complete this quiz on "Research Reports Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.302471	2026-06-23 11:23:04.302471	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1104	144	Writing Unit Test	\N	Complete this test on "Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.738668	2026-06-23 11:23:04.738668	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
289	145	Complex Sentences Practice	\N	Complete this homework assignment on "Complex Sentences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.303344	2026-06-23 11:23:04.303344	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
294	147	Homophones Quiz	\N	Complete this quiz on "Homophones Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.305865	2026-06-23 11:23:04.305865	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
293	147	Homophones Practice	\N	Complete this homework assignment on "Homophones Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.305548	2026-06-23 11:23:04.305548	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
296	148	Oral Presentations Quiz	\N	Complete this quiz on "Oral Presentations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.30753	2026-06-23 11:23:04.30753	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
298	149	Discussion Skills Quiz	\N	Complete this quiz on "Discussion Skills Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.31006	2026-06-23 11:23:04.31006	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1106	150	Speaking Unit Test	\N	Complete this test on "Speaking Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.739652	2026-06-23 11:23:04.739652	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1099	129	Multi-Digit Operations Unit Test	\N	Complete this test on "Multi-Digit Operations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.735647	2026-06-23 11:23:04.735647	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 67 + 24", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "91"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 10", "difficulty": "medium", "explanation": "Multiply: 2×10=20", "needs_review": false, "correct_answer": "20"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 17", "difficulty": "medium", "explanation": "Multiply: 6×17=102", "needs_review": false, "correct_answer": "102"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 3", "difficulty": "medium", "explanation": "Multiply: 3×3=9", "needs_review": false, "correct_answer": "9"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 7", "difficulty": "medium", "explanation": "Multiply: 3×7=21", "needs_review": false, "correct_answer": "21"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 16", "difficulty": "medium", "explanation": "Multiply: 13×16=208", "needs_review": false, "correct_answer": "208"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 18", "difficulty": "medium", "explanation": "Multiply: 6×18=108", "needs_review": false, "correct_answer": "108"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}]
259	130	Equivalent Fractions Practice	\N	Complete this homework assignment on "Equivalent Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.286722	2026-06-23 11:23:04.286722	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["2/4", "3/4", "1/2", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 6", "difficulty": "medium", "explanation": "Multiply: 4×6=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 4", "difficulty": "medium", "explanation": "Multiply: 6×4=24", "needs_review": false, "correct_answer": "24"}]
262	131	Adding Fractions Quiz	\N	Complete this quiz on "Adding Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.288267	2026-06-23 11:23:04.288267	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 91 + 139", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "230"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["229", "230", "240", "235"], "question": "What is the sum of 91 and 139?", "difficulty": "easy", "explanation": "91+139=230", "needs_review": false, "correct_answer": "230"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 91+139 = 139+91.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 4", "difficulty": "medium", "explanation": "Multiply: 10×4=40", "needs_review": false, "correct_answer": "40"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 8", "difficulty": "medium", "explanation": "Multiply: 11×8=88", "needs_review": false, "correct_answer": "88"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 3", "difficulty": "medium", "explanation": "Multiply: 3×3=9", "needs_review": false, "correct_answer": "9"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 14", "difficulty": "medium", "explanation": "Multiply: 10×14=140", "needs_review": false, "correct_answer": "140"}]
263	132	Introduction to Decimals Practice	\N	Complete this homework assignment on "Introduction to Decimals Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.289043	2026-06-23 11:23:04.289043	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 70 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "85"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 14", "difficulty": "medium", "explanation": "Multiply: 15×14=210", "needs_review": false, "correct_answer": "210"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 18", "difficulty": "medium", "explanation": "Multiply: 14×18=252", "needs_review": false, "correct_answer": "252"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 2", "difficulty": "medium", "explanation": "Multiply: 18×2=36", "needs_review": false, "correct_answer": "36"}]
1100	132	Fractions and Decimals Unit Test	\N	Complete this test on "Fractions and Decimals Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.73628	2026-06-23 11:23:04.73628	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 31 + 83", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "114"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 10", "difficulty": "medium", "explanation": "Multiply: 11×10=110", "needs_review": false, "correct_answer": "110"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 9", "difficulty": "medium", "explanation": "Multiply: 10×9=90", "needs_review": false, "correct_answer": "90"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 14", "difficulty": "medium", "explanation": "Multiply: 10×14=140", "needs_review": false, "correct_answer": "140"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 15", "difficulty": "medium", "explanation": "Multiply: 9×15=135", "needs_review": false, "correct_answer": "135"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 6", "difficulty": "medium", "explanation": "Multiply: 20×6=120", "needs_review": false, "correct_answer": "120"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 16", "difficulty": "medium", "explanation": "Multiply: 13×16=208", "needs_review": false, "correct_answer": "208"}]
271	136	Number Patterns Practice	\N	Complete this homework assignment on "Number Patterns Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.293506	2026-06-23 11:23:04.293506	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 95 + 50", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "145"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 18", "difficulty": "medium", "explanation": "Multiply: 17×18=306", "needs_review": false, "correct_answer": "306"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 19", "difficulty": "medium", "explanation": "Multiply: 16×19=304", "needs_review": false, "correct_answer": "304"}]
301	151	Forms of Energy Practice	\N	Complete this homework assignment on "Forms of Energy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.312872	2026-06-23 11:23:04.312872	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Forms of Energy, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
304	152	Energy Transfer Quiz	\N	Complete this quiz on "Energy Transfer Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.314415	2026-06-23 11:23:04.314415	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Energy Transfer, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
306	153	Electricity Quiz	\N	Complete this quiz on "Electricity Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.315446	2026-06-23 11:23:04.315446	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electricity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1107	153	Energy Unit Test	\N	Complete this test on "Energy Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.740153	2026-06-23 11:23:04.740153	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electricity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
310	155	Erosion and Weathering Quiz	\N	Complete this quiz on "Erosion and Weathering Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.317672	2026-06-23 11:23:04.317672	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Condensation", "Precipitation", "Collection"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Erosion and Weathering, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
311	156	Fossils Practice	\N	Complete this homework assignment on "Fossils Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.318323	2026-06-23 11:23:04.318323	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Fossils, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
312	156	Fossils Quiz	\N	Complete this quiz on "Fossils Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.318603	2026-06-23 11:23:04.318603	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Fossils, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
316	158	Animal Adaptations Quiz	\N	Complete this quiz on "Animal Adaptations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.320735	2026-06-23 11:23:04.320735	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Animal Adaptations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
322	161	Nevada Statehood Quiz	\N	Complete this quiz on "Nevada Statehood Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.32428	2026-06-23 11:23:04.32428	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Nevada Statehood. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1110	162	Nevada History Unit Test	\N	Complete this test on "Nevada History Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.741888	2026-06-23 11:23:04.741888	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["7", "8", "5", "6"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Nevada Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
324	162	Nevada Geography Quiz	\N	Complete this quiz on "Nevada Geography Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.325183	2026-06-23 11:23:04.325183	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["7", "6", "5", "8"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Nevada Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
327	164	Midwest and Southwest Practice	\N	Complete this homework assignment on "Midwest and Southwest Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.326972	2026-06-23 11:23:04.326972	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Midwest and Southwest. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1111	165	US Regions Unit Test	\N	Complete this test on "US Regions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.742397	2026-06-23 11:23:04.742397	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to West Region. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
361	181	Point of View Practice	\N	Complete this homework assignment on "Point of View Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.345548	2026-06-23 11:23:04.345548	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
363	182	Figurative Language Practice	\N	Complete this homework assignment on "Figurative Language Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.34637	2026-06-23 11:23:04.34637	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
341	171	Multiplying Decimals Practice	\N	Complete this homework assignment on "Multiplying Decimals Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.334336	2026-06-23 11:23:04.334336	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "4 groups of 4.", "needs_review": false, "correct_answer": "16"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["12", "20", "16", "8"], "question": "What is the product of 4 and 4?", "difficulty": "easy", "explanation": "4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 7", "difficulty": "medium", "explanation": "Multiply: 10×7=70", "needs_review": false, "correct_answer": "70"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}]
366	183	Comparing Texts Quiz	\N	Complete this quiz on "Comparing Texts Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.347497	2026-06-23 11:23:04.347497	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
365	183	Comparing Texts Practice	\N	Complete this homework assignment on "Comparing Texts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.347226	2026-06-23 11:23:04.347226	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1117	183	Literature Analysis Unit Test	\N	Complete this test on "Literature Analysis Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.745244	2026-06-23 11:23:04.745244	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "The name of the street they lived on", "What the characters ate for breakfast", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
367	184	Persuasive Writing Practice	\N	Complete this homework assignment on "Persuasive Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.348343	2026-06-23 11:23:04.348343	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about playing a sport", "The passage is mostly about cooking dinner", "The passage is mostly about students working together to build a school garden"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are lazy and do not care about anything", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
368	184	Persuasive Writing Quiz	\N	Complete this quiz on "Persuasive Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.348613	2026-06-23 11:23:04.348613	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
370	185	Narrative Essays Quiz	\N	Complete this quiz on "Narrative Essays Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.349586	2026-06-23 11:23:04.349586	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about students working together to build a school garden", "The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They care about doing the right thing and working hard", "They are lazy and do not care about anything", "They prefer to be alone at all times"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
1118	186	Writing Unit Test	\N	Complete this test on "Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.745822	2026-06-23 11:23:04.745822	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
373	187	Verb Tenses Practice	\N	Complete this homework assignment on "Verb Tenses Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.351233	2026-06-23 11:23:04.351233	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about a boy learning about responsibility when he loses a library book"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "A specific event or fact described in the passage", "The color of the sky that day", "What the characters ate for breakfast"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
374	187	Verb Tenses Quiz	\N	Complete this quiz on "Verb Tenses Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.351505	2026-06-23 11:23:04.351505	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about a boy learning about responsibility when he loses a library book", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The Lost Library Book\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about a boy learning about responsibility when he loses a library book"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Lost Library Book.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
376	188	Prepositions Quiz	\N	Complete this quiz on "Prepositions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.352351	2026-06-23 11:23:04.352351	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about playing a sport", "The passage is mostly about going on vacation", "The passage is mostly about why fresh water is an important resource to protect"], "question": "What is the main idea of \\"Water: Earth's Most Important Resource\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about why fresh water is an important resource to protect"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The color of the sky that day", "What the characters ate for breakfast", "The name of the street they lived on", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Water: Earth's Most Important Resource.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
378	189	Comma Rules Quiz	\N	Complete this quiz on "Comma Rules Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.353277	2026-06-23 11:23:04.353277	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about how being kind to a new student makes a difference", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"The New Student\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about how being kind to a new student makes a difference"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["What the characters ate for breakfast", "A specific event or fact described in the passage", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are afraid of everything", "They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The New Student.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
379	190	Greek and Latin Roots Practice	\N	Complete this homework assignment on "Greek and Latin Roots Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.354258	2026-06-23 11:23:04.354258	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The name of the street they lived on", "The color of the sky that day"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They are lazy and do not care about anything", "They prefer to be alone at all times", "They care about doing the right thing and working hard", "They are afraid of everything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
380	190	Greek and Latin Roots Quiz	\N	Complete this quiz on "Greek and Latin Roots Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.354594	2026-06-23 11:23:04.354594	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about cooking dinner", "The passage is mostly about going on vacation", "The passage is mostly about the life cycle and importance of butterflies", "The passage is mostly about playing a sport"], "question": "What is the main idea of \\"Amazing Butterflies\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about the life cycle and importance of butterflies"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["A specific event or fact described in the passage", "What the characters ate for breakfast", "The color of the sky that day", "The name of the street they lived on"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They prefer to be alone at all times", "They are afraid of everything", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"Amazing Butterflies.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
384	192	Academic Vocabulary Quiz	\N	Complete this quiz on "Academic Vocabulary Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.356552	2026-06-23 11:23:04.356552	[{"id": 1, "type": "multiple_choice", "skill": "main idea", "options": ["The passage is mostly about playing a sport", "The passage is mostly about students working together to build a school garden", "The passage is mostly about going on vacation", "The passage is mostly about cooking dinner"], "question": "What is the main idea of \\"The Garden Project\\"?", "difficulty": "medium", "explanation": "The main idea is what the passage is mostly about. Look at the topic and the key details.", "needs_review": false, "correct_answer": "The passage is mostly about students working together to build a school garden"}, {"id": 2, "type": "multiple_choice", "skill": "supporting details", "options": ["The name of the street they lived on", "What the characters ate for breakfast", "The color of the sky that day", "A specific event or fact described in the passage"], "question": "Which detail from the passage best supports the main idea?", "difficulty": "medium", "explanation": "Supporting details are facts or events that explain or prove the main idea.", "needs_review": false, "correct_answer": "A specific event or fact described in the passage"}, {"id": 3, "type": "true_false", "skill": "sequence", "question": "The events in a story always happen in random order with no pattern.", "difficulty": "easy", "explanation": "Stories follow a sequence: beginning, middle, and end. Events connect in a logical order.", "needs_review": false, "correct_answer": "False"}, {"id": 4, "type": "multiple_choice", "skill": "inference", "options": ["They care about doing the right thing and working hard", "They are afraid of everything", "They prefer to be alone at all times", "They are lazy and do not care about anything"], "question": "What can you infer about the main character from their actions in the passage?", "difficulty": "medium", "explanation": "To make an inference, combine what the text says with what you already know.", "needs_review": false, "correct_answer": "They care about doing the right thing and working hard"}, {"id": 5, "type": "written_response", "skill": "written response", "question": "Think about the passage \\"The Garden Project.\\" What lesson does the main character learn, or what is the most important message? Write 3-4 sentences explaining your answer. Use at least one detail from the passage to support your response.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}]
337	169	Decimal Place Value Practice	\N	Complete this homework assignment on "Decimal Place Value Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.332567	2026-06-23 11:23:04.332567	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 40 + 84", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "124"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 15", "difficulty": "medium", "explanation": "Multiply: 6×15=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 5", "difficulty": "medium", "explanation": "Multiply: 9×5=45", "needs_review": false, "correct_answer": "45"}]
339	170	Adding and Subtracting Decimals Practice	\N	Complete this homework assignment on "Adding and Subtracting Decimals Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.333464	2026-06-23 11:23:04.333464	[{"id": 1, "type": "short_answer", "skill": "addition", "question": "Calculate: 126 + 120", "difficulty": "medium", "explanation": "Add by place value, regrouping as needed.", "needs_review": false, "correct_answer": "246"}, {"id": 2, "type": "multiple_choice", "skill": "addition", "options": ["256", "251", "246", "245"], "question": "What is the sum of 126 and 120?", "difficulty": "easy", "explanation": "126+120=246", "needs_review": false, "correct_answer": "246"}, {"id": 3, "type": "true_false", "skill": "properties", "question": "The commutative property means 126+120 = 120+126.", "difficulty": "easy", "explanation": "The commutative property states changing the order of addends does not change the sum.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}]
1113	171	Decimals Unit Test	\N	Complete this test on "Decimals Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.743348	2026-06-23 11:23:04.743348	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 12 × 7", "difficulty": "medium", "explanation": "12 groups of 7.", "needs_review": false, "correct_answer": "84"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["96", "19", "77", "84"], "question": "What is the product of 12 and 7?", "difficulty": "easy", "explanation": "12×7=84", "needs_review": false, "correct_answer": "84"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 10", "difficulty": "medium", "explanation": "Multiply: 3×10=30", "needs_review": false, "correct_answer": "30"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 14", "difficulty": "medium", "explanation": "Multiply: 13×14=182", "needs_review": false, "correct_answer": "182"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 19", "difficulty": "medium", "explanation": "Multiply: 2×19=38", "needs_review": false, "correct_answer": "38"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 16", "difficulty": "medium", "explanation": "Multiply: 5×16=80", "needs_review": false, "correct_answer": "80"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 17", "difficulty": "medium", "explanation": "Multiply: 2×17=34", "needs_review": false, "correct_answer": "34"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 6", "difficulty": "medium", "explanation": "Multiply: 3×6=18", "needs_review": false, "correct_answer": "18"}]
343	172	Multiplying Fractions Practice	\N	Complete this homework assignment on "Multiplying Fractions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.335578	2026-06-23 11:23:04.335578	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "10 groups of 11.", "needs_review": false, "correct_answer": "110"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["21", "110", "99", "120"], "question": "What is the product of 10 and 11?", "difficulty": "easy", "explanation": "10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 7", "difficulty": "medium", "explanation": "Multiply: 7×7=49", "needs_review": false, "correct_answer": "49"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 13", "difficulty": "medium", "explanation": "Multiply: 3×13=39", "needs_review": false, "correct_answer": "39"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}]
346	173	Dividing Fractions Quiz	\N	Complete this quiz on "Dividing Fractions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.336898	2026-06-23 11:23:04.336898	[{"id": 1, "type": "multiple_choice", "skill": "fractions", "options": ["3/4", "1/2", "2/4", "3/8"], "question": "What is 1/4 + 2/4?", "difficulty": "medium", "explanation": "Same denominator: add numerators. (1+2)/4=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 2, "type": "short_answer", "skill": "fractions", "question": "Simplify: 6/8", "difficulty": "medium", "explanation": "Divide numerator and denominator by GCF (2): 6÷2/8÷2=3/4.", "needs_review": false, "correct_answer": "3/4"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 9", "difficulty": "medium", "explanation": "Multiply: 12×9=108", "needs_review": false, "correct_answer": "108"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 5", "difficulty": "medium", "explanation": "Multiply: 7×5=35", "needs_review": false, "correct_answer": "35"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 9", "difficulty": "medium", "explanation": "Multiply: 4×9=36", "needs_review": false, "correct_answer": "36"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 9", "difficulty": "medium", "explanation": "Multiply: 3×9=27", "needs_review": false, "correct_answer": "27"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 6", "difficulty": "medium", "explanation": "Multiply: 6×6=36", "needs_review": false, "correct_answer": "36"}]
349	175	Volume of Rectangular Prisms Practice	\N	Complete this homework assignment on "Volume of Rectangular Prisms Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.338997	2026-06-23 11:23:04.338997	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=11, width=5", "difficulty": "medium", "explanation": "A=l×w=11×5=55 sq units.", "needs_review": false, "correct_answer": "55"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["32", "55", "44", "16"], "question": "Find the perimeter of a rectangle: length=11, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(11+5)=2(16)=32", "needs_review": false, "correct_answer": "32"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 13", "difficulty": "medium", "explanation": "Multiply: 17×13=221", "needs_review": false, "correct_answer": "221"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 9", "difficulty": "medium", "explanation": "Multiply: 15×9=135", "needs_review": false, "correct_answer": "135"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}]
351	176	Converting Units Practice	\N	Complete this homework assignment on "Converting Units Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.339963	2026-06-23 11:23:04.339963	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 53 + 65", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "118"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 5", "difficulty": "medium", "explanation": "Multiply: 2×5=10", "needs_review": false, "correct_answer": "10"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 4", "difficulty": "medium", "explanation": "Multiply: 14×4=56", "needs_review": false, "correct_answer": "56"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 17", "difficulty": "medium", "explanation": "Multiply: 12×17=204", "needs_review": false, "correct_answer": "204"}]
353	177	Metric System Practice	\N	Complete this homework assignment on "Metric System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.340847	2026-06-23 11:23:04.340847	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 48 + 10", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "58"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 6", "difficulty": "medium", "explanation": "Multiply: 8×6=48", "needs_review": false, "correct_answer": "48"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 17", "difficulty": "medium", "explanation": "Multiply: 13×17=221", "needs_review": false, "correct_answer": "221"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 3", "difficulty": "medium", "explanation": "Multiply: 10×3=30", "needs_review": false, "correct_answer": "30"}]
355	178	Plotting Points Practice	\N	Complete this homework assignment on "Plotting Points Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.342186	2026-06-23 11:23:04.342186	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 83 + 78", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "161"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 4", "difficulty": "medium", "explanation": "Multiply: 19×4=76", "needs_review": false, "correct_answer": "76"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 18", "difficulty": "medium", "explanation": "Multiply: 17×18=306", "needs_review": false, "correct_answer": "306"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 8", "difficulty": "medium", "explanation": "Multiply: 9×8=72", "needs_review": false, "correct_answer": "72"}]
387	194	Chemical vs Physical Changes Practice	\N	Complete this homework assignment on "Chemical vs Physical Changes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.358868	2026-06-23 11:23:04.358868	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Metallic", "Hydrogen", "Ionic", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Chemical vs Physical Changes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
389	195	Mixtures and Solutions Practice	\N	Complete this homework assignment on "Mixtures and Solutions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.359734	2026-06-23 11:23:04.359734	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Mixtures and Solutions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1121	195	Matter Unit Test	\N	Complete this test on "Matter Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.747297	2026-06-23 11:23:04.747297	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Mixtures and Solutions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
393	197	Ocean Currents Practice	\N	Complete this homework assignment on "Ocean Currents Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.361835	2026-06-23 11:23:04.361835	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ocean Currents, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
395	198	Atmosphere Practice	\N	Complete this homework assignment on "Atmosphere Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.362728	2026-06-23 11:23:04.362728	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atmosphere, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1122	198	Earth Systems Unit Test	\N	Complete this test on "Earth Systems Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.747773	2026-06-23 11:23:04.747773	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atmosphere, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
405	203	Colonial Life Practice	\N	Complete this homework assignment on "Colonial Life Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.368191	2026-06-23 11:23:04.368191	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Colonial Life. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
407	204	Road to Revolution Practice	\N	Complete this homework assignment on "Road to Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.369044	2026-06-23 11:23:04.369044	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "Taxation without representation", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Road to Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1124	204	Colonial America Unit Test	\N	Complete this test on "Colonial America Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.74871	2026-06-23 11:23:04.74871	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "Taxation without representation", "A desire to expand westward", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Road to Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
409	205	Causes of the Revolution Practice	\N	Complete this homework assignment on "Causes of the Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.370663	2026-06-23 11:23:04.370663	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "Taxation without representation", "A desire to expand westward", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Causes of the Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
412	206	Key Battles Quiz	\N	Complete this quiz on "Key Battles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.372061	2026-06-23 11:23:04.372061	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Key Battles. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
413	207	Declaration of Independence Practice	\N	Complete this homework assignment on "Declaration of Independence Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.372611	2026-06-23 11:23:04.372611	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "Religious conflict", "Taxation without representation", "A trade dispute with France"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Declaration of Independence. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
416	208	Constitution Quiz	\N	Complete this quiz on "Constitution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.374177	2026-06-23 11:23:04.374177	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Legislative (Congress)", "Executive (President)", "Military", "Judicial (Supreme Court)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Preamble", "The Bill of Rights", "The Articles", "The Federalist Papers"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Constitution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1126	210	New Nation Unit Test	\N	Complete this test on "New Nation Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.749665	2026-06-23 11:23:04.749665	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "A desire to expand westward", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Westward Expansion. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
886	443	Geometric Sequences Quiz	\N	Complete this quiz on "Geometric Sequences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.622857	2026-06-23 11:23:04.622857	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 49 + 98", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "147"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 12", "difficulty": "medium", "explanation": "Multiply: 16×12=192", "needs_review": false, "correct_answer": "192"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "Multiply: 7×4=28", "needs_review": false, "correct_answer": "28"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 11", "difficulty": "medium", "explanation": "Multiply: 17×11=187", "needs_review": false, "correct_answer": "187"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 12", "difficulty": "medium", "explanation": "Multiply: 9×12=108", "needs_review": false, "correct_answer": "108"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 3", "difficulty": "medium", "explanation": "Multiply: 3×3=9", "needs_review": false, "correct_answer": "9"}]
419	210	Westward Expansion Practice	\N	Complete this homework assignment on "Westward Expansion Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.375802	2026-06-23 11:23:04.375802	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "Taxation without representation", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Westward Expansion. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
448	224	Plot Structure Quiz	\N	Complete this quiz on "Plot Structure Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.391389	2026-06-23 11:23:04.391389	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
447	224	Plot Structure Practice	\N	Complete this homework assignment on "Plot Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.391117	2026-06-23 11:23:04.391117	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1131	225	Literary Analysis Unit Test	\N	Complete this test on "Literary Analysis Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.752117	2026-06-23 11:23:04.752117	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
451	226	Claims and Evidence Practice	\N	Complete this homework assignment on "Claims and Evidence Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.39315	2026-06-23 11:23:04.39315	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "Success depends only on luck", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1127	213	Ratios and Proportions Unit Test	\N	Complete this test on "Ratios and Proportions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.750151	2026-06-23 11:23:04.750151	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 35 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "50"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 14", "difficulty": "medium", "explanation": "Multiply: 4×14=56", "needs_review": false, "correct_answer": "56"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 6", "difficulty": "medium", "explanation": "Multiply: 15×6=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 7", "difficulty": "medium", "explanation": "Multiply: 3×7=21", "needs_review": false, "correct_answer": "21"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 20", "difficulty": "medium", "explanation": "Multiply: 5×20=100", "needs_review": false, "correct_answer": "100"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 11", "difficulty": "medium", "explanation": "Multiply: 15×11=165", "needs_review": false, "correct_answer": "165"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 16", "difficulty": "medium", "explanation": "Multiply: 8×16=128", "needs_review": false, "correct_answer": "128"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 13", "difficulty": "medium", "explanation": "Multiply: 14×13=182", "needs_review": false, "correct_answer": "182"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 16", "difficulty": "medium", "explanation": "Multiply: 6×16=96", "needs_review": false, "correct_answer": "96"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 13", "difficulty": "medium", "explanation": "Multiply: 15×13=195", "needs_review": false, "correct_answer": "195"}]
453	227	Counterarguments Practice	\N	Complete this homework assignment on "Counterarguments Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.394036	2026-06-23 11:23:04.394036	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
455	228	Persuasive Techniques Practice	\N	Complete this homework assignment on "Persuasive Techniques Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.395425	2026-06-23 11:23:04.395425	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
457	229	Evaluating Sources Practice	\N	Complete this homework assignment on "Evaluating Sources Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.39658	2026-06-23 11:23:04.39658	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
462	231	MLA Format Basics Quiz	\N	Complete this quiz on "MLA Format Basics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.398664	2026-06-23 11:23:04.398664	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
428	214	Positive and Negative Numbers Quiz	\N	Complete this quiz on "Positive and Negative Numbers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.380641	2026-06-23 11:23:04.380641	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 26 + 37", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "63"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 10", "difficulty": "medium", "explanation": "Multiply: 3×10=30", "needs_review": false, "correct_answer": "30"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 5", "difficulty": "medium", "explanation": "Multiply: 12×5=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 6", "difficulty": "medium", "explanation": "Multiply: 7×6=42", "needs_review": false, "correct_answer": "42"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 17", "difficulty": "medium", "explanation": "Multiply: 19×17=323", "needs_review": false, "correct_answer": "323"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 16", "difficulty": "medium", "explanation": "Multiply: 12×16=192", "needs_review": false, "correct_answer": "192"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}]
461	231	MLA Format Basics Practice	\N	Complete this homework assignment on "MLA Format Basics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.398376	2026-06-23 11:23:04.398376	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
463	232	Debate Skills Practice	\N	Complete this homework assignment on "Debate Skills Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.399575	2026-06-23 11:23:04.399575	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
467	234	Presentations Practice	\N	Complete this homework assignment on "Presentations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.401297	2026-06-23 11:23:04.401297	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
421	211	Understanding Ratios Practice	\N	Complete this homework assignment on "Understanding Ratios Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.377299	2026-06-23 11:23:04.377299	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 + 80", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "95"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "Multiply: 4×11=44", "needs_review": false, "correct_answer": "44"}]
433	217	Writing Expressions Practice	\N	Complete this homework assignment on "Writing Expressions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.383601	2026-06-23 11:23:04.383601	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 80 + 56", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "136"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 2", "difficulty": "medium", "explanation": "Multiply: 11×2=22", "needs_review": false, "correct_answer": "22"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 7", "difficulty": "medium", "explanation": "Multiply: 16×7=112", "needs_review": false, "correct_answer": "112"}]
434	217	Writing Expressions Quiz	\N	Complete this quiz on "Writing Expressions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.383893	2026-06-23 11:23:04.383893	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 61 + 76", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "137"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 13", "difficulty": "medium", "explanation": "Multiply: 7×13=91", "needs_review": false, "correct_answer": "91"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 7", "difficulty": "medium", "explanation": "Multiply: 4×7=28", "needs_review": false, "correct_answer": "28"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 2", "difficulty": "medium", "explanation": "Multiply: 20×2=40", "needs_review": false, "correct_answer": "40"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 2", "difficulty": "medium", "explanation": "Multiply: 12×2=24", "needs_review": false, "correct_answer": "24"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 19", "difficulty": "medium", "explanation": "Multiply: 20×19=380", "needs_review": false, "correct_answer": "380"}]
435	218	Solving One-Step Equations Practice	\N	Complete this homework assignment on "Solving One-Step Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.384501	2026-06-23 11:23:04.384501	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 14", "x = 32", "x = 8"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 8", "difficulty": "medium", "explanation": "Multiply: 16×8=128", "needs_review": false, "correct_answer": "128"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 13", "difficulty": "medium", "explanation": "Multiply: 6×13=78", "needs_review": false, "correct_answer": "78"}]
437	219	Inequalities Practice	\N	Complete this homework assignment on "Inequalities Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.385352	2026-06-23 11:23:04.385352	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 91 + 30", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "121"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 11", "difficulty": "medium", "explanation": "Multiply: 13×11=143", "needs_review": false, "correct_answer": "143"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 4", "difficulty": "medium", "explanation": "Multiply: 5×4=20", "needs_review": false, "correct_answer": "20"}]
438	219	Inequalities Quiz	\N	Complete this quiz on "Inequalities Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.385627	2026-06-23 11:23:04.385627	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 79 + 45", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "124"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 13", "difficulty": "medium", "explanation": "Multiply: 11×13=143", "needs_review": false, "correct_answer": "143"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 8", "difficulty": "medium", "explanation": "Multiply: 15×8=120", "needs_review": false, "correct_answer": "120"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 20", "difficulty": "medium", "explanation": "Multiply: 6×20=120", "needs_review": false, "correct_answer": "120"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}]
441	221	Data Displays Practice	\N	Complete this homework assignment on "Data Displays Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.387431	2026-06-23 11:23:04.387431	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 66 + 49", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "115"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 16", "difficulty": "medium", "explanation": "Multiply: 11×16=176", "needs_review": false, "correct_answer": "176"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 8", "difficulty": "medium", "explanation": "Multiply: 8×8=64", "needs_review": false, "correct_answer": "64"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 14", "difficulty": "medium", "explanation": "Multiply: 20×14=280", "needs_review": false, "correct_answer": "280"}]
469	235	Cell Structure Practice	\N	Complete this homework assignment on "Cell Structure Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.402898	2026-06-23 11:23:04.402898	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Nucleus", "Cell membrane", "Mitochondria", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Structure, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
472	236	Plant vs Animal Cells Quiz	\N	Complete this quiz on "Plant vs Animal Cells Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.404168	2026-06-23 11:23:04.404168	[{"id": 1, "type": "multiple_choice", "skill": "photosynthesis", "options": ["Soil, darkness, and oxygen", "Wind, rocks, and heat", "Sunlight, water, and carbon dioxide", "Sand and ice"], "question": "What do plants need for photosynthesis?", "difficulty": "medium", "explanation": "Photosynthesis requires light energy, water from roots, and CO₂ from air.", "needs_review": false, "correct_answer": "Sunlight, water, and carbon dioxide"}, {"id": 2, "type": "short_answer", "skill": "photosynthesis", "question": "What gas do plants release during photosynthesis?", "difficulty": "easy", "explanation": "The products of photosynthesis are glucose and oxygen (O₂).", "needs_review": false, "correct_answer": "Oxygen"}, {"id": 3, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plant vs Animal Cells, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
473	237	Cell Functions Practice	\N	Complete this homework assignment on "Cell Functions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.404873	2026-06-23 11:23:04.404873	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Nucleus", "Mitochondria", "Cell membrane", "Ribosome"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Functions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1135	237	Cells Unit Test	\N	Complete this test on "Cells Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.754181	2026-06-23 11:23:04.754181	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Mitochondria", "Ribosome", "Nucleus", "Cell membrane"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Functions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
479	240	Respiratory System Practice	\N	Complete this homework assignment on "Respiratory System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.40807	2026-06-23 11:23:04.40807	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Respiratory System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1136	240	Body Systems Unit Test	\N	Complete this test on "Body Systems Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.754654	2026-06-23 11:23:04.754654	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Respiratory System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
481	241	Biomes Practice	\N	Complete this homework assignment on "Biomes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.409299	2026-06-23 11:23:04.409299	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Biomes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
486	243	Human Impact on Environment Quiz	\N	Complete this quiz on "Human Impact on Environment Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.411439	2026-06-23 11:23:04.411439	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact on Environment, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
487	244	Mesopotamia Practice	\N	Complete this homework assignment on "Mesopotamia Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.412625	2026-06-23 11:23:04.412625	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Mesopotamia. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
490	245	Ancient Egypt Quiz	\N	Complete this quiz on "Ancient Egypt Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.413722	2026-06-23 11:23:04.413722	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Ancient Egypt. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
491	246	Ancient Greece Practice	\N	Complete this homework assignment on "Ancient Greece Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.414313	2026-06-23 11:23:04.414313	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Ancient Greece. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1138	246	Ancient Civilizations Unit Test	\N	Complete this test on "Ancient Civilizations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.755565	2026-06-23 11:23:04.755565	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Ancient Greece. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
493	247	Maps and Globes Practice	\N	Complete this homework assignment on "Maps and Globes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.415622	2026-06-23 11:23:04.415622	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["7", "6", "8", "5"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Maps and Globes. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
495	248	Climate Zones Practice	\N	Complete this homework assignment on "Climate Zones Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.416504	2026-06-23 11:23:04.416504	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Climate Zones. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
497	249	Cultural Geography Practice	\N	Complete this homework assignment on "Cultural Geography Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.417363	2026-06-23 11:23:04.417363	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["8", "7", "5", "6"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cultural Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1139	249	World Geography Unit Test	\N	Complete this test on "World Geography Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.756075	2026-06-23 11:23:04.756075	[{"id": 1, "type": "multiple_choice", "skill": "geography", "options": ["5", "6", "8", "7"], "question": "How many continents are there?", "difficulty": "easy", "explanation": "The seven continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America.", "needs_review": false, "correct_answer": "7"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Cultural Geography. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
500	250	Roman Republic Quiz	\N	Complete this quiz on "Roman Republic Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.418868	2026-06-23 11:23:04.418868	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "An original document from the time period studied", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Roman Republic. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
529	265	Short Stories Practice	\N	Complete this homework assignment on "Short Stories Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.435065	2026-06-23 11:23:04.435065	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
531	266	Poetry Analysis Practice	\N	Complete this homework assignment on "Poetry Analysis Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.435911	2026-06-23 11:23:04.435911	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
536	268	Narrative Writing Quiz	\N	Complete this quiz on "Narrative Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.438654	2026-06-23 11:23:04.438654	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "A random dictionary definition", "The meaning suggested by surrounding sentences", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
535	268	Narrative Writing Practice	\N	Complete this homework assignment on "Narrative Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.438285	2026-06-23 11:23:04.438285	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
556	278	DNA and Heredity Quiz	\N	Complete this quiz on "DNA and Heredity Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.448958	2026-06-23 11:23:04.448958	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about DNA and Heredity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
537	269	Expository Writing Practice	\N	Complete this homework assignment on "Expository Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.439353	2026-06-23 11:23:04.439353	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
541	271	Phrases and Clauses Practice	\N	Complete this homework assignment on "Phrases and Clauses Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.441543	2026-06-23 11:23:04.441543	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
543	272	Active vs Passive Voice Practice	\N	Complete this homework assignment on "Active vs Passive Voice Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.44243	2026-06-23 11:23:04.44243	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
545	273	Misplaced Modifiers Practice	\N	Complete this homework assignment on "Misplaced Modifiers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.443327	2026-06-23 11:23:04.443327	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Success depends only on luck", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
549	275	Connotation vs Denotation Practice	\N	Complete this homework assignment on "Connotation vs Denotation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.445414	2026-06-23 11:23:04.445414	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck", "Technology always makes life easier", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence about what time of day it is", "A sentence that shows the character learning or changing", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
506	253	Constant of Proportionality Quiz	\N	Complete this quiz on "Constant of Proportionality Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.422722	2026-06-23 11:23:04.422722	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 63 + 41", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "104"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 2", "difficulty": "medium", "explanation": "Multiply: 12×2=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 6", "difficulty": "medium", "explanation": "Multiply: 16×6=96", "needs_review": false, "correct_answer": "96"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 15", "difficulty": "medium", "explanation": "Multiply: 7×15=105", "needs_review": false, "correct_answer": "105"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 2", "difficulty": "medium", "explanation": "Multiply: 10×2=20", "needs_review": false, "correct_answer": "20"}]
508	254	Proportional Graphs Quiz	\N	Complete this quiz on "Proportional Graphs Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.42357	2026-06-23 11:23:04.42357	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 57 + 68", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "125"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 2", "difficulty": "medium", "explanation": "Multiply: 9×2=18", "needs_review": false, "correct_answer": "18"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 14", "difficulty": "medium", "explanation": "Multiply: 10×14=140", "needs_review": false, "correct_answer": "140"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 3", "difficulty": "medium", "explanation": "Multiply: 6×3=18", "needs_review": false, "correct_answer": "18"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 7", "difficulty": "medium", "explanation": "Multiply: 8×7=56", "needs_review": false, "correct_answer": "56"}]
510	255	Scale Drawings Quiz	\N	Complete this quiz on "Scale Drawings Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.4244	2026-06-23 11:23:04.4244	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 61 + 95", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "156"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Distributive property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 14", "difficulty": "medium", "explanation": "Multiply: 4×14=56", "needs_review": false, "correct_answer": "56"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 6", "difficulty": "medium", "explanation": "Multiply: 16×6=96", "needs_review": false, "correct_answer": "96"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 14", "difficulty": "medium", "explanation": "Multiply: 20×14=280", "needs_review": false, "correct_answer": "280"}]
1141	255	Proportional Relationships Unit Test	\N	Complete this test on "Proportional Relationships Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.757366	2026-06-23 11:23:04.757366	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 38 + 68", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "106"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 8", "difficulty": "medium", "explanation": "Multiply: 16×8=128", "needs_review": false, "correct_answer": "128"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 10", "difficulty": "medium", "explanation": "Multiply: 10×10=100", "needs_review": false, "correct_answer": "100"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 13", "difficulty": "medium", "explanation": "Multiply: 11×13=143", "needs_review": false, "correct_answer": "143"}]
1149	279	Life Science Unit Test	\N	Complete this test on "Life Science Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.761131	2026-06-23 11:23:04.761131	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Natural Selection, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
515	258	Rational Number Word Problems Practice	\N	Complete this homework assignment on "Rational Number Word Problems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.427012	2026-06-23 11:23:04.427012	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 81 + 32", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "113"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 20", "difficulty": "medium", "explanation": "Multiply: 12×20=240", "needs_review": false, "correct_answer": "240"}]
517	259	Angles Practice	\N	Complete this homework assignment on "Angles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.428145	2026-06-23 11:23:04.428145	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=7", "difficulty": "medium", "explanation": "A=l×w=5×7=35 sq units.", "needs_review": false, "correct_answer": "35"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["12", "24", "20", "35"], "question": "Find the perimeter of a rectangle: length=5, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+7)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 9", "difficulty": "medium", "explanation": "Multiply: 15×9=135", "needs_review": false, "correct_answer": "135"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 16", "difficulty": "medium", "explanation": "Multiply: 19×16=304", "needs_review": false, "correct_answer": "304"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 3", "difficulty": "medium", "explanation": "Multiply: 12×3=36", "needs_review": false, "correct_answer": "36"}]
1143	261	Geometry Unit Test	\N	Complete this test on "Geometry Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.758271	2026-06-23 11:23:04.758271	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=9, width=8", "difficulty": "medium", "explanation": "A=l×w=9×8=72 sq units.", "needs_review": false, "correct_answer": "72"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["36", "17", "34", "72"], "question": "Find the perimeter of a rectangle: length=9, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(9+8)=2(17)=34", "needs_review": false, "correct_answer": "34"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 12", "difficulty": "medium", "explanation": "Multiply: 2×12=24", "needs_review": false, "correct_answer": "24"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 11", "difficulty": "medium", "explanation": "Multiply: 8×11=88", "needs_review": false, "correct_answer": "88"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 15", "difficulty": "medium", "explanation": "Multiply: 3×15=45", "needs_review": false, "correct_answer": "45"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 17", "difficulty": "medium", "explanation": "Multiply: 15×17=255", "needs_review": false, "correct_answer": "255"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 16", "difficulty": "medium", "explanation": "Multiply: 2×16=32", "needs_review": false, "correct_answer": "32"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 7", "difficulty": "medium", "explanation": "Multiply: 15×7=105", "needs_review": false, "correct_answer": "105"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 14", "difficulty": "medium", "explanation": "Multiply: 17×14=238", "needs_review": false, "correct_answer": "238"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}]
521	261	Surface Area and Volume Practice	\N	Complete this homework assignment on "Surface Area and Volume Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.42992	2026-06-23 11:23:04.42992	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=6, width=3", "difficulty": "medium", "explanation": "A=l×w=6×3=18 sq units.", "needs_review": false, "correct_answer": "18"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["24", "9", "18", "18"], "question": "Find the perimeter of a rectangle: length=6, width=3", "difficulty": "medium", "explanation": "P=2(l+w)=2(6+3)=2(9)=18", "needs_review": false, "correct_answer": "18"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 7", "difficulty": "medium", "explanation": "Multiply: 19×7=133", "needs_review": false, "correct_answer": "133"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 16", "difficulty": "medium", "explanation": "Multiply: 9×16=144", "needs_review": false, "correct_answer": "144"}]
1144	264	Probability and Statistics Unit Test	\N	Complete this test on "Probability and Statistics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.758778	2026-06-23 11:23:04.758778	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 75 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "96"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 12", "difficulty": "medium", "explanation": "Multiply: 6×12=72", "needs_review": false, "correct_answer": "72"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 15", "difficulty": "medium", "explanation": "Multiply: 13×15=195", "needs_review": false, "correct_answer": "195"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 12", "difficulty": "medium", "explanation": "Multiply: 13×12=156", "needs_review": false, "correct_answer": "156"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 10", "difficulty": "medium", "explanation": "Multiply: 15×10=150", "needs_review": false, "correct_answer": "150"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 20", "difficulty": "medium", "explanation": "Multiply: 17×20=340", "needs_review": false, "correct_answer": "340"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}]
559	280	Nervous System Practice	\N	Complete this homework assignment on "Nervous System Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.450855	2026-06-23 11:23:04.450855	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Nervous System, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
561	281	Skeletal and Muscular Systems Practice	\N	Complete this homework assignment on "Skeletal and Muscular Systems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.451711	2026-06-23 11:23:04.451711	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Skeletal and Muscular Systems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
565	283	Population Dynamics Practice	\N	Complete this homework assignment on "Population Dynamics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.453703	2026-06-23 11:23:04.453703	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Population Dynamics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
570	285	Conservation Quiz	\N	Complete this quiz on "Conservation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.45607	2026-06-23 11:23:04.45607	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Conservation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
574	287	Islamic Golden Age Quiz	\N	Complete this quiz on "Islamic Golden Age Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.458616	2026-06-23 11:23:04.458616	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Islamic Golden Age. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
573	287	Islamic Golden Age Practice	\N	Complete this homework assignment on "Islamic Golden Age Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.458324	2026-06-23 11:23:04.458324	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Islamic Golden Age. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
576	288	Asian Civilizations Quiz	\N	Complete this quiz on "Asian Civilizations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.459476	2026-06-23 11:23:04.459476	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Asian Civilizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1152	288	Medieval World Unit Test	\N	Complete this test on "Medieval World Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.762607	2026-06-23 11:23:04.762607	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Asian Civilizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
579	290	Protestant Reformation Practice	\N	Complete this homework assignment on "Protestant Reformation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.461183	2026-06-23 11:23:04.461183	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Protestant Reformation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1153	291	Renaissance and Reformation Unit Test	\N	Complete this test on "Renaissance and Reformation Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.763075	2026-06-23 11:23:04.763075	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Age of Exploration. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
586	293	Local and State Government Quiz	\N	Complete this quiz on "Local and State Government Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.464494	2026-06-23 11:23:04.464494	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Judicial (Supreme Court)", "Executive (President)", "Legislative (Congress)", "Military"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Articles", "The Bill of Rights", "The Federalist Papers", "The Preamble"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Local and State Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
648	324	Waves and Sound Quiz	\N	Complete this quiz on "Waves and Sound Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.49641	2026-06-23 11:23:04.49641	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Make an observation or ask a question", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Waves and Sound, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
588	294	Civic Participation Quiz	\N	Complete this quiz on "Civic Participation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.465371	2026-06-23 11:23:04.465371	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Participation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
613	307	Analyzing Arguments Practice	\N	Complete this homework assignment on "Analyzing Arguments Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.479046	2026-06-23 11:23:04.479046	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier", "People should avoid taking risks", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
617	309	Identifying Bias Practice	\N	Complete this homework assignment on "Identifying Bias Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.480807	2026-06-23 11:23:04.480807	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1159	309	Critical Reading Unit Test	\N	Complete this test on "Critical Reading Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.765909	2026-06-23 11:23:04.765909	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "Technology always makes life easier", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["There is no conflict in this passage", "Character vs. society — a character rebels against laws", "Character vs. nature — a character fights the weather", "Internal conflict — a character struggles with their own thoughts or feelings"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence that lists items in a room", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 7, "type": "multiple_choice", "skill": "vocabulary", "options": ["The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 8, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "A random dictionary definition", "It has no meaning"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 9, "type": "multiple_choice", "skill": "vocabulary", "options": ["The opposite of what it sounds like", "The meaning suggested by surrounding sentences", "It has no meaning", "A random dictionary definition"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 10, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "A random dictionary definition", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 11, "type": "multiple_choice", "skill": "vocabulary", "options": ["It has no meaning", "The meaning suggested by surrounding sentences", "A random dictionary definition", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}, {"id": 12, "type": "multiple_choice", "skill": "vocabulary", "options": ["A random dictionary definition", "It has no meaning", "The meaning suggested by surrounding sentences", "The opposite of what it sounds like"], "question": "What does the word used in the passage most likely mean based on context?", "difficulty": "medium", "explanation": "Context clues in surrounding sentences help determine word meaning.", "needs_review": false, "correct_answer": "The meaning suggested by surrounding sentences"}]
621	311	Research Methods Practice	\N	Complete this homework assignment on "Research Methods Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.482859	2026-06-23 11:23:04.482859	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
623	312	Citations and Bibliography Practice	\N	Complete this homework assignment on "Citations and Bibliography Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.483712	2026-06-23 11:23:04.483712	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence that shows the character learning or changing", "A sentence that describes the weather", "A sentence about what time of day it is"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
625	313	Historical Context Practice	\N	Complete this homework assignment on "Historical Context Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.48488	2026-06-23 11:23:04.48488	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather", "Character vs. society — a character rebels against laws", "There is no conflict in this passage"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that describes the weather", "A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
627	314	Literary Movements Practice	\N	Complete this homework assignment on "Literary Movements Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.485797	2026-06-23 11:23:04.485797	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Personal growth often comes from facing challenges or unfamiliar experiences", "People should avoid taking risks", "Technology always makes life easier", "Success depends only on luck"], "question": "What is the central theme or message of \\"The Forgotten Trail\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "Internal conflict — a character struggles with their own thoughts or feelings", "There is no conflict in this passage", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that shows the character learning or changing", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that lists items in a room"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Forgotten Trail\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
631	316	Formal vs Informal Writing Practice	\N	Complete this homework assignment on "Formal vs Informal Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.488041	2026-06-23 11:23:04.488041	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["Technology always makes life easier", "Success depends only on luck", "People should avoid taking risks", "Personal growth often comes from facing challenges or unfamiliar experiences"], "question": "What is the central theme or message of \\"The Science of Sleep\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. society — a character rebels against laws", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. nature — a character fights the weather"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence about what time of day it is", "A sentence that lists items in a room", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Science of Sleep\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
633	317	Public Speaking Practice	\N	Complete this homework assignment on "Public Speaking Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.488996	2026-06-23 11:23:04.488996	[{"id": 1, "type": "multiple_choice", "skill": "theme", "options": ["People should avoid taking risks", "Success depends only on luck", "Personal growth often comes from facing challenges or unfamiliar experiences", "Technology always makes life easier"], "question": "What is the central theme or message of \\"The Music Box\\"?", "difficulty": "medium", "explanation": "Theme is the underlying message about life that the author conveys through the text.", "needs_review": false, "correct_answer": "Personal growth often comes from facing challenges or unfamiliar experiences"}, {"id": 2, "type": "multiple_choice", "skill": "conflict", "options": ["Character vs. nature — a character fights the weather", "There is no conflict in this passage", "Internal conflict — a character struggles with their own thoughts or feelings", "Character vs. society — a character rebels against laws"], "question": "Which type of conflict is most prominent in this passage?", "difficulty": "medium", "explanation": "Conflict is the struggle that drives the story. Internal conflict happens within a character.", "needs_review": false, "correct_answer": "Internal conflict — a character struggles with their own thoughts or feelings"}, {"id": 3, "type": "multiple_choice", "skill": "text evidence", "options": ["A sentence that lists items in a room", "A sentence about what time of day it is", "A sentence that describes the weather", "A sentence that shows the character learning or changing"], "question": "Which sentence from the passage best supports the theme?", "difficulty": "hard", "explanation": "Text evidence is a specific quote or detail from the passage that proves your point.", "needs_review": false, "correct_answer": "A sentence that shows the character learning or changing"}, {"id": 4, "type": "short_answer", "skill": "figurative language", "question": "Identify one example of figurative language in the passage and explain what it means in context.", "difficulty": "hard", "explanation": "Figurative language includes simile, metaphor, personification, and imagery. Look for comparisons or descriptions that are not literal.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "text analysis", "question": "How does the author develop the central idea or theme throughout \\"The Music Box\\"? Write a paragraph that includes: (1) a clear statement of the theme, (2) at least two specific details or quotes from the passage, and (3) an explanation of how those details support the theme.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
593	297	Graphing Linear Equations Practice	\N	Complete this homework assignment on "Graphing Linear Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.468405	2026-06-23 11:23:04.468405	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 32", "x = 8", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 17", "difficulty": "medium", "explanation": "Multiply: 12×17=204", "needs_review": false, "correct_answer": "204"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 17", "difficulty": "medium", "explanation": "Multiply: 20×17=340", "needs_review": false, "correct_answer": "340"}]
595	298	Solving by Graphing Practice	\N	Complete this homework assignment on "Solving by Graphing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.469626	2026-06-23 11:23:04.469626	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 90 + 40", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "130"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 6", "difficulty": "medium", "explanation": "Multiply: 10×6=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 7", "difficulty": "medium", "explanation": "Multiply: 20×7=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 14", "difficulty": "medium", "explanation": "Multiply: 11×14=154", "needs_review": false, "correct_answer": "154"}]
597	299	Solving by Substitution Practice	\N	Complete this homework assignment on "Solving by Substitution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.470539	2026-06-23 11:23:04.470539	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 59 + 61", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "120"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 2", "difficulty": "medium", "explanation": "Multiply: 17×2=34", "needs_review": false, "correct_answer": "34"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 17", "difficulty": "medium", "explanation": "Multiply: 2×17=34", "needs_review": false, "correct_answer": "34"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}]
599	300	Real-World Systems Practice	\N	Complete this homework assignment on "Real-World Systems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.471432	2026-06-23 11:23:04.471432	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 79 + 83", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 9", "difficulty": "medium", "explanation": "Multiply: 17×9=153", "needs_review": false, "correct_answer": "153"}]
1156	300	Systems of Equations Unit Test	\N	Complete this test on "Systems of Equations Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.76449	2026-06-23 11:23:04.76449	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 38 + 21", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "59"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 18", "difficulty": "medium", "explanation": "Multiply: 15×18=270", "needs_review": false, "correct_answer": "270"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 4", "difficulty": "medium", "explanation": "Multiply: 7×4=28", "needs_review": false, "correct_answer": "28"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 6", "difficulty": "medium", "explanation": "Multiply: 6×6=36", "needs_review": false, "correct_answer": "36"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 8", "difficulty": "medium", "explanation": "Multiply: 10×8=80", "needs_review": false, "correct_answer": "80"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 11", "difficulty": "medium", "explanation": "Multiply: 20×11=220", "needs_review": false, "correct_answer": "220"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 11", "difficulty": "medium", "explanation": "Multiply: 17×11=187", "needs_review": false, "correct_answer": "187"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}]
603	302	Linear vs Nonlinear Practice	\N	Complete this homework assignment on "Linear vs Nonlinear Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.473718	2026-06-23 11:23:04.473718	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 + 39", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "58"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 13", "difficulty": "medium", "explanation": "Multiply: 6×13=78", "needs_review": false, "correct_answer": "78"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 11", "difficulty": "medium", "explanation": "Multiply: 5×11=55", "needs_review": false, "correct_answer": "55"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}]
604	302	Linear vs Nonlinear Quiz	\N	Complete this quiz on "Linear vs Nonlinear Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.474016	2026-06-23 11:23:04.474016	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 59 + 64", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "123"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 5", "difficulty": "medium", "explanation": "Multiply: 8×5=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 2", "difficulty": "medium", "explanation": "Multiply: 4×2=8", "needs_review": false, "correct_answer": "8"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 6", "difficulty": "medium", "explanation": "Multiply: 18×6=108", "needs_review": false, "correct_answer": "108"}]
1157	303	Functions Unit Test	\N	Complete this test on "Functions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.764979	2026-06-23 11:23:04.764979	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 + 51", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "70"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 11", "difficulty": "medium", "explanation": "Multiply: 14×11=154", "needs_review": false, "correct_answer": "154"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 8", "difficulty": "medium", "explanation": "Multiply: 14×8=112", "needs_review": false, "correct_answer": "112"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 20", "difficulty": "medium", "explanation": "Multiply: 4×20=80", "needs_review": false, "correct_answer": "80"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 9", "difficulty": "medium", "explanation": "Multiply: 8×9=72", "needs_review": false, "correct_answer": "72"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 4", "difficulty": "medium", "explanation": "Multiply: 8×4=32", "needs_review": false, "correct_answer": "32"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 20", "difficulty": "medium", "explanation": "Multiply: 7×20=140", "needs_review": false, "correct_answer": "140"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 16", "difficulty": "medium", "explanation": "Multiply: 4×16=64", "needs_review": false, "correct_answer": "64"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 19", "difficulty": "medium", "explanation": "Multiply: 14×19=266", "needs_review": false, "correct_answer": "266"}]
607	304	Pythagorean Theorem Practice	\N	Complete this homework assignment on "Pythagorean Theorem Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.47579	2026-06-23 11:23:04.47579	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 65 + 29", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Identity property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 5", "difficulty": "medium", "explanation": "Multiply: 10×5=50", "needs_review": false, "correct_answer": "50"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 6", "difficulty": "medium", "explanation": "Multiply: 6×6=36", "needs_review": false, "correct_answer": "36"}]
612	306	Volume of Cylinders Cones and Spheres Quiz	\N	Complete this quiz on "Volume of Cylinders Cones and Spheres Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.477755	2026-06-23 11:23:04.477755	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=6", "difficulty": "medium", "explanation": "A=l×w=10×6=60 sq units.", "needs_review": false, "correct_answer": "60"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["60", "16", "32", "40"], "question": "Find the perimeter of a rectangle: length=10, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+6)=2(16)=32", "needs_review": false, "correct_answer": "32"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 9", "difficulty": "medium", "explanation": "Multiply: 6×9=54", "needs_review": false, "correct_answer": "54"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 18", "difficulty": "medium", "explanation": "Multiply: 19×18=342", "needs_review": false, "correct_answer": "342"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 12", "difficulty": "medium", "explanation": "Multiply: 14×12=168", "needs_review": false, "correct_answer": "168"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 3", "difficulty": "medium", "explanation": "Multiply: 11×3=33", "needs_review": false, "correct_answer": "33"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 3", "difficulty": "medium", "explanation": "Multiply: 4×3=12", "needs_review": false, "correct_answer": "12"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 6", "difficulty": "medium", "explanation": "Multiply: 3×6=18", "needs_review": false, "correct_answer": "18"}]
611	306	Volume of Cylinders Cones and Spheres Practice	\N	Complete this homework assignment on "Volume of Cylinders Cones and Spheres Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.477453	2026-06-23 11:23:04.477453	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=8", "difficulty": "medium", "explanation": "A=l×w=10×8=80 sq units.", "needs_review": false, "correct_answer": "80"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["80", "40", "18", "36"], "question": "Find the perimeter of a rectangle: length=10, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+8)=2(18)=36", "needs_review": false, "correct_answer": "36"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 14", "difficulty": "medium", "explanation": "Multiply: 2×14=28", "needs_review": false, "correct_answer": "28"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 16", "difficulty": "medium", "explanation": "Multiply: 19×16=304", "needs_review": false, "correct_answer": "304"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 16", "difficulty": "medium", "explanation": "Multiply: 14×16=224", "needs_review": false, "correct_answer": "224"}]
639	320	Elements and Compounds Practice	\N	Complete this homework assignment on "Elements and Compounds Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.492257	2026-06-23 11:23:04.492257	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Metallic", "Ionic", "Hydrogen", "Covalent"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Elements and Compounds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
645	323	Energy and Work Practice	\N	Complete this homework assignment on "Energy and Work Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.495264	2026-06-23 11:23:04.495264	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Energy and Work, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1164	324	Physics Basics Unit Test	\N	Complete this test on "Physics Basics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.768357	2026-06-23 11:23:04.768357	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Waves and Sound, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
655	328	Creating the Constitution Practice	\N	Complete this homework assignment on "Creating the Constitution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.500283	2026-06-23 11:23:04.500283	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Executive (President)", "Judicial (Supreme Court)", "Legislative (Congress)", "Military"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Preamble", "The Bill of Rights", "The Federalist Papers", "The Articles"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Creating the Constitution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
657	329	Three Branches of Government Practice	\N	Complete this homework assignment on "Three Branches of Government Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.501115	2026-06-23 11:23:04.501115	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Legislative (Congress)", "Executive (President)", "Military", "Judicial (Supreme Court)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Federalist Papers", "The Preamble", "The Bill of Rights", "The Articles"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Three Branches of Government. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
660	330	Amendments Quiz	\N	Complete this quiz on "Amendments Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.502249	2026-06-23 11:23:04.502249	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Amendments. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1166	330	US Constitution Unit Test	\N	Complete this test on "US Constitution Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.769378	2026-06-23 11:23:04.769378	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Amendments. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
664	332	Key Battles and Leaders Quiz	\N	Complete this quiz on "Key Battles and Leaders Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.504431	2026-06-23 11:23:04.504431	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Key Battles and Leaders. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
665	333	Reconstruction Practice	\N	Complete this homework assignment on "Reconstruction Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.505185	2026-06-23 11:23:04.505185	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1167	333	Civil War Era Unit Test	\N	Complete this test on "Civil War Era Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.769858	2026-06-23 11:23:04.769858	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
670	335	Immigration Quiz	\N	Complete this quiz on "Immigration Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.507865	2026-06-23 11:23:04.507865	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Immigration. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
697	349	The Short Story Practice	\N	Complete this homework assignment on "The Short Story Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.522432	2026-06-23 11:23:04.522432	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
701	351	Poetry Forms Practice	\N	Complete this homework assignment on "Poetry Forms Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.524256	2026-06-23 11:23:04.524256	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Angry and hostile", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1173	351	Literature Survey Unit Test	\N	Complete this test on "Literature Survey Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.772715	2026-06-23 11:23:04.772715	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
704	352	Literary Analysis Essay Quiz	\N	Complete this quiz on "Literary Analysis Essay Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.525708	2026-06-23 11:23:04.525708	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
713	357	Tone and Voice Practice	\N	Complete this homework assignment on "Tone and Voice Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.530292	2026-06-23 11:23:04.530292	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
673	337	Variables and Expressions Practice	\N	Complete this homework assignment on "Variables and Expressions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.510056	2026-06-23 11:23:04.510056	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 32", "x = 14", "x = 8"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 10", "difficulty": "medium", "explanation": "Multiply: 6×10=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 17", "difficulty": "medium", "explanation": "Multiply: 3×17=51", "needs_review": false, "correct_answer": "51"}]
675	338	Order of Operations Practice	\N	Complete this homework assignment on "Order of Operations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.510895	2026-06-23 11:23:04.510895	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 + 15", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "28"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 14", "difficulty": "medium", "explanation": "Multiply: 8×14=112", "needs_review": false, "correct_answer": "112"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 10", "difficulty": "medium", "explanation": "Multiply: 9×10=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 19", "difficulty": "medium", "explanation": "Multiply: 18×19=342", "needs_review": false, "correct_answer": "342"}]
677	339	Properties of Real Numbers Practice	\N	Complete this homework assignment on "Properties of Real Numbers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.511795	2026-06-23 11:23:04.511795	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 53 + 41", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "94"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 5", "difficulty": "medium", "explanation": "Multiply: 11×5=55", "needs_review": false, "correct_answer": "55"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 2", "difficulty": "medium", "explanation": "Multiply: 5×2=10", "needs_review": false, "correct_answer": "10"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 13", "difficulty": "medium", "explanation": "Multiply: 11×13=143", "needs_review": false, "correct_answer": "143"}]
1169	339	Foundations of Algebra Unit Test	\N	Complete this test on "Foundations of Algebra Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.770847	2026-06-23 11:23:04.770847	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 74 + 14", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "88"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 15", "difficulty": "medium", "explanation": "Multiply: 12×15=180", "needs_review": false, "correct_answer": "180"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 3", "difficulty": "medium", "explanation": "Multiply: 7×3=21", "needs_review": false, "correct_answer": "21"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 5", "difficulty": "medium", "explanation": "Multiply: 20×5=100", "needs_review": false, "correct_answer": "100"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 4", "difficulty": "medium", "explanation": "Multiply: 12×4=48", "needs_review": false, "correct_answer": "48"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 5", "difficulty": "medium", "explanation": "Multiply: 17×5=85", "needs_review": false, "correct_answer": "85"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 8", "difficulty": "medium", "explanation": "Multiply: 11×8=88", "needs_review": false, "correct_answer": "88"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 13", "difficulty": "medium", "explanation": "Multiply: 17×13=221", "needs_review": false, "correct_answer": "221"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}]
1172	348	Quadratic Functions Unit Test	\N	Complete this test on "Quadratic Functions Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.772256	2026-06-23 11:23:04.772256	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 54 + 23", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "77"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 7", "difficulty": "medium", "explanation": "Multiply: 9×7=63", "needs_review": false, "correct_answer": "63"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 8", "difficulty": "medium", "explanation": "Multiply: 13×8=104", "needs_review": false, "correct_answer": "104"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 16", "difficulty": "medium", "explanation": "Multiply: 6×16=96", "needs_review": false, "correct_answer": "96"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 18", "difficulty": "medium", "explanation": "Multiply: 18×18=324", "needs_review": false, "correct_answer": "324"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 17", "difficulty": "medium", "explanation": "Multiply: 9×17=153", "needs_review": false, "correct_answer": "153"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 9", "difficulty": "medium", "explanation": "Multiply: 20×9=180", "needs_review": false, "correct_answer": "180"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 18", "difficulty": "medium", "explanation": "Multiply: 7×18=126", "needs_review": false, "correct_answer": "126"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 19", "difficulty": "medium", "explanation": "Multiply: 12×19=228", "needs_review": false, "correct_answer": "228"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 10", "difficulty": "medium", "explanation": "Multiply: 19×10=190", "needs_review": false, "correct_answer": "190"}]
681	341	Graphing Linear Inequalities Practice	\N	Complete this homework assignment on "Graphing Linear Inequalities Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.513969	2026-06-23 11:23:04.513969	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 21 + 47", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "68"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 8", "difficulty": "medium", "explanation": "Multiply: 2×8=16", "needs_review": false, "correct_answer": "16"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 15", "difficulty": "medium", "explanation": "Multiply: 4×15=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}]
687	344	Multiplying Polynomials Practice	\N	Complete this homework assignment on "Multiplying Polynomials Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.516867	2026-06-23 11:23:04.516867	[{"id": 1, "type": "short_answer", "skill": "multiplication", "question": "Calculate: 4 × 11", "difficulty": "medium", "explanation": "4 groups of 11.", "needs_review": false, "correct_answer": "44"}, {"id": 2, "type": "multiple_choice", "skill": "multiplication", "options": ["15", "33", "44", "48"], "question": "What is the product of 4 and 11?", "difficulty": "easy", "explanation": "4×11=44", "needs_review": false, "correct_answer": "44"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 9", "difficulty": "medium", "explanation": "Multiply: 16×9=144", "needs_review": false, "correct_answer": "144"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 16", "difficulty": "medium", "explanation": "Multiply: 13×16=208", "needs_review": false, "correct_answer": "208"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 16", "difficulty": "medium", "explanation": "Multiply: 16×16=256", "needs_review": false, "correct_answer": "256"}]
691	346	Graphing Quadratics Practice	\N	Complete this homework assignment on "Graphing Quadratics Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.518885	2026-06-23 11:23:04.518885	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 83 + 46", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "129"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 14", "difficulty": "medium", "explanation": "Multiply: 11×14=154", "needs_review": false, "correct_answer": "154"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 7", "difficulty": "medium", "explanation": "Multiply: 2×7=14", "needs_review": false, "correct_answer": "14"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 8", "difficulty": "medium", "explanation": "Multiply: 4×8=32", "needs_review": false, "correct_answer": "32"}]
693	347	Quadratic Formula Practice	\N	Complete this homework assignment on "Quadratic Formula Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.519848	2026-06-23 11:23:04.519848	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 36 + 33", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "69"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 18", "difficulty": "medium", "explanation": "Multiply: 20×18=360", "needs_review": false, "correct_answer": "360"}]
721	361	Cell Structure and Function Practice	\N	Complete this homework assignment on "Cell Structure and Function Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.53504	2026-06-23 11:23:04.53504	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Ribosome", "Cell membrane", "Nucleus", "Mitochondria"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Structure and Function, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
724	362	Cell Division Quiz	\N	Complete this quiz on "Cell Division Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.536386	2026-06-23 11:23:04.536386	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Mitochondria", "Ribosome", "Cell membrane", "Nucleus"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cell Division, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
726	363	Cellular Respiration Quiz	\N	Complete this quiz on "Cellular Respiration Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.537424	2026-06-23 11:23:04.537424	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Mitochondria", "Nucleus", "Ribosome", "Cell membrane"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cellular Respiration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1177	363	Cell Biology Unit Test	\N	Complete this test on "Cell Biology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.774722	2026-06-23 11:23:04.774722	[{"id": 1, "type": "multiple_choice", "skill": "cell biology", "options": ["Cell membrane", "Ribosome", "Mitochondria", "Nucleus"], "question": "What organelle is called the \\"powerhouse of the cell\\"?", "difficulty": "medium", "explanation": "Mitochondria produce ATP through cellular respiration.", "needs_review": false, "correct_answer": "Mitochondria"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Cellular Respiration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
727	364	Mendel and Heredity Practice	\N	Complete this homework assignment on "Mendel and Heredity Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.538564	2026-06-23 11:23:04.538564	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Write a conclusion", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Mendel and Heredity, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
732	366	Genetic Mutations Quiz	\N	Complete this quiz on "Genetic Mutations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.541046	2026-06-23 11:23:04.541046	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Genetic Mutations, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
733	367	Evidence for Evolution Practice	\N	Complete this homework assignment on "Evidence for Evolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.5421	2026-06-23 11:23:04.5421	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Evidence for Evolution, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
735	368	Natural Selection Practice	\N	Complete this homework assignment on "Natural Selection Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.543019	2026-06-23 11:23:04.543019	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Natural Selection, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1179	369	Evolution Unit Test	\N	Complete this test on "Evolution Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.775688	2026-06-23 11:23:04.775688	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Speciation, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
740	370	Ecosystems and Biomes Quiz	\N	Complete this quiz on "Ecosystems and Biomes Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.545609	2026-06-23 11:23:04.545609	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Ecosystems and Biomes, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1180	372	Ecology Unit Test	\N	Complete this test on "Ecology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.776147	2026-06-23 11:23:04.776147	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Human Impact, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
746	373	Early Civilizations Quiz	\N	Complete this quiz on "Early Civilizations Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.548777	2026-06-23 11:23:04.548777	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "A teacher lecture", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Early Civilizations. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
750	375	Rise of Religions Quiz	\N	Complete this quiz on "Rise of Religions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.55048	2026-06-23 11:23:04.55048	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rise of Religions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1181	375	Ancient World Unit Test	\N	Complete this test on "Ancient World Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.7766	2026-06-23 11:23:04.7766	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Rise of Religions. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
752	376	Byzantine Empire Quiz	\N	Complete this quiz on "Byzantine Empire Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.551757	2026-06-23 11:23:04.551757	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Byzantine Empire. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
755	378	Renaissance Practice	\N	Complete this homework assignment on "Renaissance Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.553223	2026-06-23 11:23:04.553223	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "An original document from the time period studied", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Renaissance. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
760	380	French Revolution Quiz	\N	Complete this quiz on "French Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.556513	2026-06-23 11:23:04.556513	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Religious conflict", "A trade dispute with France", "A desire to expand westward", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to French Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
759	380	French Revolution Practice	\N	Complete this homework assignment on "French Revolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.556161	2026-06-23 11:23:04.556161	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A trade dispute with France", "A desire to expand westward", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to French Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1183	381	Age of Revolution Unit Test	\N	Complete this test on "Age of Revolution Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.777639	2026-06-23 11:23:04.777639	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["Taxation without representation", "A desire to expand westward", "A trade dispute with France", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Industrial Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
762	381	Industrial Revolution Quiz	\N	Complete this quiz on "Industrial Revolution Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.5574	2026-06-23 11:23:04.5574	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "Religious conflict", "Taxation without representation", "A desire to expand westward"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Industrial Revolution. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
764	382	World War I Quiz	\N	Complete this quiz on "World War I Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.558525	2026-06-23 11:23:04.558525	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A desire to expand westward", "Taxation without representation", "A trade dispute with France", "Religious conflict"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World War I. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
795	398	Medieval and Renaissance Works Practice	\N	Complete this homework assignment on "Medieval and Renaissance Works Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.574901	2026-06-23 11:23:04.574901	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
799	400	Advanced Research Methods Practice	\N	Complete this homework assignment on "Advanced Research Methods Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.576983	2026-06-23 11:23:04.576983	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Angry and hostile", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
805	403	Literary Theory Practice	\N	Complete this homework assignment on "Literary Theory Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.580049	2026-06-23 11:23:04.580049	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
1191	405	Critical Analysis Unit Test	\N	Complete this test on "Critical Analysis Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.781398	2026-06-23 11:23:04.781398	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Thoughtful and persuasive", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
811	406	Short Story Writing Practice	\N	Complete this homework assignment on "Short Story Writing Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.582932	2026-06-23 11:23:04.582932	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions", "To entertain with a lighthearted story"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Indifferent and bored", "Humorous and sarcastic", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
836	418	Solutions and Solubility Quiz	\N	Complete this quiz on "Solutions and Solubility Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.595994	2026-06-23 11:23:04.595994	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Solutions and Solubility, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
769	385	Points Lines and Planes Practice	\N	Complete this homework assignment on "Points Lines and Planes Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.561536	2026-06-23 11:23:04.561536	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 90 + 62", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "152"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 18", "difficulty": "medium", "explanation": "Multiply: 9×18=162", "needs_review": false, "correct_answer": "162"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 3", "difficulty": "medium", "explanation": "Multiply: 9×3=27", "needs_review": false, "correct_answer": "27"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}]
773	387	Parallel Lines Practice	\N	Complete this homework assignment on "Parallel Lines Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.56331	2026-06-23 11:23:04.56331	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 96 + 91", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "187"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Commutative property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 13", "difficulty": "medium", "explanation": "Multiply: 20×13=260", "needs_review": false, "correct_answer": "260"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 12", "difficulty": "medium", "explanation": "Multiply: 19×12=228", "needs_review": false, "correct_answer": "228"}]
774	387	Parallel Lines Quiz	\N	Complete this quiz on "Parallel Lines Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.563582	2026-06-23 11:23:04.563582	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 80 + 93", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "173"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 19", "difficulty": "medium", "explanation": "Multiply: 9×19=171", "needs_review": false, "correct_answer": "171"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 20", "difficulty": "medium", "explanation": "Multiply: 7×20=140", "needs_review": false, "correct_answer": "140"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 17", "difficulty": "medium", "explanation": "Multiply: 11×17=187", "needs_review": false, "correct_answer": "187"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 2", "difficulty": "medium", "explanation": "Multiply: 19×2=38", "needs_review": false, "correct_answer": "38"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}]
777	389	Congruent Triangles Practice	\N	Complete this homework assignment on "Congruent Triangles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.565652	2026-06-23 11:23:04.565652	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=5, width=7", "difficulty": "medium", "explanation": "A=l×w=5×7=35 sq units.", "needs_review": false, "correct_answer": "35"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["20", "12", "24", "35"], "question": "Find the perimeter of a rectangle: length=5, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(5+7)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 3", "difficulty": "medium", "explanation": "Multiply: 14×3=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 7", "difficulty": "medium", "explanation": "Multiply: 18×7=126", "needs_review": false, "correct_answer": "126"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 10", "difficulty": "medium", "explanation": "Multiply: 7×10=70", "needs_review": false, "correct_answer": "70"}]
837	419	Acids and Bases Practice	\N	Complete this homework assignment on "Acids and Bases Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.596693	2026-06-23 11:23:04.596693	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Acids and Bases, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
779	390	Similar Triangles Practice	\N	Complete this homework assignment on "Similar Triangles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.566466	2026-06-23 11:23:04.566466	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=6, width=6", "difficulty": "medium", "explanation": "A=l×w=6×6=36 sq units.", "needs_review": false, "correct_answer": "36"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["24", "12", "36", "24"], "question": "Find the perimeter of a rectangle: length=6, width=6", "difficulty": "medium", "explanation": "P=2(l+w)=2(6+6)=2(12)=24", "needs_review": false, "correct_answer": "24"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 3", "difficulty": "medium", "explanation": "Multiply: 2×3=6", "needs_review": false, "correct_answer": "6"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 6", "difficulty": "medium", "explanation": "Multiply: 18×6=108", "needs_review": false, "correct_answer": "108"}]
780	390	Similar Triangles Quiz	\N	Complete this quiz on "Similar Triangles Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.566747	2026-06-23 11:23:04.566747	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=7, width=4", "difficulty": "medium", "explanation": "A=l×w=7×4=28 sq units.", "needs_review": false, "correct_answer": "28"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["28", "22", "28", "11"], "question": "Find the perimeter of a rectangle: length=7, width=4", "difficulty": "medium", "explanation": "P=2(l+w)=2(7+4)=2(11)=22", "needs_review": false, "correct_answer": "22"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 15", "difficulty": "medium", "explanation": "Multiply: 8×15=120", "needs_review": false, "correct_answer": "120"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 4", "difficulty": "medium", "explanation": "Multiply: 13×4=52", "needs_review": false, "correct_answer": "52"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 15", "difficulty": "medium", "explanation": "Multiply: 2×15=30", "needs_review": false, "correct_answer": "30"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 12", "difficulty": "medium", "explanation": "Multiply: 15×12=180", "needs_review": false, "correct_answer": "180"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 18", "difficulty": "medium", "explanation": "Multiply: 4×18=72", "needs_review": false, "correct_answer": "72"}]
1186	390	Triangles Unit Test	\N	Complete this test on "Triangles Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.779051	2026-06-23 11:23:04.779051	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=8", "difficulty": "medium", "explanation": "A=l×w=10×8=80 sq units.", "needs_review": false, "correct_answer": "80"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["18", "80", "40", "36"], "question": "Find the perimeter of a rectangle: length=10, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+8)=2(18)=36", "needs_review": false, "correct_answer": "36"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 2", "difficulty": "medium", "explanation": "Multiply: 6×2=12", "needs_review": false, "correct_answer": "12"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 5", "difficulty": "medium", "explanation": "Multiply: 19×5=95", "needs_review": false, "correct_answer": "95"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 10", "difficulty": "medium", "explanation": "Multiply: 18×10=180", "needs_review": false, "correct_answer": "180"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 13", "difficulty": "medium", "explanation": "Multiply: 18×13=234", "needs_review": false, "correct_answer": "234"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 8", "difficulty": "medium", "explanation": "Multiply: 14×8=112", "needs_review": false, "correct_answer": "112"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 12", "difficulty": "medium", "explanation": "Multiply: 4×12=48", "needs_review": false, "correct_answer": "48"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 19", "difficulty": "medium", "explanation": "Multiply: 17×19=323", "needs_review": false, "correct_answer": "323"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 4", "difficulty": "medium", "explanation": "Multiply: 3×4=12", "needs_review": false, "correct_answer": "12"}]
785	393	Inscribed Angles Practice	\N	Complete this homework assignment on "Inscribed Angles Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.569264	2026-06-23 11:23:04.569264	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=12, width=8", "difficulty": "medium", "explanation": "A=l×w=12×8=96 sq units.", "needs_review": false, "correct_answer": "96"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["48", "20", "96", "40"], "question": "Find the perimeter of a rectangle: length=12, width=8", "difficulty": "medium", "explanation": "P=2(l+w)=2(12+8)=2(20)=40", "needs_review": false, "correct_answer": "40"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 13", "difficulty": "medium", "explanation": "Multiply: 8×13=104", "needs_review": false, "correct_answer": "104"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 16", "difficulty": "medium", "explanation": "Multiply: 3×16=48", "needs_review": false, "correct_answer": "48"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 17", "difficulty": "medium", "explanation": "Multiply: 4×17=68", "needs_review": false, "correct_answer": "68"}]
787	394	Area of Polygons Practice	\N	Complete this homework assignment on "Area of Polygons Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.570545	2026-06-23 11:23:04.570545	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=7, width=7", "difficulty": "medium", "explanation": "A=l×w=7×7=49 sq units.", "needs_review": false, "correct_answer": "49"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["49", "14", "28", "28"], "question": "Find the perimeter of a rectangle: length=7, width=7", "difficulty": "medium", "explanation": "P=2(l+w)=2(7+7)=2(14)=28", "needs_review": false, "correct_answer": "28"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 10", "difficulty": "medium", "explanation": "Multiply: 8×10=80", "needs_review": false, "correct_answer": "80"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 14", "difficulty": "medium", "explanation": "Multiply: 16×14=224", "needs_review": false, "correct_answer": "224"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 19", "difficulty": "medium", "explanation": "Multiply: 15×19=285", "needs_review": false, "correct_answer": "285"}]
1207	453	College-Prep Writing Unit Test	\N	Complete this test on "College-Prep Writing Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.789986	2026-06-23 11:23:04.789986	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"The Promise and Price of Progress\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"The Promise and Price of Progress.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
789	395	Volume of Solids Practice	\N	Complete this homework assignment on "Volume of Solids Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.571484	2026-06-23 11:23:04.571484	[{"id": 1, "type": "short_answer", "skill": "area", "question": "Find the area of a rectangle: length=10, width=5", "difficulty": "medium", "explanation": "A=l×w=10×5=50 sq units.", "needs_review": false, "correct_answer": "50"}, {"id": 2, "type": "multiple_choice", "skill": "perimeter", "options": ["30", "50", "15", "40"], "question": "Find the perimeter of a rectangle: length=10, width=5", "difficulty": "medium", "explanation": "P=2(l+w)=2(10+5)=2(15)=30", "needs_review": false, "correct_answer": "30"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 8", "difficulty": "medium", "explanation": "Multiply: 12×8=96", "needs_review": false, "correct_answer": "96"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 14", "difficulty": "medium", "explanation": "Multiply: 14×14=196", "needs_review": false, "correct_answer": "196"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 12", "difficulty": "medium", "explanation": "Multiply: 10×12=120", "needs_review": false, "correct_answer": "120"}]
818	409	Atoms and Elements Quiz	\N	Complete this quiz on "Atoms and Elements Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.586574	2026-06-23 11:23:04.586574	[{"id": 1, "type": "multiple_choice", "skill": "bonding", "options": ["Metallic", "Covalent", "Hydrogen", "Ionic"], "question": "What type of bond involves sharing electrons?", "difficulty": "medium", "explanation": "Covalent bonds form when nonmetal atoms share electron pairs.", "needs_review": false, "correct_answer": "Covalent"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atoms and Elements, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
822	411	Electron Configuration Quiz	\N	Complete this quiz on "Electron Configuration Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.588695	2026-06-23 11:23:04.588695	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Make an observation or ask a question", "Write a conclusion", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electron Configuration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1193	411	Atomic Structure Unit Test	\N	Complete this test on "Atomic Structure Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.782367	2026-06-23 11:23:04.782367	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electron Configuration, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
825	413	Covalent Bonds Practice	\N	Complete this homework assignment on "Covalent Bonds Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.590531	2026-06-23 11:23:04.590531	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Covalent Bonds, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
831	416	Types of Reactions Practice	\N	Complete this homework assignment on "Types of Reactions Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.593663	2026-06-23 11:23:04.593663	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Types of Reactions, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1196	420	Solutions and Acids Unit Test	\N	Complete this test on "Solutions and Acids Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.783782	2026-06-23 11:23:04.783782	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Share results", "Conduct the experiment", "Make an observation or ask a question", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about pH Scale, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
845	423	Creating a New Nation Practice	\N	Complete this homework assignment on "Creating a New Nation Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.601336	2026-06-23 11:23:04.601336	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A textbook about history", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Creating a New Nation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
846	423	Creating a New Nation Quiz	\N	Complete this quiz on "Creating a New Nation Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.601664	2026-06-23 11:23:04.601664	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Creating a New Nation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1197	423	Colonial and Revolutionary Era Unit Test	\N	Complete this test on "Colonial and Revolutionary Era Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.784221	2026-06-23 11:23:04.784221	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Creating a New Nation. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
849	425	Jacksonian Democracy Practice	\N	Complete this homework assignment on "Jacksonian Democracy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.60359	2026-06-23 11:23:04.60359	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A teacher lecture", "An original document from the time period studied", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Jacksonian Democracy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
851	426	Manifest Destiny Practice	\N	Complete this homework assignment on "Manifest Destiny Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.604615	2026-06-23 11:23:04.604615	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Manifest Destiny. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1198	426	Growth of the Nation Unit Test	\N	Complete this test on "Growth of the Nation Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.784695	2026-06-23 11:23:04.784695	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Manifest Destiny. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
853	427	Slavery and Abolition Practice	\N	Complete this homework assignment on "Slavery and Abolition Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.605839	2026-06-23 11:23:04.605839	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Slavery and Abolition. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
855	428	Civil War Practice	\N	Complete this homework assignment on "Civil War Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.606764	2026-06-23 11:23:04.606764	[{"id": 1, "type": "multiple_choice", "skill": "causes", "options": ["A trade dispute with France", "Religious conflict", "A desire to expand westward", "Taxation without representation"], "question": "What was a major cause of the American Revolution?", "difficulty": "medium", "explanation": "Colonists protested being taxed by Parliament without having elected representatives there.", "needs_review": false, "correct_answer": "Taxation without representation"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civil War. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1199	429	Civil War and Reconstruction Unit Test	\N	Complete this test on "Civil War and Reconstruction Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.785244	2026-06-23 11:23:04.785244	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A teacher lecture", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Reconstruction Era. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
863	432	Contemporary Issues Practice	\N	Complete this homework assignment on "Contemporary Issues Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.610989	2026-06-23 11:23:04.610989	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A textbook about history", "A movie about events", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Contemporary Issues. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
898	449	Modernism Quiz	\N	Complete this quiz on "Modernism Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.6292	2026-06-23 11:23:04.6292	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To provide step-by-step instructions", "To persuade the audience to think critically about the topic and take action"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Indifferent and bored", "Humorous and sarcastic"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
904	452	Analytical Writing Quiz	\N	Complete this quiz on "Analytical Writing Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.632162	2026-06-23 11:23:04.632162	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Angry and hostile", "Humorous and sarcastic", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
865	433	Polynomial Operations Practice	\N	Complete this homework assignment on "Polynomial Operations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.612628	2026-06-23 11:23:04.612628	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 95 + 78", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "173"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Commutative property", "Identity property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 16", "difficulty": "medium", "explanation": "Multiply: 20×16=320", "needs_review": false, "correct_answer": "320"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 9", "difficulty": "medium", "explanation": "Multiply: 9×9=81", "needs_review": false, "correct_answer": "81"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 9", "difficulty": "medium", "explanation": "Multiply: 16×9=144", "needs_review": false, "correct_answer": "144"}]
867	434	Factoring Polynomials Practice	\N	Complete this homework assignment on "Factoring Polynomials Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.61353	2026-06-23 11:23:04.61353	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 27 + 38", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "65"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 3", "difficulty": "medium", "explanation": "Multiply: 7×3=21", "needs_review": false, "correct_answer": "21"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 20", "difficulty": "medium", "explanation": "Multiply: 4×20=80", "needs_review": false, "correct_answer": "80"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 6", "difficulty": "medium", "explanation": "Multiply: 19×6=114", "needs_review": false, "correct_answer": "114"}]
868	434	Factoring Polynomials Quiz	\N	Complete this quiz on "Factoring Polynomials Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.613805	2026-06-23 11:23:04.613805	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 86 + 17", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "103"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Associative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 14", "difficulty": "medium", "explanation": "Multiply: 6×14=84", "needs_review": false, "correct_answer": "84"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 4", "difficulty": "medium", "explanation": "Multiply: 9×4=36", "needs_review": false, "correct_answer": "36"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 11", "difficulty": "medium", "explanation": "Multiply: 10×11=110", "needs_review": false, "correct_answer": "110"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 19", "difficulty": "medium", "explanation": "Multiply: 3×19=57", "needs_review": false, "correct_answer": "57"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 12", "difficulty": "medium", "explanation": "Multiply: 11×12=132", "needs_review": false, "correct_answer": "132"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 6", "difficulty": "medium", "explanation": "Multiply: 2×6=12", "needs_review": false, "correct_answer": "12"}]
869	435	Polynomial Division Practice	\N	Complete this homework assignment on "Polynomial Division Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.614407	2026-06-23 11:23:04.614407	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 82 + 99", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "181"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Distributive property", "Commutative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 20", "difficulty": "medium", "explanation": "Multiply: 4×20=80", "needs_review": false, "correct_answer": "80"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 18", "difficulty": "medium", "explanation": "Multiply: 5×18=90", "needs_review": false, "correct_answer": "90"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}]
1204	444	Sequences and Series Unit Test	\N	Complete this test on "Sequences and Series Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.788388	2026-06-23 11:23:04.788388	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 47 + 89", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "136"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 13", "difficulty": "medium", "explanation": "Multiply: 14×13=182", "needs_review": false, "correct_answer": "182"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 12", "difficulty": "medium", "explanation": "Multiply: 17×12=204", "needs_review": false, "correct_answer": "204"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 10", "difficulty": "medium", "explanation": "Multiply: 19×10=190", "needs_review": false, "correct_answer": "190"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 7", "difficulty": "medium", "explanation": "Multiply: 6×7=42", "needs_review": false, "correct_answer": "42"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 5", "difficulty": "medium", "explanation": "Multiply: 15×5=75", "needs_review": false, "correct_answer": "75"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 4", "difficulty": "medium", "explanation": "Multiply: 4×4=16", "needs_review": false, "correct_answer": "16"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 20", "difficulty": "medium", "explanation": "Multiply: 14×20=280", "needs_review": false, "correct_answer": "280"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 15", "difficulty": "medium", "explanation": "Multiply: 10×15=150", "needs_review": false, "correct_answer": "150"}]
873	437	Radical Equations Practice	\N	Complete this homework assignment on "Radical Equations Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.616365	2026-06-23 11:23:04.616365	[{"id": 1, "type": "short_answer", "skill": "equations", "question": "Solve: 3x + 7 = 22", "difficulty": "medium", "explanation": "Subtract 7: 3x=15. Divide by 3: x=5. Check: 3(5)+7=22 ✓", "needs_review": false, "correct_answer": "x = 5"}, {"id": 2, "type": "multiple_choice", "skill": "equations", "options": ["x = 4", "x = 8", "x = 32", "x = 14"], "question": "Solve: 2x = 16", "difficulty": "easy", "explanation": "Divide both sides by 2: x=16/2=8.", "needs_review": false, "correct_answer": "x = 8"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 16", "difficulty": "medium", "explanation": "Multiply: 6×16=96", "needs_review": false, "correct_answer": "96"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 13", "difficulty": "medium", "explanation": "Multiply: 17×13=221", "needs_review": false, "correct_answer": "221"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 18", "difficulty": "medium", "explanation": "Multiply: 12×18=216", "needs_review": false, "correct_answer": "216"}]
878	439	Exponential Functions Quiz	\N	Complete this quiz on "Exponential Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.618688	2026-06-23 11:23:04.618688	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 + 52", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "65"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 19", "difficulty": "medium", "explanation": "Multiply: 11×19=209", "needs_review": false, "correct_answer": "209"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 13", "difficulty": "medium", "explanation": "Multiply: 4×13=52", "needs_review": false, "correct_answer": "52"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 13", "difficulty": "medium", "explanation": "Multiply: 9×13=117", "needs_review": false, "correct_answer": "117"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 10", "difficulty": "medium", "explanation": "Multiply: 5×10=50", "needs_review": false, "correct_answer": "50"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 17", "difficulty": "medium", "explanation": "Multiply: 14×17=238", "needs_review": false, "correct_answer": "238"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 13", "difficulty": "medium", "explanation": "Multiply: 20×13=260", "needs_review": false, "correct_answer": "260"}]
881	441	Exponential Growth and Decay Practice	\N	Complete this homework assignment on "Exponential Growth and Decay Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.620242	2026-06-23 11:23:04.620242	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 35 + 83", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "118"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Identity property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 16", "difficulty": "medium", "explanation": "Multiply: 10×16=160", "needs_review": false, "correct_answer": "160"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 6", "difficulty": "medium", "explanation": "Multiply: 20×6=120", "needs_review": false, "correct_answer": "120"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 10", "difficulty": "medium", "explanation": "Multiply: 20×10=200", "needs_review": false, "correct_answer": "200"}]
883	442	Arithmetic Sequences Practice	\N	Complete this homework assignment on "Arithmetic Sequences Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.621584	2026-06-23 11:23:04.621584	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 44 + 48", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "92"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 11", "difficulty": "medium", "explanation": "Multiply: 11×11=121", "needs_review": false, "correct_answer": "121"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 8", "difficulty": "medium", "explanation": "Multiply: 14×8=112", "needs_review": false, "correct_answer": "112"}]
884	442	Arithmetic Sequences Quiz	\N	Complete this quiz on "Arithmetic Sequences Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.621917	2026-06-23 11:23:04.621917	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 44 + 58", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "102"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Commutative property", "Associative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 16", "difficulty": "medium", "explanation": "Multiply: 19×16=304", "needs_review": false, "correct_answer": "304"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 13", "difficulty": "medium", "explanation": "Multiply: 13×13=169", "needs_review": false, "correct_answer": "169"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 5", "difficulty": "medium", "explanation": "Multiply: 11×5=55", "needs_review": false, "correct_answer": "55"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 17 × 13", "difficulty": "medium", "explanation": "Multiply: 17×13=221", "needs_review": false, "correct_answer": "221"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 11", "difficulty": "medium", "explanation": "Multiply: 19×11=209", "needs_review": false, "correct_answer": "209"}]
917	459	Work Energy and Power Practice	\N	Complete this homework assignment on "Work Energy and Power Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.639551	2026-06-23 11:23:04.639551	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Conduct the experiment", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Work Energy and Power, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1209	459	Mechanics Unit Test	\N	Complete this test on "Mechanics Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.790922	2026-06-23 11:23:04.790922	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Write a conclusion", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Work Energy and Power, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
920	460	Wave Properties Quiz	\N	Complete this quiz on "Wave Properties Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.641012	2026-06-23 11:23:04.641012	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Wave Properties, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1210	462	Waves and Sound Unit Test	\N	Complete this test on "Waves and Sound Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.791431	2026-06-23 11:23:04.791431	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Conduct the experiment", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Light and Optics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
926	463	Electric Charge Quiz	\N	Complete this quiz on "Electric Charge Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.643905	2026-06-23 11:23:04.643905	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Share results", "Write a conclusion", "Make an observation or ask a question"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electric Charge, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
925	463	Electric Charge Practice	\N	Complete this homework assignment on "Electric Charge Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.643631	2026-06-23 11:23:04.643631	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Make an observation or ask a question", "Share results", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Electric Charge, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1211	465	Electricity Unit Test	\N	Complete this test on "Electricity Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.791959	2026-06-23 11:23:04.791959	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Conduct the experiment", "Write a conclusion", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Magnetism, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
933	467	Quantum Mechanics Intro Practice	\N	Complete this homework assignment on "Quantum Mechanics Intro Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.647535	2026-06-23 11:23:04.647535	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Quantum Mechanics Intro, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
936	468	Relativity Intro Quiz	\N	Complete this quiz on "Relativity Intro Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.648679	2026-06-23 11:23:04.648679	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Write a conclusion", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Relativity Intro, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
937	469	Constitution and Federalism Practice	\N	Complete this homework assignment on "Constitution and Federalism Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.649868	2026-06-23 11:23:04.649868	[{"id": 1, "type": "multiple_choice", "skill": "government", "options": ["Legislative (Congress)", "Military", "Executive (President)", "Judicial (Supreme Court)"], "question": "Which branch of government makes laws?", "difficulty": "medium", "explanation": "Congress (Senate + House) is the legislative branch that writes and passes laws.", "needs_review": false, "correct_answer": "Legislative (Congress)"}, {"id": 2, "type": "multiple_choice", "skill": "constitution", "options": ["The Articles", "The Federalist Papers", "The Preamble", "The Bill of Rights"], "question": "What are the first ten amendments called?", "difficulty": "easy", "explanation": "The Bill of Rights protects individual freedoms.", "needs_review": false, "correct_answer": "The Bill of Rights"}, {"id": 3, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Constitution and Federalism. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
941	471	The Presidency and Courts Practice	\N	Complete this homework assignment on "The Presidency and Courts Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.65166	2026-06-23 11:23:04.65166	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to The Presidency and Courts. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1213	471	US Government Unit Test	\N	Complete this test on "US Government Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.792885	2026-06-23 11:23:04.792885	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to The Presidency and Courts. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
944	472	Bill of Rights Quiz	\N	Complete this quiz on "Bill of Rights Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.653291	2026-06-23 11:23:04.653291	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Bill of Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
946	473	Due Process Quiz	\N	Complete this quiz on "Due Process Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.654286	2026-06-23 11:23:04.654286	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Due Process. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
948	474	Equal Protection Quiz	\N	Complete this quiz on "Equal Protection Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.655294	2026-06-23 11:23:04.655294	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A movie about events", "A textbook about history", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Equal Protection. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
951	476	Market Structures Practice	\N	Complete this homework assignment on "Market Structures Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.657066	2026-06-23 11:23:04.657066	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Market Structures. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
952	476	Market Structures Quiz	\N	Complete this quiz on "Market Structures Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.657377	2026-06-23 11:23:04.657377	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Market Structures. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
957	479	Banking and Credit Practice	\N	Complete this homework assignment on "Banking and Credit Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.660219	2026-06-23 11:23:04.660219	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A teacher lecture", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Banking and Credit. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
958	479	Banking and Credit Quiz	\N	Complete this quiz on "Banking and Credit Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.66049	2026-06-23 11:23:04.66049	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Banking and Credit. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
960	480	Investing Basics Quiz	\N	Complete this quiz on "Investing Basics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.661467	2026-06-23 11:23:04.661467	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "A movie about events", "A textbook about history", "An original document from the time period studied"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Investing Basics. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
985	493	Anglo-Saxon and Medieval Practice	\N	Complete this homework assignment on "Anglo-Saxon and Medieval Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.674952	2026-06-23 11:23:04.674952	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["The author uses no rhetorical strategies", "Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
990	495	Romantic and Victorian Era Quiz	\N	Complete this quiz on "Romantic and Victorian Era Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.67761	2026-06-23 11:23:04.67761	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To entertain with a lighthearted story", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Thoughtful and persuasive", "Humorous and sarcastic", "Indifferent and bored", "Angry and hostile"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "The passage only uses bullet points", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
1221	495	British Literature Unit Test	\N	Complete this test on "British Literature Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.79696	2026-06-23 11:23:04.79696	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"November Light\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Logos — logical reasoning and evidence", "Only ethos — claiming authority without supporting it", "Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Angry and hostile", "Thoughtful and persuasive", "Indifferent and bored"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"November Light.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "There is no clear structure"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 9, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 10, "type": "multiple_choice", "skill": "text structure", "options": ["The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points", "There is no clear structure", "The random structure confuses the reader intentionally"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 11, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 12, "type": "multiple_choice", "skill": "text structure", "options": ["The random structure confuses the reader intentionally", "There is no clear structure", "The passage only uses bullet points", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
992	496	Modernist Writers Quiz	\N	Complete this quiz on "Modernist Writers Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.678824	2026-06-23 11:23:04.678824	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To provide step-by-step instructions", "To entertain with a lighthearted story", "To persuade the audience to think critically about the topic and take action", "To describe a personal vacation experience"], "question": "What is the author's primary purpose in \\"Letter from the Western Frontier, 1849\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "Logos — logical reasoning and evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Angry and hostile", "Indifferent and bored", "Humorous and sarcastic", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"Letter from the Western Frontier, 1849.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 6, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The random structure confuses the reader intentionally", "The organization builds the argument logically from evidence to conclusion", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 7, "type": "multiple_choice", "skill": "text structure", "options": ["The passage only uses bullet points", "The random structure confuses the reader intentionally", "There is no clear structure", "The organization builds the argument logically from evidence to conclusion"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}, {"id": 8, "type": "multiple_choice", "skill": "text structure", "options": ["There is no clear structure", "The organization builds the argument logically from evidence to conclusion", "The random structure confuses the reader intentionally", "The passage only uses bullet points"], "question": "How does the structure of the passage contribute to its effectiveness?", "difficulty": "hard", "explanation": "Authors choose structures that support their purpose: chronological, cause-effect, problem-solution, etc.", "needs_review": false, "correct_answer": "The organization builds the argument logically from evidence to conclusion"}]
997	499	Advanced Composition Practice	\N	Complete this homework assignment on "Advanced Composition Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.681401	2026-06-23 11:23:04.681401	[{"id": 1, "type": "multiple_choice", "skill": "author purpose", "options": ["To entertain with a lighthearted story", "To describe a personal vacation experience", "To persuade the audience to think critically about the topic and take action", "To provide step-by-step instructions"], "question": "What is the author's primary purpose in \\"On the Duty of Citizens in a Democracy\\"?", "difficulty": "medium", "explanation": "Author's purpose is the reason the author wrote the text: to inform, persuade, entertain, or express.", "needs_review": false, "correct_answer": "To persuade the audience to think critically about the topic and take action"}, {"id": 2, "type": "multiple_choice", "skill": "rhetoric", "options": ["Only pathos — emotional appeal without any evidence", "The author uses no rhetorical strategies", "Only ethos — claiming authority without supporting it", "Logos — logical reasoning and evidence"], "question": "Which rhetorical appeal does the author use most effectively in this passage?", "difficulty": "hard", "explanation": "Rhetorical appeals include ethos (credibility), pathos (emotion), and logos (logic). Strong arguments blend multiple appeals.", "needs_review": false, "correct_answer": "Logos — logical reasoning and evidence"}, {"id": 3, "type": "multiple_choice", "skill": "tone", "options": ["Humorous and sarcastic", "Indifferent and bored", "Angry and hostile", "Thoughtful and persuasive"], "question": "Which of the following best describes the tone of the passage?", "difficulty": "medium", "explanation": "Tone is the author's attitude toward the subject, revealed through word choice and style.", "needs_review": false, "correct_answer": "Thoughtful and persuasive"}, {"id": 4, "type": "short_answer", "skill": "literary devices", "question": "Identify one example of figurative language or rhetorical technique in the passage. Name the device and explain its effect on the reader.", "difficulty": "hard", "explanation": "Look for metaphor, simile, parallelism, rhetorical questions, repetition, or imagery.", "needs_review": true, "correct_answer": null}, {"id": 5, "type": "written_response", "skill": "literary analysis", "question": "Write a well-developed analytical paragraph responding to \\"On the Duty of Citizens in a Democracy.\\" Your response should: (1) state a clear claim about the author's central argument or theme, (2) include at least two direct references to the text, (3) explain how the evidence supports your claim, and (4) consider the effectiveness of the author's approach. Use formal academic language.", "difficulty": "hard", "explanation": "", "needs_review": true, "correct_answer": null}]
962	481	Function Analysis Quiz	\N	Complete this quiz on "Function Analysis Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.663125	2026-06-23 11:23:04.663125	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 28 + 60", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "88"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 14", "difficulty": "medium", "explanation": "Multiply: 3×14=42", "needs_review": false, "correct_answer": "42"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 4", "difficulty": "medium", "explanation": "Multiply: 10×4=40", "needs_review": false, "correct_answer": "40"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 12", "difficulty": "medium", "explanation": "Multiply: 11×12=132", "needs_review": false, "correct_answer": "132"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 11", "difficulty": "medium", "explanation": "Multiply: 2×11=22", "needs_review": false, "correct_answer": "22"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 20 × 9", "difficulty": "medium", "explanation": "Multiply: 20×9=180", "needs_review": false, "correct_answer": "180"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 9", "difficulty": "medium", "explanation": "Multiply: 2×9=18", "needs_review": false, "correct_answer": "18"}]
966	483	Inverse Functions Quiz	\N	Complete this quiz on "Inverse Functions Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.664834	2026-06-23 11:23:04.664834	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 41 + 73", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "114"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Commutative property", "Distributive property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 8", "difficulty": "medium", "explanation": "Multiply: 5×8=40", "needs_review": false, "correct_answer": "40"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 20", "difficulty": "medium", "explanation": "Multiply: 3×20=60", "needs_review": false, "correct_answer": "60"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 17", "difficulty": "medium", "explanation": "Multiply: 10×17=170", "needs_review": false, "correct_answer": "170"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 18", "difficulty": "medium", "explanation": "Multiply: 11×18=198", "needs_review": false, "correct_answer": "198"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 9", "difficulty": "medium", "explanation": "Multiply: 4×9=36", "needs_review": false, "correct_answer": "36"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 20", "difficulty": "medium", "explanation": "Multiply: 10×20=200", "needs_review": false, "correct_answer": "200"}]
1217	483	Functions and Graphs Unit Test	\N	Complete this test on "Functions and Graphs Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.794747	2026-06-23 11:23:04.794747	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 67 + 45", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "112"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Associative property", "Commutative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 11", "difficulty": "medium", "explanation": "Multiply: 13×11=143", "needs_review": false, "correct_answer": "143"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 8", "difficulty": "medium", "explanation": "Multiply: 16×8=128", "needs_review": false, "correct_answer": "128"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 17", "difficulty": "medium", "explanation": "Multiply: 13×17=221", "needs_review": false, "correct_answer": "221"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 2", "difficulty": "medium", "explanation": "Multiply: 2×2=4", "needs_review": false, "correct_answer": "4"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 6", "difficulty": "medium", "explanation": "Multiply: 4×6=24", "needs_review": false, "correct_answer": "24"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 14", "difficulty": "medium", "explanation": "Multiply: 5×14=70", "needs_review": false, "correct_answer": "70"}, {"id": 9, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 9", "difficulty": "medium", "explanation": "Multiply: 14×9=126", "needs_review": false, "correct_answer": "126"}, {"id": 10, "type": "short_answer", "skill": "computation", "question": "Calculate: 12 × 19", "difficulty": "medium", "explanation": "Multiply: 12×19=228", "needs_review": false, "correct_answer": "228"}, {"id": 11, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 3", "difficulty": "medium", "explanation": "Multiply: 5×3=15", "needs_review": false, "correct_answer": "15"}, {"id": 12, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 12", "difficulty": "medium", "explanation": "Multiply: 8×12=96", "needs_review": false, "correct_answer": "96"}]
974	487	Introduction to Limits Quiz	\N	Complete this quiz on "Introduction to Limits Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.668882	2026-06-23 11:23:04.668882	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 60 + 99", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "159"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Distributive property", "Associative property", "Identity property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 9 × 15", "difficulty": "medium", "explanation": "Multiply: 9×15=135", "needs_review": false, "correct_answer": "135"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 3 × 9", "difficulty": "medium", "explanation": "Multiply: 3×9=27", "needs_review": false, "correct_answer": "27"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 4", "difficulty": "medium", "explanation": "Multiply: 13×4=52", "needs_review": false, "correct_answer": "52"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 18 × 14", "difficulty": "medium", "explanation": "Multiply: 18×14=252", "needs_review": false, "correct_answer": "252"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 8 × 2", "difficulty": "medium", "explanation": "Multiply: 8×2=16", "needs_review": false, "correct_answer": "16"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 11 × 7", "difficulty": "medium", "explanation": "Multiply: 11×7=77", "needs_review": false, "correct_answer": "77"}]
975	488	Evaluating Limits Practice	\N	Complete this homework assignment on "Evaluating Limits Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.66943	2026-06-23 11:23:04.66943	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 88 + 74", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "162"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Identity property", "Distributive property", "Associative property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 4", "difficulty": "medium", "explanation": "Multiply: 15×4=60", "needs_review": false, "correct_answer": "60"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 13 × 5", "difficulty": "medium", "explanation": "Multiply: 13×5=65", "needs_review": false, "correct_answer": "65"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 7 × 19", "difficulty": "medium", "explanation": "Multiply: 7×19=133", "needs_review": false, "correct_answer": "133"}]
977	489	Continuity Practice	\N	Complete this homework assignment on "Continuity Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.670233	2026-06-23 11:23:04.670233	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 79 + 71", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "150"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Commutative property", "Identity property", "Associative property", "Distributive property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 8", "difficulty": "medium", "explanation": "Multiply: 16×8=128", "needs_review": false, "correct_answer": "128"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 14 × 6", "difficulty": "medium", "explanation": "Multiply: 14×6=84", "needs_review": false, "correct_answer": "84"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 20", "difficulty": "medium", "explanation": "Multiply: 4×20=80", "needs_review": false, "correct_answer": "80"}]
980	490	Derivatives Concept Quiz	\N	Complete this quiz on "Derivatives Concept Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.671875	2026-06-23 11:23:04.671875	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 58 + 85", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "143"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Distributive property", "Associative property", "Identity property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 5 × 13", "difficulty": "medium", "explanation": "Multiply: 5×13=65", "needs_review": false, "correct_answer": "65"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 6 × 5", "difficulty": "medium", "explanation": "Multiply: 6×5=30", "needs_review": false, "correct_answer": "30"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 19", "difficulty": "medium", "explanation": "Multiply: 19×19=361", "needs_review": false, "correct_answer": "361"}, {"id": 6, "type": "short_answer", "skill": "computation", "question": "Calculate: 15 × 10", "difficulty": "medium", "explanation": "Multiply: 15×10=150", "needs_review": false, "correct_answer": "150"}, {"id": 7, "type": "short_answer", "skill": "computation", "question": "Calculate: 16 × 2", "difficulty": "medium", "explanation": "Multiply: 16×2=32", "needs_review": false, "correct_answer": "32"}, {"id": 8, "type": "short_answer", "skill": "computation", "question": "Calculate: 4 × 3", "difficulty": "medium", "explanation": "Multiply: 4×3=12", "needs_review": false, "correct_answer": "12"}]
983	492	Applications of Derivatives Practice	\N	Complete this homework assignment on "Applications of Derivatives Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.673444	2026-06-23 11:23:04.673444	[{"id": 1, "type": "short_answer", "skill": "computation", "question": "Calculate: 81 + 18", "difficulty": "medium", "explanation": "Add systematically.", "needs_review": false, "correct_answer": "99"}, {"id": 2, "type": "multiple_choice", "skill": "properties", "options": ["Associative property", "Identity property", "Distributive property", "Commutative property"], "question": "Which property states a+0=a?", "difficulty": "easy", "explanation": "The identity property of addition states that adding 0 to any number gives that number.", "needs_review": false, "correct_answer": "Identity property"}, {"id": 3, "type": "short_answer", "skill": "computation", "question": "Calculate: 19 × 8", "difficulty": "medium", "explanation": "Multiply: 19×8=152", "needs_review": false, "correct_answer": "152"}, {"id": 4, "type": "short_answer", "skill": "computation", "question": "Calculate: 2 × 3", "difficulty": "medium", "explanation": "Multiply: 2×3=6", "needs_review": false, "correct_answer": "6"}, {"id": 5, "type": "short_answer", "skill": "computation", "question": "Calculate: 10 × 18", "difficulty": "medium", "explanation": "Multiply: 10×18=180", "needs_review": false, "correct_answer": "180"}]
1012	506	Plate Tectonics Quiz	\N	Complete this quiz on "Plate Tectonics Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.688944	2026-06-23 11:23:04.688944	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Conduct the experiment", "Make an observation or ask a question", "Share results"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Plate Tectonics, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1225	507	Geology Unit Test	\N	Complete this test on "Geology Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.798866	2026-06-23 11:23:04.798866	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Conduct the experiment", "Share results", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Geologic Time, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1021	511	Atmosphere Practice	\N	Complete this homework assignment on "Atmosphere Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.693877	2026-06-23 11:23:04.693877	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Make an observation or ask a question", "Share results", "Conduct the experiment", "Write a conclusion"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Atmosphere, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1024	512	Weather Systems Quiz	\N	Complete this quiz on "Weather Systems Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.695099	2026-06-23 11:23:04.695099	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Collection", "Precipitation", "Condensation", "Evaporation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Weather Systems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1023	512	Weather Systems Practice	\N	Complete this homework assignment on "Weather Systems Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.694809	2026-06-23 11:23:04.694809	[{"id": 1, "type": "multiple_choice", "skill": "water cycle", "options": ["Evaporation", "Collection", "Precipitation", "Condensation"], "question": "What is the process of liquid water becoming water vapor called?", "difficulty": "easy", "explanation": "Evaporation is the change from liquid to gas, driven by heat.", "needs_review": false, "correct_answer": "Evaporation"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Weather Systems, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1027	514	Stars and Stellar Evolution Practice	\N	Complete this homework assignment on "Stars and Stellar Evolution Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.696867	2026-06-23 11:23:04.696867	[{"id": 1, "type": "multiple_choice", "skill": "scientific method", "options": ["Write a conclusion", "Share results", "Make an observation or ask a question", "Conduct the experiment"], "question": "What is the first step of the scientific method?", "difficulty": "easy", "explanation": "The scientific method begins with observation and questioning.", "needs_review": false, "correct_answer": "Make an observation or ask a question"}, {"id": 2, "type": "written_response", "skill": "application", "question": "Based on what you learned about Stars and Stellar Evolution, describe one real-world application. Explain the science behind it in at least 3-4 sentences.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "scientific method", "question": "A hypothesis must be testable and falsifiable.", "difficulty": "easy", "explanation": "Scientific hypotheses must be testable through experiments or observations.", "needs_review": false, "correct_answer": "True"}]
1034	517	Globalization Quiz	\N	Complete this quiz on "Globalization Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.700457	2026-06-23 11:23:04.700457	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A teacher lecture", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Globalization. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1033	517	Globalization Practice	\N	Complete this homework assignment on "Globalization Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.700156	2026-06-23 11:23:04.700156	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Globalization. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1229	519	Global Issues Unit Test	\N	Complete this test on "Global Issues Unit Test." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this test.	\N	15:00:00	test	100	test	t	3	70	t	1	2026-06-23 11:23:04.800795	2026-06-23 11:23:04.800795	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Human Rights. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 9, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 10, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 11, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 12, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1039	520	World Powers Practice	\N	Complete this homework assignment on "World Powers Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.703081	2026-06-23 11:23:04.703081	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A movie about events", "A textbook about history", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to World Powers. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1045	523	Culture and Society Practice	\N	Complete this homework assignment on "Culture and Society Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.706254	2026-06-23 11:23:04.706254	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "A movie about events", "An original document from the time period studied", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Culture and Society. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1050	525	Social Change Quiz	\N	Complete this quiz on "Social Change Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.708394	2026-06-23 11:23:04.708394	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A textbook about history", "An original document from the time period studied", "A teacher lecture", "A movie about events"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Social Change. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1053	527	Media Literacy Practice	\N	Complete this homework assignment on "Media Literacy Practice." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this homework assignment.	\N	15:00:00	homework	100	homework	t	3	70	t	1	2026-06-23 11:23:04.710181	2026-06-23 11:23:04.710181	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["A teacher lecture", "An original document from the time period studied", "A movie about events", "A textbook about history"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Media Literacy. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
1056	528	Civic Engagement Quiz	\N	Complete this quiz on "Civic Engagement Quiz." Read each question carefully and select or write your best answer. For multiple choice and true/false questions, select one answer. For written response questions, provide a thoughtful and complete answer. You may refer to your lesson materials while completing this quiz.	\N	15:00:00	quiz	100	quiz	t	3	70	t	1	2026-06-23 11:23:04.711404	2026-06-23 11:23:04.711404	[{"id": 1, "type": "multiple_choice", "skill": "sources", "options": ["An original document from the time period studied", "A textbook about history", "A movie about events", "A teacher lecture"], "question": "What is a primary source?", "difficulty": "easy", "explanation": "Primary sources are original artifacts or documents from the period being studied.", "needs_review": false, "correct_answer": "An original document from the time period studied"}, {"id": 2, "type": "written_response", "skill": "historical analysis", "question": "Analyze the causes and effects related to Civic Engagement. Write a paragraph that includes at least two specific historical details and explains their significance.", "difficulty": "medium", "explanation": "", "needs_review": true, "correct_answer": null}, {"id": 3, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 4, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 5, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 6, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 7, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}, {"id": 8, "type": "true_false", "skill": "perspectives", "question": "Understanding multiple perspectives is important when studying history.", "difficulty": "easy", "explanation": "Different groups experienced events differently. Multiple perspectives give a more complete picture.", "needs_review": false, "correct_answer": "True"}]
\.


--
-- Data for Name: attendance; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.attendance (id, student_id, attendance_date, status, check_in_time, check_out_time, total_hours, notes, recorded_by, created_at) FROM stdin;
\.


--
-- Data for Name: calendar_events; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.calendar_events (id, event_date, event_end_date, event_type, event_name, is_school_day, school_year, notes, created_at) FROM stdin;
1	2026-09-07	\N	holiday	Labor Day	f	2026-2027	\N	2026-06-23 09:51:03.891491
2	2026-10-30	\N	holiday	Nevada Day (Observed)	f	2026-2027	\N	2026-06-23 09:51:03.891491
3	2026-11-11	\N	holiday	Veterans Day	f	2026-2027	\N	2026-06-23 09:51:03.891491
4	2026-11-26	2026-11-27	break	Thanksgiving Break	f	2026-2027	\N	2026-06-23 09:51:03.891491
5	2026-12-21	2027-01-01	break	Winter Break	f	2026-2027	\N	2026-06-23 09:51:03.891491
6	2027-01-18	\N	holiday	Martin Luther King Jr. Day	f	2026-2027	\N	2026-06-23 09:51:03.891491
7	2027-02-15	\N	holiday	Presidents Day	f	2026-2027	\N	2026-06-23 09:51:03.891491
8	2027-03-29	2027-04-02	break	Spring Break	f	2026-2027	\N	2026-06-23 09:51:03.891491
9	2027-05-31	\N	holiday	Memorial Day	f	2026-2027	\N	2026-06-23 09:51:03.891491
10	2027-06-01	2027-08-11	break	Summer Break	f	2026-2027	\N	2026-06-23 09:51:03.891491
\.


--
-- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.comments (id, student_id, assignment_id, course_id, user_id, comment_text, comment_type, is_private, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: courses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.courses (id, name, grade_level, subject, course_type, description, credit_hours, is_active, created_by, created_at, updated_at) FROM stdin;
1	Grade 1 Mathematics	1	Math	core	Counting, addition, subtraction, place value, basic geometry	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
2	Grade 1 Language Arts	1	Language Arts	core	Phonics, sight words, reading comprehension, handwriting, basic writing	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
3	Grade 1 Science	1	Science	core	Life science, weather, plants, animals, basic earth science	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
4	Grade 1 Social Studies	1	Social Studies	core	Community helpers, maps, families, American symbols	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
5	Grade 2 Mathematics	2	Math	core	Addition and subtraction fluency, place value, measurement, time, money	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
6	Grade 2 Language Arts	2	Language Arts	core	Reading fluency, comprehension strategies, writing sentences and paragraphs	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
7	Grade 2 Science	2	Science	core	Matter, energy, habitats, life cycles, earth materials	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
8	Grade 2 Social Studies	2	Social Studies	core	Geography basics, history, citizenship, economics	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
9	Grade 3 Mathematics	3	Math	core	Multiplication, division, fractions, area, perimeter	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
10	Grade 3 Language Arts	3	Language Arts	core	Reading comprehension, writing paragraphs, grammar, vocabulary	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
11	Grade 3 Science	3	Science	core	Forces, motion, ecosystems, weather patterns, rocks and minerals	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
12	Grade 3 Social Studies	3	Social Studies	core	Communities, government, geography, economics, history	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
13	Grade 4 Mathematics	4	Math	core	Multi-digit multiplication, long division, fractions, decimals	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
14	Grade 4 Language Arts	4	Language Arts	core	Reading analysis, essay writing, research skills, grammar	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
15	Grade 4 Science	4	Science	core	Energy, waves, Earth structures, fossils, plant and animal adaptations	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
16	Grade 4 Social Studies	4	Social Studies	core	State history, regions of US, Native Americans, exploration	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
17	Grade 5 Mathematics	5	Math	core	Decimals, fractions operations, volume, coordinate planes, order of operations	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
18	Grade 5 Language Arts	5	Language Arts	core	Literature analysis, persuasive writing, research papers, advanced grammar	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
19	Grade 5 Science	5	Science	core	Matter and its interactions, ecosystems, Earth systems, space science	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
20	Grade 5 Social Studies	5	Social Studies	core	American history, colonization, Revolution, Constitution, westward expansion	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
21	Grade 6 Mathematics	6	Math	core	Ratios, proportions, integers, expressions, equations, statistics	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
22	Grade 6 Language Arts	6	Language Arts	core	Literary analysis, argumentative writing, research, speaking and listening	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
23	Grade 6 Science	6	Science	core	Cells, body systems, ecology, weather and climate, engineering design	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
24	Grade 6 Social Studies	6	Social Studies	core	Ancient civilizations, world geography, cultures	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
25	Grade 7 Mathematics	7	Math	core	Pre-algebra, proportional relationships, geometry, probability, statistics	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
26	Grade 7 Language Arts	7	Language Arts	core	Advanced literature, narrative and expository writing, vocabulary development	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
27	Grade 7 Science	7	Science	core	Life science, genetics, evolution, body systems, ecology	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
28	Grade 7 Social Studies	7	Social Studies	core	World history, medieval to modern era, geography, civics	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
29	Grade 8 Mathematics	8	Math	core	Algebra foundations, linear equations, functions, geometry, Pythagorean theorem	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
30	Grade 8 Language Arts	8	Language Arts	core	Critical reading, research papers, persuasive essays, literary criticism	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
31	Grade 8 Science	8	Science	core	Physical science, chemistry basics, physics, Earth and space science	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
32	Grade 8 Social Studies	8	Social Studies	core	US history, Constitution, Civil War, industrialization, civil rights	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
33	Algebra I	9	Math	core	Linear equations, inequalities, polynomials, quadratics, systems of equations	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
34	English 9	9	Language Arts	core	Literature survey, analytical writing, grammar, vocabulary, public speaking	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
35	Biology	9	Science	core	Cell biology, genetics, evolution, ecology, anatomy	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
36	World History	9	Social Studies	core	Ancient civilizations through modern era, world cultures, geography	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
37	Geometry	10	Math	core	Proofs, triangles, circles, area, volume, transformations, trigonometry intro	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
38	English 10	10	Language Arts	core	World literature, research writing, rhetoric, critical analysis	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
39	Chemistry	10	Science	core	Atomic structure, periodic table, bonding, reactions, stoichiometry	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
40	US History	10	Social Studies	core	Colonial era through modern America, government, economics	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
41	Algebra II	11	Math	core	Advanced algebra, polynomials, rational expressions, logarithms, sequences	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
42	English 11 - American Literature	11	Language Arts	core	American literature, college-prep writing, SAT/ACT prep	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
43	Physics	11	Science	core	Mechanics, energy, waves, electricity, magnetism	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
44	US Government and Economics	11	Social Studies	core	Government structure, Constitution, economics, personal finance	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
45	Pre-Calculus	12	Math	core	Advanced functions, trigonometry, limits, intro to calculus	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
46	English 12 - British Literature	12	Language Arts	core	British literature, college essays, advanced composition	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
47	Earth and Space Science	12	Science	core	Geology, oceanography, meteorology, astronomy	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
48	Contemporary World Issues	12	Social Studies	core	Current events, global issues, international relations, sociology	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
49	Music Fundamentals (K-5)	1	Music	elective	Rhythm, melody, singing, basic instruments, music appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
50	Music Fundamentals (K-5)	2	Music	elective	Rhythm, melody, singing, basic instruments, music appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
51	Music Fundamentals (K-5)	3	Music	elective	Rhythm, melody, singing, basic instruments, music appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
52	Music Fundamentals (K-5)	4	Music	elective	Rhythm, melody, singing, basic instruments, music appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
53	Music Fundamentals (K-5)	5	Music	elective	Rhythm, melody, singing, basic instruments, music appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
54	Music Appreciation (6-8)	6	Music	elective	Music history, genres, theory basics, instrument exploration	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
55	Music Appreciation (6-8)	7	Music	elective	Music history, genres, theory basics, instrument exploration	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
56	Music Appreciation (6-8)	8	Music	elective	Music history, genres, theory basics, instrument exploration	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
57	Music Theory (9-12)	9	Music	elective	Music theory, composition, history, performance	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
58	Music Theory (9-12)	10	Music	elective	Music theory, composition, history, performance	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
59	Music Theory (9-12)	11	Music	elective	Music theory, composition, history, performance	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
60	Music Theory (9-12)	12	Music	elective	Music theory, composition, history, performance	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
61	French I	9	French	elective	Basic French vocabulary, grammar, conversation, culture	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
62	French I	10	French	elective	Basic French vocabulary, grammar, conversation, culture	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
63	French II	11	French	elective	Intermediate French, reading, writing, conversation	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
64	French II	12	French	elective	Intermediate French, reading, writing, conversation	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
65	Spanish I	9	Spanish	elective	Basic Spanish vocabulary, grammar, conversation, culture	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
66	Spanish I	10	Spanish	elective	Basic Spanish vocabulary, grammar, conversation, culture	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
67	Spanish II	11	Spanish	elective	Intermediate Spanish, reading, writing, conversation	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
68	Spanish II	12	Spanish	elective	Intermediate Spanish, reading, writing, conversation	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
69	Art Fundamentals (K-5)	1	Art	elective	Drawing, painting, crafts, art appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
70	Art Fundamentals (K-5)	2	Art	elective	Drawing, painting, crafts, art appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
71	Art Fundamentals (K-5)	3	Art	elective	Drawing, painting, crafts, art appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
72	Art Fundamentals (K-5)	4	Art	elective	Drawing, painting, crafts, art appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
73	Art Fundamentals (K-5)	5	Art	elective	Drawing, painting, crafts, art appreciation	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
74	Visual Arts (6-8)	6	Art	elective	Drawing, painting, sculpture, art history	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
75	Visual Arts (6-8)	7	Art	elective	Drawing, painting, sculpture, art history	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
76	Visual Arts (6-8)	8	Art	elective	Drawing, painting, sculpture, art history	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
77	Studio Art (9-12)	9	Art	elective	Advanced drawing, painting, mixed media, portfolio development	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
78	Studio Art (9-12)	10	Art	elective	Advanced drawing, painting, mixed media, portfolio development	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
79	Studio Art (9-12)	11	Art	elective	Advanced drawing, painting, mixed media, portfolio development	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
80	Studio Art (9-12)	12	Art	elective	Advanced drawing, painting, mixed media, portfolio development	1.0	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
81	Physical Education (K-5)	1	PE	elective	Basic movement, fitness, coordination, team sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
82	Physical Education (K-5)	2	PE	elective	Basic movement, fitness, coordination, team sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
83	Physical Education (K-5)	3	PE	elective	Basic movement, fitness, coordination, team sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
84	Physical Education (K-5)	4	PE	elective	Basic movement, fitness, coordination, team sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
85	Physical Education (K-5)	5	PE	elective	Basic movement, fitness, coordination, team sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
86	Physical Education (6-8)	6	PE	elective	Fitness, team sports, health education	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
87	Physical Education (6-8)	7	PE	elective	Fitness, team sports, health education	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
88	Physical Education (6-8)	8	PE	elective	Fitness, team sports, health education	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
89	Health and Fitness (9-12)	9	PE	elective	Fitness, nutrition, health, wellness, sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
90	Health and Fitness (9-12)	10	PE	elective	Fitness, nutrition, health, wellness, sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
91	Health and Fitness (9-12)	11	PE	elective	Fitness, nutrition, health, wellness, sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
92	Health and Fitness (9-12)	12	PE	elective	Fitness, nutrition, health, wellness, sports	0.5	t	\N	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
\.


--
-- Data for Name: daily_logs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.daily_logs (id, student_id, log_date, total_hours, math_hours, ela_hours, science_hours, social_studies_hours, elective_hours, subjects_covered, notes, day_status, logged_by, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: enrollments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.enrollments (id, student_id, course_id, enrolled_date, status) FROM stdin;
\.


--
-- Data for Name: grades; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.grades (id, submission_id, assignment_id, student_id, points_earned, point_value, percentage, letter_grade, weight_category, feedback, graded_by, graded_date, is_final, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: lessons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.lessons (id, unit_id, title, description, lesson_number, video_url, video_title, video_duration, content, supplementary_links, is_active, created_at, learning_objectives, instructional_content, vocabulary, examples, guided_practice, video_source, passage_title, passage_type, reading_passage, passage_source, reading_level, grade_band, audio_url, audio_title, read_aloud_available, concept_title, concept_explanation, formula_text, step_by_step_examples, common_mistakes, materials_needed, safety_notes, experiment_steps, observation_questions, conclusion_prompt, source_title, source_type, source_text, historical_context, timeline_points, map_activity_prompt, real_world_application, video_verified) FROM stdin;
16	6	Common Sight Words	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.149984	Read and comprehend a grade-level informational text.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Using Word Parts", "content": "\\"Unbelievable\\" = un (not) + believe + able (capable of). Meaning: not capable of being believed; incredible.", "solution": "unbelievable = not capable of being believed"}, {"title": "Context Clues", "content": "\\"The arid desert received less than five inches of rain per year.\\" Clue: \\"less than five inches of rain\\" tells us arid means very dry.", "solution": "arid = extremely dry"}]	[{"hint": "dis- (not) + agree (to be in harmony) + -ment (state of).", "answer": "dis-agree-ment: the state of not agreeing", "question": "Break the word \\"disagreement\\" into its prefix, root, and suffix. Define each part."}, {"hint": "\\"There\\" = a place. \\"Their\\" = belonging to them. \\"They're\\" = they are.", "answer": "They went there to pick up their order.", "question": "Write the correct homophone: \\"They went (their/there/they're) to pick up (their/there/they're) order.\\""}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
18	6	Reading Comprehension	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.152213	Read and comprehend a grade-level short story.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Finding the Main Idea", "content": "Read this passage: \\"Bees are essential pollinators. They carry pollen from flower to flower, helping plants reproduce. Without bees, many fruits and vegetables would not grow.\\" The main idea is that bees play a vital role in plant reproduction.", "solution": "Main idea: Bees are essential pollinators that help plants reproduce."}, {"title": "Making an Inference", "content": "The passage says: \\"Maria checked her watch again and tapped her foot.\\" What can you infer? Maria is probably waiting for someone or something and feels impatient.", "solution": "Inference: Maria is impatient about waiting."}]	[{"hint": "Ask yourself: What is this paragraph mostly about? What facts support that?", "answer": null, "question": "Read a paragraph from your current text. Identify the main idea in one sentence and list two supporting details."}, {"hint": "Look at the sentences around the unknown word for hints.", "answer": null, "question": "Find a word you do not know in your reading. Use context clues to determine its meaning, then check a dictionary."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
20	7	Writing Words	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.15606	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
21	7	Writing Simple Sentences	\N	3	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.157294	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
22	8	Nouns	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.158878	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Nouns, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
24	8	Capitalization and Punctuation	\N	3	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.161387	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
1	1	Counting to 20	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.12538	Understand the concepts and methods of Counting to 20.\nSolve problems involving Counting to 20 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Counting to 20 to real-world situations.	This lesson covers important mathematical concepts related to Counting to 20. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Counting to 20. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Counting to 20 using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Counting to 20	This lesson covers important mathematical concepts related to Counting to 20. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Counting to 20", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Counting to 20 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
3	1	Number Patterns	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.132474	Understand the concepts and methods of Number Patterns.\nSolve problems involving Number Patterns accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Number Patterns to real-world situations.	This lesson covers important mathematical concepts related to Number Patterns. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Number Patterns. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Number Patterns using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Number Patterns	This lesson covers important mathematical concepts related to Number Patterns. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Number Patterns", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Number Patterns helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
5	2	Adding Within 20	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.135304	Understand the concepts and methods of Adding Within 20.\nSolve problems involving Adding Within 20 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding Within 20 to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 50 + 58. Start in the ones place: 0 + 8 = 8. Write 8. Continue to the tens place.", "solution": "50 + 58 = 108"}, {"title": "Word Problem", "content": "A library has 654 fiction books and 617 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "654 + 617 = 1271 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "91", "question": "Calculate: 37 + 54"}, {"hint": "Identify the two quantities and add them.", "answer": "601 items", "question": "A store sold 486 items on Monday and 115 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Adding Within 20	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 36 + 28", "work": "Line up by place value. Add ones, then tens. Regroup: 36+28=64", "answer": "64"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding Within 20 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
7	3	Subtracting Within 10	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.138232	Understand the concepts and methods of Subtracting Within 10.\nSolve problems involving Subtracting Within 10 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Subtracting Within 10 to real-world situations.	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Subtraction", "content": "Subtract 77 − 58. Ones place: 7 − 8. Since 7 < 8, borrow from the tens place.", "solution": "77 − 58 = 19"}, {"title": "Checking with Addition", "content": "If 85 − 37 = 48, check by adding: 48 + 37 = 85. ✓ Correct.", "solution": "85 − 37 = 48"}]	[{"hint": "Work right to left. Borrow if needed.", "answer": "46", "question": "Calculate: 196 − 150"}, {"hint": "Add your answer to the subtrahend.", "answer": "Yes, 46 + 150 = 196", "question": "Check your answer by adding: does 46 + 150 = 196?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Subtracting Within 10	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	\N	[{"step": "Subtract 88 − 19", "work": "Line up by place value. Subtract right to left. Borrow if needed.", "answer": "69"}]	[{"mistake": "Forgetting to borrow when the top digit is smaller", "correction": "Borrow 1 from the next column (making it 10+ in the current column)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Subtracting Within 10 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
9	3	Subtraction Word Problems	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.140638	Understand the concepts and methods of Subtraction Word Problems.\nSolve problems involving Subtraction Word Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Subtraction Word Problems to real-world situations.	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Subtraction", "content": "Subtract 57 − 41. Ones place: 7 − 1 = 6.", "solution": "57 − 41 = 16"}, {"title": "Checking with Addition", "content": "If 85 − 37 = 48, check by adding: 48 + 37 = 85. ✓ Correct.", "solution": "85 − 37 = 48"}]	[{"hint": "Work right to left. Borrow if needed.", "answer": "32", "question": "Calculate: 71 − 39"}, {"hint": "Add your answer to the subtrahend.", "answer": "Yes, 32 + 39 = 71", "question": "Check your answer by adding: does 32 + 39 = 71?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Subtraction Word Problems	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	\N	[{"step": "Subtract 50 − 25", "work": "Line up by place value. Subtract right to left. Borrow if needed.", "answer": "25"}]	[{"mistake": "Forgetting to borrow when the top digit is smaller", "correction": "Borrow 1 from the next column (making it 10+ in the current column)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Subtraction Word Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
10	4	Basic Shapes	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.142084	Understand the concepts and methods of Basic Shapes.\nSolve problems involving Basic Shapes accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Basic Shapes to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 15 cm and width 8 cm. Area = length × width.", "solution": "A = 15 × 8 = 120 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(15 + 8) = 2(23) = 46 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 11 and height 10."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Basic Shapes	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 15×5", "work": "A = length × width = 15 × 5", "answer": "75 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Basic Shapes helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
11	4	Measuring Length	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.143123	Understand the concepts and methods of Measuring Length.\nSolve problems involving Measuring Length accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Measuring Length to real-world situations.	This lesson covers important mathematical concepts related to Measuring Length. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Measuring Length. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Measuring Length using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Measuring Length	This lesson covers important mathematical concepts related to Measuring Length. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Measuring Length", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Measuring Length helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
25	9	Plants and Animals	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.163417	Explain the key scientific concepts of Plants and Animals.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plants and Animals to real-world applications.	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	[{"title": "Photosynthesis Equation", "content": "6CO₂ + 6H₂O + sunlight → C₆H₁₂O₆ + 6O₂. Reactants: carbon dioxide and water. Products: glucose and oxygen. Energy source: sunlight.", "solution": "Plants take in CO₂ and water, use sunlight, and produce sugar and oxygen."}, {"title": "Plant Life Cycle", "content": "A bean seed is planted in soil → it absorbs water and germinates → a root grows down, a shoot grows up → leaves develop and photosynthesis begins → the plant flowers → bees pollinate the flowers → new bean pods (seeds) form.", "solution": "Seed → Germination → Growth → Flowering → Pollination → Seed Production"}]	[{"hint": "Think about what the plant takes in from its environment.", "answer": "Sunlight, water, and carbon dioxide.", "question": "What three things does a plant need for photosynthesis?"}, {"hint": "Think about which pigment is involved in photosynthesis.", "answer": "Chlorophyll absorbs red and blue light and reflects green light.", "question": "Explain why plants appear green."}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Plants and Animals	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	\N	\N	["2 small pots", "potting soil", "bean seeds", "water", "ruler", "journal"]	Wash hands after handling soil. Do not eat seeds or soil.	[{"step": "Plant a bean seed in each pot. Place one in sunlight, one in a dark closet.", "detail": "Water both equally. Measure and record growth daily for 2 weeks."}]	["Which plant grew taller? Why?", "What happened to the plant without sunlight?", "What does this tell you about what plants need?"]	Write a conclusion explaining how sunlight affects plant growth. Use your data as evidence.	\N	\N	\N	\N	\N	\N	Agriculture depends on understanding plant needs. Farmers optimize sunlight, water, and soil nutrients to grow food.	t
27	9	Life Cycles	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.165416	Explain the key scientific concepts of Life Cycles.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Life Cycles to real-world applications.	This lesson explores scientific concepts related to Life Cycles. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Life Cycles. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Life Cycles	This lesson explores scientific concepts related to Life Cycles. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Life Cycles connects to real-world applications in technology, health, and environmental stewardship.	f
31	11	Day and Night	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.170406	Explain the key scientific concepts of Day and Night.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Day and Night to real-world applications.	This lesson explores scientific concepts related to Day and Night. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Day and Night. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Day and Night	This lesson explores scientific concepts related to Day and Night. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Day and Night connects to real-world applications in technology, health, and environmental stewardship.	f
70	24	Pushes and Pulls	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.218555	Explain the key scientific concepts of Pushes and Pulls.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Pushes and Pulls to real-world applications.	This lesson explores scientific concepts related to Pushes and Pulls. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Pushes and Pulls. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Pushes and Pulls	This lesson explores scientific concepts related to Pushes and Pulls. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Pushes and Pulls connects to real-world applications in technology, health, and environmental stewardship.	f
34	12	Community Helpers	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.174356	Explain key concepts related to Community Helpers.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Community Helpers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Community Helpers, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Community Helpers and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Community Helpers connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Community Helpers	This lesson examines important social studies concepts related to Community Helpers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Community Helpers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Community Helpers develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
36	12	Being a Good Citizen	\N	3	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	6-8 min	\N	\N	t	2026-06-23 11:23:04.176274	Explain key concepts related to Being a Good Citizen.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Being a Good Citizen. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Being a Good Citizen	This lesson examines important social studies concepts related to Being a Good Citizen. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Being a Good Citizen. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Being a Good Citizen develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
38	13	Land and Water	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.178629	Explain key concepts related to Land and Water.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Land and Water. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Land and Water, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Land and Water and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Land and Water connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Land and Water	This lesson examines important social studies concepts related to Land and Water. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Land and Water. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Land and Water develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
40	14	The Flag	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.181583	Explain key concepts related to The Flag.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to The Flag. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying The Flag, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to The Flag and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does The Flag connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	The Flag	This lesson examines important social studies concepts related to The Flag. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to The Flag. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying The Flag develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
42	14	Famous Americans	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.183716	Explain key concepts related to Famous Americans.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Famous Americans. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Famous Americans, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Famous Americans and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Famous Americans connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Famous Americans	This lesson examines important social studies concepts related to Famous Americans. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Famous Americans. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Famous Americans develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
56	19	Building Vocabulary	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.202383	Read and comprehend a grade-level informational text.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Using Word Parts", "content": "\\"Unbelievable\\" = un (not) + believe + able (capable of). Meaning: not capable of being believed; incredible.", "solution": "unbelievable = not capable of being believed"}, {"title": "Context Clues", "content": "\\"The arid desert received less than five inches of rain per year.\\" Clue: \\"less than five inches of rain\\" tells us arid means very dry.", "solution": "arid = extremely dry"}]	[{"hint": "dis- (not) + agree (to be in harmony) + -ment (state of).", "answer": "dis-agree-ment: the state of not agreeing", "question": "Break the word \\"disagreement\\" into its prefix, root, and suffix. Define each part."}, {"hint": "\\"There\\" = a place. \\"Their\\" = belonging to them. \\"They're\\" = they are.", "answer": "They went there to pick up their order.", "question": "Write the correct homophone: \\"They went (their/there/they're) to pick up (their/there/they're) order.\\""}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
59	20	Supporting Details	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.206127	Read and comprehend a grade-level short story.\nApply the skill of finding supporting details in text to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice finding supporting details in text. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Supporting Details, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Finding supporting details in text	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
273	91	Misplaced Modifiers	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.443017	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding grammar and sentence structure. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Misplaced Modifiers, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
2	1	Comparing Numbers	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.130353	Understand the concepts and methods of Comparing Numbers.\nSolve problems involving Comparing Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Comparing Numbers to real-world situations.	This lesson covers important mathematical concepts related to Comparing Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Comparing Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Comparing Numbers using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Comparing Numbers	This lesson covers important mathematical concepts related to Comparing Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Comparing Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Comparing Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
46	16	Adding Two-Digit Numbers	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.189305	Understand the concepts and methods of Adding Two-Digit Numbers.\nSolve problems involving Adding Two-Digit Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding Two-Digit Numbers to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 67 + 74. Start in the ones place: 7 + 4 = 11. Since the sum is 10 or more, write 1 and carry 1. Continue to the tens place.", "solution": "67 + 74 = 141"}, {"title": "Word Problem", "content": "A library has 437 fiction books and 373 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "437 + 373 = 810 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "96", "question": "Calculate: 68 + 28"}, {"hint": "Identify the two quantities and add them.", "answer": "676 items", "question": "A store sold 311 items on Monday and 365 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Adding Two-Digit Numbers	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 46 + 50", "work": "Line up by place value. Add ones, then tens.  46+50=96", "answer": "96"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding Two-Digit Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
71	24	Speed and Direction	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.219496	Explain the key scientific concepts of Speed and Direction.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Speed and Direction to real-world applications.	This lesson explores scientific concepts related to Speed and Direction. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Speed and Direction. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Speed and Direction	This lesson explores scientific concepts related to Speed and Direction. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Speed and Direction connects to real-world applications in technology, health, and environmental stewardship.	f
86	29	Times Tables 1-5	\N	2	https://www.khanacademy.org/math/cc-third-grade-math	Khan Academy: 3rd Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.23696	Understand the concepts and methods of Times Tables 1-5.\nSolve problems involving Times Tables 1-5 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Times Tables 1-5 to real-world situations.	This lesson covers important mathematical concepts related to Times Tables 1-5. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 5 × 9. This means 5 groups of 9, or 9 added 5 times.", "solution": "5 × 9 = 45"}, {"title": "Distributive Property", "content": "Calculate 30 × 3 using the distributive property. Break 30 into 30 + 0: (30 × 3) + (0 × 3) = 90 + 0.", "solution": "30 × 3 = 90"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 7 × 11"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 8 rows of desks with 5 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Times Tables 1-5	This lesson covers important mathematical concepts related to Times Tables 1-5. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Times Tables 1-5", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Times Tables 1-5 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
156	52	Fossils	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.317973	Explain the key scientific concepts of Fossils.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Fossils to real-world applications.	This lesson explores scientific concepts related to Fossils. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Fossils. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Fossils	This lesson explores scientific concepts related to Fossils. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Fossils connects to real-world applications in technology, health, and environmental stewardship.	f
170	57	Adding and Subtracting Decimals	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.333183	Understand the concepts and methods of Adding and Subtracting Decimals.\nSolve problems involving Adding and Subtracting Decimals accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding and Subtracting Decimals to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 23 + 74. Start in the ones place: 3 + 4 = 7. Write 7. Continue to the tens place.", "solution": "23 + 74 = 97"}, {"title": "Word Problem", "content": "A library has 168 fiction books and 268 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "168 + 268 = 436 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "107", "question": "Calculate: 21 + 86"}, {"hint": "Identify the two quantities and add them.", "answer": "809 items", "question": "A store sold 310 items on Monday and 499 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Adding and Subtracting Decimals	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 160 + 195", "work": "Line up by place value. Add ones, then tens.  160+195=355", "answer": "355"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding and Subtracting Decimals helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
231	77	MLA Format Basics	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.398097	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of MLA Format Basics, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
218	73	Solving One-Step Equations	\N	2	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.384205	Understand the concepts and methods of Solving One-Step Equations.\nSolve problems involving Solving One-Step Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Solving One-Step Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 7x = 63. Divide both sides by 7.", "solution": "x = 9"}, {"title": "Two-Step Equation", "content": "Solve: 7x + 5 = 68. Step 1: Subtract 5 from both sides → 7x = 63. Step 2: Divide by 7.", "solution": "x = 9"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Solving One-Step Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 5x + 1 = 41", "work": "Step 1: Subtract 1: 5x = 40. Step 2: Divide by 5: x = 8. Check: 5(8)+1=41 ✓", "answer": "x = 8"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solving One-Step Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
261	87	Surface Area and Volume	\N	3	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.429638	Understand the concepts and methods of Surface Area and Volume.\nSolve problems involving Surface Area and Volume accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Surface Area and Volume to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 5 cm and width 5 cm. Area = length × width.", "solution": "A = 5 × 5 = 25 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(5 + 5) = 2(10) = 20 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 12 and height 5."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Surface Area and Volume	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 5×5", "work": "A = length × width = 5 × 5", "answer": "25 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Surface Area and Volume helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
310	104	Thesis Statements	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.481705	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Thesis Statements, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
324	108	Waves and Sound	\N	3	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.495819	Explain the key scientific concepts of Waves and Sound.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Waves and Sound to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Waves and Sound	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
230	77	Note-Taking Strategies	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.39721	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Note-Taking Strategies, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
363	121	Cellular Respiration	\N	3	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.53672	Explain the key scientific concepts of Cellular Respiration.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cellular Respiration to real-world applications.	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	[{"title": "Animal vs. Plant Cell", "content": "Both have: nucleus, mitochondria, cell membrane, ribosomes. Only plant cells have: cell wall, chloroplasts, large central vacuole.", "solution": "Plant cells have structures for photosynthesis and structural support that animal cells lack."}]	[{"hint": "Think about energy production.", "answer": "Mitochondria produce ATP (energy) through cellular respiration.", "question": "What is the function of the mitochondria?"}, {"hint": "Think about structures unique to plant cells.", "answer": "Plant cells have cell walls and chloroplasts; animal cells do not.", "question": "Name two differences between plant and animal cells."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Cellular Respiration	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	\N	\N	["microscope (optional)", "prepared slides or diagrams", "colored pencils", "paper"]	\N	[{"step": "Draw and label an animal cell and a plant cell.", "detail": "Include: nucleus, cell membrane, mitochondria, ribosomes. For plant cells, add: cell wall, chloroplasts, central vacuole."}]	["What structures do plant and animal cells share?", "What structures are unique to plant cells?", "Why do plant cells need chloroplasts but animal cells do not?"]	Explain the relationship between cell structure and function. Why does each organelle matter?	\N	\N	\N	\N	\N	\N	Understanding cells is the foundation of medicine, genetics, and biotechnology.	t
420	140	pH Scale	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.597294	Explain the key scientific concepts of pH Scale.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect pH Scale to real-world applications.	This lesson explores scientific concepts related to pH Scale. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to pH Scale. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	pH Scale	This lesson explores scientific concepts related to pH Scale. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding pH Scale connects to real-world applications in technology, health, and environmental stewardship.	f
446	149	Transcendentalism	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.625651	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Transcendentalism, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
434	145	Factoring Polynomials	\N	2	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.613237	Understand the concepts and methods of Factoring Polynomials.\nSolve problems involving Factoring Polynomials accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Factoring Polynomials to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Factoring", "content": "Solve x² − 7x + 12 = 0. Find two numbers that multiply to 12 and add to −7: −3 and −4. Factor: (x − 3)(x − 4) = 0.", "solution": "x = 3 or x = 4"}, {"title": "Quadratic Formula", "content": "Solve 2x² + 3x − 2 = 0. a=2, b=3, c=−2. Discriminant = 9 + 16 = 25. x = (−3 ± 5)/4.", "solution": "x = 1/2 or x = −2"}]	[{"hint": "Find two numbers that multiply to 20 and add to −9.", "answer": "x = 4 or x = 5", "question": "Factor and solve: x² − 9x + 20 = 0"}, {"hint": "a=1, b=2, c=−8. Plug into the formula.", "answer": "x = 2 or x = −4", "question": "Use the quadratic formula to solve: x² + 2x − 8 = 0"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Factoring Polynomials	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Factoring Polynomials helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
72	24	Simple Machines	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.220623	Explain the key scientific concepts of Simple Machines.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Simple Machines to real-world applications.	This lesson explores scientific concepts related to Simple Machines. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Simple Machines. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Simple Machines	This lesson explores scientific concepts related to Simple Machines. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Simple Machines connects to real-world applications in technology, health, and environmental stewardship.	f
504	168	Portfolio Development	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.685616	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Portfolio Development, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
62	21	Adverbs	\N	2	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.209544	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Adverbs, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
312	104	Citations and Bibliography	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.483429	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Citations and Bibliography, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
65	22	Prefixes and Suffixes	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.212679	Read and comprehend a grade-level short story.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Prefixes and Suffixes, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
43	15	Ones and Tens	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.185546	Understand the concepts and methods of Ones and Tens.\nSolve problems involving Ones and Tens accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Ones and Tens to real-world situations.	This lesson covers important mathematical concepts related to Ones and Tens. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Ones and Tens. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Ones and Tens using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Ones and Tens	This lesson covers important mathematical concepts related to Ones and Tens. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Ones and Tens", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ones and Tens helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
45	15	Comparing Three-Digit Numbers	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.187597	Understand the concepts and methods of Comparing Three-Digit Numbers.\nSolve problems involving Comparing Three-Digit Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Comparing Three-Digit Numbers to real-world situations.	This lesson covers important mathematical concepts related to Comparing Three-Digit Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Comparing Three-Digit Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Comparing Three-Digit Numbers using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Comparing Three-Digit Numbers	This lesson covers important mathematical concepts related to Comparing Three-Digit Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Comparing Three-Digit Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Comparing Three-Digit Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
47	16	Subtracting Two-Digit Numbers	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.19092	Understand the concepts and methods of Subtracting Two-Digit Numbers.\nSolve problems involving Subtracting Two-Digit Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Subtracting Two-Digit Numbers to real-world situations.	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Subtraction", "content": "Subtract 60 − 17. Ones place: 0 − 7. Since 0 < 7, borrow from the tens place.", "solution": "60 − 17 = 43"}, {"title": "Checking with Addition", "content": "If 85 − 37 = 48, check by adding: 48 + 37 = 85. ✓ Correct.", "solution": "85 − 37 = 48"}]	[{"hint": "Work right to left. Borrow if needed.", "answer": "39", "question": "Calculate: 113 − 74"}, {"hint": "Add your answer to the subtrahend.", "answer": "Yes, 39 + 74 = 113", "question": "Check your answer by adding: does 39 + 74 = 113?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Subtracting Two-Digit Numbers	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	\N	[{"step": "Subtract 62 − 44", "work": "Line up by place value. Subtract right to left. Borrow if needed.", "answer": "18"}]	[{"mistake": "Forgetting to borrow when the top digit is smaller", "correction": "Borrow 1 from the next column (making it 10+ in the current column)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Subtracting Two-Digit Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
48	16	Word Problems	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.191876	Understand the concepts and methods of Word Problems.\nSolve problems involving Word Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Word Problems to real-world situations.	This lesson covers important mathematical concepts related to Word Problems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Word Problems. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Word Problems using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Word Problems	This lesson covers important mathematical concepts related to Word Problems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Word Problems", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Word Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
50	17	Measuring in Centimeters	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.195237	Understand the concepts and methods of Measuring in Centimeters.\nSolve problems involving Measuring in Centimeters accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Measuring in Centimeters to real-world situations.	This lesson covers important mathematical concepts related to Measuring in Centimeters. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Measuring in Centimeters. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Measuring in Centimeters using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Measuring in Centimeters	This lesson covers important mathematical concepts related to Measuring in Centimeters. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Measuring in Centimeters", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Measuring in Centimeters helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
51	17	Time to Nearest 5 Minutes	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.19617	Understand the concepts and methods of Time to Nearest 5 Minutes.\nSolve problems involving Time to Nearest 5 Minutes accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Time to Nearest 5 Minutes to real-world situations.	This lesson covers important mathematical concepts related to Time to Nearest 5 Minutes. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Time to Nearest 5 Minutes. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Time to Nearest 5 Minutes using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Time to Nearest 5 Minutes	This lesson covers important mathematical concepts related to Time to Nearest 5 Minutes. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Time to Nearest 5 Minutes", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Time to Nearest 5 Minutes helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
52	18	Counting Coins	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.197412	Understand the concepts and methods of Counting Coins.\nSolve problems involving Counting Coins accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Counting Coins to real-world situations.	This lesson covers important mathematical concepts related to Counting Coins. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Counting Coins. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Counting Coins using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Counting Coins	This lesson covers important mathematical concepts related to Counting Coins. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Counting Coins", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Counting Coins helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
54	18	Reading Graphs	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.199502	Understand the concepts and methods of Reading Graphs.\nSolve problems involving Reading Graphs accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Reading Graphs to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Reading Graphs	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Reading Graphs helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
68	23	Properties of Matter	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.216329	Explain the key scientific concepts of Properties of Matter.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Properties of Matter to real-world applications.	This lesson explores scientific concepts related to Properties of Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Properties of Matter. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Properties of Matter	This lesson explores scientific concepts related to Properties of Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Properties of Matter connects to real-world applications in technology, health, and environmental stewardship.	f
74	25	Animal Life Cycles	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.223427	Explain the key scientific concepts of Animal Life Cycles.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Animal Life Cycles to real-world applications.	This lesson explores scientific concepts related to Animal Life Cycles. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Animal Life Cycles. Identify the independent and dependent variables."}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Animal Life Cycles	This lesson explores scientific concepts related to Animal Life Cycles. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Animal Life Cycles connects to real-world applications in technology, health, and environmental stewardship.	t
75	25	Butterfly Metamorphosis	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.224468	Explain the key scientific concepts of Butterfly Metamorphosis.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Butterfly Metamorphosis to real-world applications.	This lesson explores scientific concepts related to Butterfly Metamorphosis. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Butterfly Metamorphosis. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Butterfly Metamorphosis	This lesson explores scientific concepts related to Butterfly Metamorphosis. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Butterfly Metamorphosis connects to real-world applications in technology, health, and environmental stewardship.	f
313	105	Historical Context	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.48459	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Historical Context, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
77	26	Map Skills	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.227067	Explain key concepts related to Map Skills.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Map Skills	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
79	27	Past Present and Future	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.229082	Explain key concepts related to Past Present and Future.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Past Present and Future. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Past Present and Future, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Past Present and Future and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Past Present and Future connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Past Present and Future	This lesson examines important social studies concepts related to Past Present and Future. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Past Present and Future. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Past Present and Future develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
82	28	Needs vs Wants	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.232295	Explain key concepts related to Needs vs Wants.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Needs vs Wants. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Needs vs Wants, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Needs vs Wants and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Needs vs Wants connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Needs vs Wants	This lesson examines important social studies concepts related to Needs vs Wants. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Needs vs Wants. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Needs vs Wants develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
295	99	Solving Multi-Step Equations	\N	1	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.466314	Understand the concepts and methods of Solving Multi-Step Equations.\nSolve problems involving Solving Multi-Step Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Solving Multi-Step Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 7x = 63. Divide both sides by 7.", "solution": "x = 9"}, {"title": "Two-Step Equation", "content": "Solve: 7x + 7 = 70. Step 1: Subtract 7 from both sides → 7x = 63. Step 2: Divide by 7.", "solution": "x = 9"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Solving Multi-Step Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 2x + 11 = 17", "work": "Step 1: Subtract 11: 2x = 6. Step 2: Divide by 2: x = 3. Check: 2(3)+11=17 ✓", "answer": "x = 3"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solving Multi-Step Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
98	33	Making Inferences	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.250238	Read and comprehend a grade-level short story.\nApply the skill of making inferences using text evidence to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice making inferences using text evidence. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Making Inferences, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Making inferences using text evidence	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
99	33	Summarizing	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.251165	Read and comprehend a grade-level short story.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Summarizing, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
100	34	Narrative Writing	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.252539	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
102	34	Opinion Writing	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.254599	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
104	35	Pronouns	\N	2	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.256917	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Pronouns, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
106	36	Using a Dictionary	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.259176	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Using a Dictionary, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
108	36	Taking Notes	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.261096	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Taking Notes, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
87	29	Times Tables 6-12	\N	3	https://www.khanacademy.org/math/cc-third-grade-math	Khan Academy: 3rd Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.238138	Understand the concepts and methods of Times Tables 6-12.\nSolve problems involving Times Tables 6-12 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Times Tables 6-12 to real-world situations.	This lesson covers important mathematical concepts related to Times Tables 6-12. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 4 × 11. This means 4 groups of 11, or 11 added 4 times.", "solution": "4 × 11 = 44"}, {"title": "Distributive Property", "content": "Calculate 26 × 7 using the distributive property. Break 26 into 20 + 6: (20 × 7) + (6 × 7) = 140 + 42.", "solution": "26 × 7 = 182"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 11 × 10"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 5 rows of desks with 6 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Times Tables 6-12	This lesson covers important mathematical concepts related to Times Tables 6-12. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Times Tables 6-12", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Times Tables 6-12 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
89	30	Division Facts	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.240294	Understand the concepts and methods of Division Facts.\nSolve problems involving Division Facts accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Division Facts to real-world situations.	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Division", "content": "Divide 78 ÷ 6. Ask: how many times does 6 go into 78?", "solution": "78 ÷ 6 = 13"}, {"title": "Division with Remainder", "content": "Divide 80 ÷ 6. 6 goes into the dividend 13 times with a remainder.", "solution": "Quotient: 13, Remainder: check your calculation"}]	[{"hint": "Use long division or think about multiplication facts.", "answer": null, "question": "Calculate: 50 ÷ 8"}, {"hint": "Divide and look at the whole number quotient.", "answer": null, "question": "32 students need to form equal teams of 6. How many full teams can be made?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Division Facts	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	\N	[{"step": "Divide 95 ÷ 5", "work": "How many times does 5 go into 95? 5×19=95", "answer": "19"}]	[{"mistake": "Forgetting to include the remainder", "correction": "If division is not exact, record the remainder: quotient R remainder."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Division Facts helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
91	31	Understanding Fractions	\N	1	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.242592	Understand the concepts and methods of Understanding Fractions.\nSolve problems involving Understanding Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Understanding Fractions to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Understanding Fractions	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Understanding Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
92	31	Comparing Fractions	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.243482	Understand the concepts and methods of Comparing Fractions.\nSolve problems involving Comparing Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Comparing Fractions to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Comparing Fractions	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Comparing Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
93	31	Fractions on a Number Line	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.244436	Understand the concepts and methods of Fractions on a Number Line.\nSolve problems involving Fractions on a Number Line accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Fractions on a Number Line to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Fractions on a Number Line	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Fractions on a Number Line helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
95	32	Types of Angles	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.24658	Understand the concepts and methods of Types of Angles.\nSolve problems involving Types of Angles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Types of Angles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 9 cm and width 3 cm. Area = length × width.", "solution": "A = 9 × 3 = 27 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(9 + 3) = 2(12) = 24 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 8 and height 4."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Types of Angles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 10×3", "work": "A = length × width = 10 × 3", "answer": "30 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Types of Angles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
96	32	Symmetry	\N	3	https://www.khanacademy.org/math/cc-third-grade-math	Khan Academy: 3rd Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.247533	Understand the concepts and methods of Symmetry.\nSolve problems involving Symmetry accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Symmetry to real-world situations.	This lesson covers important mathematical concepts related to Symmetry. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Symmetry. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Symmetry using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Symmetry	This lesson covers important mathematical concepts related to Symmetry. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Symmetry", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Symmetry helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
112	38	Food Chains	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.265911	Explain the key scientific concepts of Food Chains.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Food Chains to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Food Chains	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	f
113	38	Habitats	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.26678	Explain the key scientific concepts of Habitats.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Habitats to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Habitats	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	f
114	38	Adaptations	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.267687	Explain the key scientific concepts of Adaptations.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Adaptations to real-world applications.	This lesson explores scientific concepts related to Adaptations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Adaptations	This lesson explores scientific concepts related to Adaptations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adaptations connects to real-world applications in technology, health, and environmental stewardship.	f
117	39	Severe Weather	\N	3	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	6-8 min	\N	\N	t	2026-06-23 11:23:04.271314	Explain the key scientific concepts of Severe Weather.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Severe Weather to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Severe Weather	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
447	149	American Realism	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.626473	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of American Realism, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
120	40	Community Resources	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.275192	Explain key concepts related to Community Resources.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Community Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Community Resources, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Community Resources and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Community Resources connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Community Resources	This lesson examines important social studies concepts related to Community Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Community Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Community Resources develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
121	41	Regions of the US	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.276455	Explain key concepts related to Regions of the US.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Regions of the US	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
122	41	Physical Features	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.277396	Explain key concepts related to Physical Features.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Physical Features. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Physical Features, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Physical Features and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Physical Features connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Physical Features	This lesson examines important social studies concepts related to Physical Features. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Physical Features. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Physical Features develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
124	42	Supply and Demand	\N	1	https://www.khanacademy.org/economics-finance-domain	Khan Academy: Economics & Finance	6-8 min	\N	\N	t	2026-06-23 11:23:04.279631	Explain key concepts related to Supply and Demand.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	[{"title": "Supply and Demand", "content": "A popular toy at holiday time: demand is high but supply is limited → price increases. After the holidays: demand drops → price decreases or stores offer sales.", "solution": "Prices rise when demand exceeds supply and fall when supply exceeds demand."}]	[{"hint": "Opportunity cost is what you give up.", "answer": "The concert experience is the opportunity cost.", "question": "You have $50. You can buy a video game or go to a concert. If you choose the game, what is the opportunity cost?"}, {"hint": "How does rain affect demand for umbrellas?", "answer": "Demand increases while supply stays the same, so the price tends to rise.", "question": "Explain what happens to the price of umbrellas when it starts raining heavily."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Supply and Demand	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	Economic literacy helps with personal budgeting, career decisions, understanding policy, and financial planning.	t
126	42	Trade	\N	3	https://www.khanacademy.org/economics-finance-domain	Khan Academy: Economics & Finance	6-8 min	\N	\N	t	2026-06-23 11:23:04.281531	Explain key concepts related to Trade.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	[{"title": "Supply and Demand", "content": "A popular toy at holiday time: demand is high but supply is limited → price increases. After the holidays: demand drops → price decreases or stores offer sales.", "solution": "Prices rise when demand exceeds supply and fall when supply exceeds demand."}]	[{"hint": "Opportunity cost is what you give up.", "answer": "The concert experience is the opportunity cost.", "question": "You have $50. You can buy a video game or go to a concert. If you choose the game, what is the opportunity cost?"}, {"hint": "How does rain affect demand for umbrellas?", "answer": "Demand increases while supply stays the same, so the price tends to rise.", "question": "Explain what happens to the price of umbrellas when it starts raining heavily."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Trade	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	Economic literacy helps with personal budgeting, career decisions, understanding policy, and financial planning.	t
141	47	Theme and Moral	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.298518	Read and comprehend a grade-level short story.\nApply the skill of identifying and analyzing theme to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice identifying and analyzing theme. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Theme and Moral, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Identifying and analyzing theme	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
158	53	Animal Adaptations	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.320064	Explain the key scientific concepts of Animal Adaptations.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Animal Adaptations to real-world applications.	This lesson explores scientific concepts related to Animal Adaptations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Animal Adaptations	This lesson explores scientific concepts related to Animal Adaptations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Animal Adaptations connects to real-world applications in technology, health, and environmental stewardship.	t
144	48	Research Reports	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.301792	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Research Reports, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
146	49	Quotation Marks	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.303994	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Quotation Marks, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
148	50	Oral Presentations	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.306682	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Oral Presentations, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
150	50	Active Listening	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.310457	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Active Listening, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
129	43	Estimation	\N	3	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.284978	Understand the concepts and methods of Estimation.\nSolve problems involving Estimation accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Estimation to real-world situations.	This lesson covers important mathematical concepts related to Estimation. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Estimation. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Estimation using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Estimation	This lesson covers important mathematical concepts related to Estimation. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Estimation", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Estimation helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
130	44	Equivalent Fractions	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.28637	Understand the concepts and methods of Equivalent Fractions.\nSolve problems involving Equivalent Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Equivalent Fractions to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Equivalent Fractions	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Equivalent Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
132	44	Introduction to Decimals	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.288669	Understand the concepts and methods of Introduction to Decimals.\nSolve problems involving Introduction to Decimals accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Introduction to Decimals to real-world situations.	This lesson covers important mathematical concepts related to Introduction to Decimals. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Adding Decimals", "content": "Add 3.45 + 2.30. Line up decimal points: 3.45 + 2.30 = 5.75.", "solution": "3.45 + 2.30 = 5.75"}, {"title": "Decimal to Fraction", "content": "Convert 0.6 to a fraction. 0.6 = 6/10 = 3/5.", "solution": "0.6 = 3/5"}]	[{"hint": "Line up the decimal points and add column by column.", "answer": "5.79", "question": "Calculate: 4.56 + 1.23"}, {"hint": "Divide 3 by 4.", "answer": "0.75", "question": "Convert 3/4 to a decimal."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Introduction to Decimals	This lesson covers important mathematical concepts related to Introduction to Decimals. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Introduction to Decimals", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Introduction to Decimals helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
134	45	Area of Rectangles	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.29105	Understand the concepts and methods of Area of Rectangles.\nSolve problems involving Area of Rectangles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Area of Rectangles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 10 cm and width 5 cm. Area = length × width.", "solution": "A = 10 × 5 = 50 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(10 + 5) = 2(15) = 30 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 14 and height 7."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Area of Rectangles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 14×6", "work": "A = length × width = 14 × 6", "answer": "84 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Area of Rectangles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
135	45	Perimeter Problems	\N	3	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.291969	Understand the concepts and methods of Perimeter Problems.\nSolve problems involving Perimeter Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Perimeter Problems to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 14 cm and width 7 cm. Area = length × width.", "solution": "A = 14 × 7 = 98 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(14 + 7) = 2(21) = 42 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 6 and height 9."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Perimeter Problems	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 10×7", "work": "A = length × width = 10 × 7", "answer": "70 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Perimeter Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
136	46	Number Patterns	\N	1	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.293179	Understand the concepts and methods of Number Patterns.\nSolve problems involving Number Patterns accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Number Patterns to real-world situations.	This lesson covers important mathematical concepts related to Number Patterns. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Number Patterns. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Number Patterns using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Number Patterns	This lesson covers important mathematical concepts related to Number Patterns. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Number Patterns", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Number Patterns helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
138	46	Order of Operations	\N	3	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.295019	Understand the concepts and methods of Order of Operations.\nSolve problems involving Order of Operations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Order of Operations to real-world situations.	This lesson covers important mathematical concepts related to Order of Operations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Order of Operations	This lesson covers important mathematical concepts related to Order of Operations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Order of Operations", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Order of Operations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
151	51	Forms of Energy	\N	1	https://www.khanacademy.org/science/physics	Khan Academy: Physics	6-8 min	\N	\N	t	2026-06-23 11:23:04.312404	Explain the key scientific concepts of Forms of Energy.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Forms of Energy to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Forms of Energy	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
152	51	Energy Transfer	\N	2	https://www.khanacademy.org/science/physics	Khan Academy: Physics	6-8 min	\N	\N	t	2026-06-23 11:23:04.313729	Explain the key scientific concepts of Energy Transfer.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Energy Transfer to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Energy Transfer	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
154	52	Rocks and Minerals	\N	1	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	6-8 min	\N	\N	t	2026-06-23 11:23:04.316118	Explain the key scientific concepts of Rocks and Minerals.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Rocks and Minerals to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Rocks and Minerals	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
157	53	Plant Adaptations	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.319202	Explain the key scientific concepts of Plant Adaptations.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plant Adaptations to real-world applications.	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	[{"title": "Photosynthesis Equation", "content": "6CO₂ + 6H₂O + sunlight → C₆H₁₂O₆ + 6O₂. Reactants: carbon dioxide and water. Products: glucose and oxygen. Energy source: sunlight.", "solution": "Plants take in CO₂ and water, use sunlight, and produce sugar and oxygen."}, {"title": "Plant Life Cycle", "content": "A bean seed is planted in soil → it absorbs water and germinates → a root grows down, a shoot grows up → leaves develop and photosynthesis begins → the plant flowers → bees pollinate the flowers → new bean pods (seeds) form.", "solution": "Seed → Germination → Growth → Flowering → Pollination → Seed Production"}]	[{"hint": "Think about what the plant takes in from its environment.", "answer": "Sunlight, water, and carbon dioxide.", "question": "What three things does a plant need for photosynthesis?"}, {"hint": "Think about which pigment is involved in photosynthesis.", "answer": "Chlorophyll absorbs red and blue light and reflects green light.", "question": "Explain why plants appear green."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Plant Adaptations	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	\N	\N	["2 small pots", "potting soil", "bean seeds", "water", "ruler", "journal"]	Wash hands after handling soil. Do not eat seeds or soil.	[{"step": "Plant a bean seed in each pot. Place one in sunlight, one in a dark closet.", "detail": "Water both equally. Measure and record growth daily for 2 weeks."}]	["Which plant grew taller? Why?", "What happened to the plant without sunlight?", "What does this tell you about what plants need?"]	Write a conclusion explaining how sunlight affects plant growth. Use your data as evidence.	\N	\N	\N	\N	\N	\N	Agriculture depends on understanding plant needs. Farmers optimize sunlight, water, and soil nutrients to grow food.	t
161	54	Nevada Statehood	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.323668	Explain key concepts related to Nevada Statehood.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Nevada Statehood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Nevada Statehood, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Nevada Statehood and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Nevada Statehood connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Nevada Statehood	This lesson examines important social studies concepts related to Nevada Statehood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Nevada Statehood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Nevada Statehood develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
162	54	Nevada Geography	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.324579	Explain key concepts related to Nevada Geography.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Nevada Geography	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
163	55	Northeast and Southeast	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.325758	Explain key concepts related to Northeast and Southeast.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Northeast and Southeast. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Northeast and Southeast, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Northeast and Southeast and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Northeast and Southeast connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Northeast and Southeast	This lesson examines important social studies concepts related to Northeast and Southeast. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Northeast and Southeast. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Northeast and Southeast develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
165	55	West Region	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.327556	Explain key concepts related to West Region.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	West Region	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
167	56	Age of Discovery	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.329708	Explain key concepts related to Age of Discovery.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Age of Discovery. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Age of Discovery, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Age of Discovery and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Age of Discovery connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Age of Discovery	This lesson examines important social studies concepts related to Age of Discovery. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Age of Discovery. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Age of Discovery develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
181	61	Point of View	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.345222	Read and comprehend a grade-level short story.\nApply the skill of understanding point of view and perspective to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding point of view and perspective. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Point of View, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding point of view and perspective	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
183	61	Comparing Texts	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.346943	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Comparing Texts, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
186	62	Research Papers	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.349863	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Research Papers, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
187	63	Verb Tenses	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.35096	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Verb Tenses, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
188	63	Prepositions	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.351776	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Prepositions, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
190	64	Greek and Latin Roots	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.353936	Read and comprehend a grade-level informational text.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Greek and Latin Roots, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
192	64	Academic Vocabulary	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.355866	Read and comprehend a grade-level short story.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Using Word Parts", "content": "\\"Unbelievable\\" = un (not) + believe + able (capable of). Meaning: not capable of being believed; incredible.", "solution": "unbelievable = not capable of being believed"}, {"title": "Context Clues", "content": "\\"The arid desert received less than five inches of rain per year.\\" Clue: \\"less than five inches of rain\\" tells us arid means very dry.", "solution": "arid = extremely dry"}]	[{"hint": "dis- (not) + agree (to be in harmony) + -ment (state of).", "answer": "dis-agree-ment: the state of not agreeing", "question": "Break the word \\"disagreement\\" into its prefix, root, and suffix. Define each part."}, {"hint": "\\"There\\" = a place. \\"Their\\" = belonging to them. \\"They're\\" = they are.", "answer": "They went there to pick up their order.", "question": "Write the correct homophone: \\"They went (their/there/they're) to pick up (their/there/they're) order.\\""}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
171	57	Multiplying Decimals	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.334021	Understand the concepts and methods of Multiplying Decimals.\nSolve problems involving Multiplying Decimals accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multiplying Decimals to real-world situations.	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 9 × 4. This means 9 groups of 4, or 4 added 9 times.", "solution": "9 × 4 = 36"}, {"title": "Distributive Property", "content": "Calculate 14 × 2 using the distributive property. Break 14 into 10 + 4: (10 × 2) + (4 × 2) = 20 + 8.", "solution": "14 × 2 = 28"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 8 × 6"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 8 rows of desks with 6 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Multiplying Decimals	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	a × b = product	[{"step": "Calculate 5 × 6", "work": "5 groups of 6: 5×6=30", "answer": "30"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multiplying Decimals helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
172	58	Multiplying Fractions	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.335256	Understand the concepts and methods of Multiplying Fractions.\nSolve problems involving Multiplying Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multiplying Fractions to real-world situations.	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 4 × 5. This means 4 groups of 5, or 5 added 4 times.", "solution": "4 × 5 = 20"}, {"title": "Distributive Property", "content": "Calculate 25 × 5 using the distributive property. Break 25 into 20 + 5: (20 × 5) + (5 × 5) = 100 + 25.", "solution": "25 × 5 = 125"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 12 × 5"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 7 rows of desks with 7 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Multiplying Fractions	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	a × b = product	[{"step": "Calculate 8 × 5", "work": "8 groups of 5: 8×5=40", "answer": "40"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multiplying Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
173	58	Dividing Fractions	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.336127	Understand the concepts and methods of Dividing Fractions.\nSolve problems involving Dividing Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Dividing Fractions to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Dividing Fractions	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Dividing Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
175	59	Volume of Rectangular Prisms	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.338681	Understand the concepts and methods of Volume of Rectangular Prisms.\nSolve problems involving Volume of Rectangular Prisms accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Volume of Rectangular Prisms to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 10 cm and width 7 cm. Area = length × width.", "solution": "A = 10 × 7 = 70 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(10 + 7) = 2(17) = 34 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 6 and height 6."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Volume of Rectangular Prisms	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 14×6", "work": "A = length × width = 14 × 6", "answer": "84 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Volume of Rectangular Prisms helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
176	59	Converting Units	\N	2	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.339603	Understand the concepts and methods of Converting Units.\nSolve problems involving Converting Units accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Converting Units to real-world situations.	This lesson covers important mathematical concepts related to Converting Units. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Converting Units. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Converting Units using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Converting Units	This lesson covers important mathematical concepts related to Converting Units. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Converting Units", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Converting Units helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
177	59	Metric System	\N	3	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.340564	Understand the concepts and methods of Metric System.\nSolve problems involving Metric System accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Metric System to real-world situations.	This lesson covers important mathematical concepts related to Metric System. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Metric System. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Metric System using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Metric System	This lesson covers important mathematical concepts related to Metric System. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Metric System", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Metric System helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
179	60	Ordered Pairs	\N	2	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.342849	Understand the concepts and methods of Ordered Pairs.\nSolve problems involving Ordered Pairs accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Ordered Pairs to real-world situations.	This lesson covers important mathematical concepts related to Ordered Pairs. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Ordered Pairs. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Ordered Pairs using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Ordered Pairs	This lesson covers important mathematical concepts related to Ordered Pairs. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Ordered Pairs", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ordered Pairs helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
193	65	Properties of Matter	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.357552	Explain the key scientific concepts of Properties of Matter.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Properties of Matter to real-world applications.	This lesson explores scientific concepts related to Properties of Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Properties of Matter. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Properties of Matter	This lesson explores scientific concepts related to Properties of Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Properties of Matter connects to real-world applications in technology, health, and environmental stewardship.	f
196	66	Water Cycle	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.360671	Explain the key scientific concepts of Water Cycle.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Water Cycle to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Water Cycle	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	f
198	66	Atmosphere	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.362434	Explain the key scientific concepts of Atmosphere.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Atmosphere to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Atmosphere	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	f
200	67	Stars and Galaxies	\N	2	https://www.khanacademy.org/science/cosmology-and-astronomy	Khan Academy: Cosmology & Astronomy	6-8 min	\N	\N	t	2026-06-23 11:23:04.364546	Explain the key scientific concepts of Stars and Galaxies.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Stars and Galaxies to real-world applications.	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	[{"title": "Why Seasons Occur", "content": "In June, the Northern Hemisphere tilts toward the Sun → longer days, more direct sunlight → summer. In December, it tilts away → shorter days, less direct sunlight → winter. The Southern Hemisphere has opposite seasons.", "solution": "Seasons are caused by Earth's axial tilt, not distance from the Sun."}]	[{"hint": "My Very Educated Mother Just Served Us Nachos.", "answer": "Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune", "question": "List the eight planets in order from the Sun."}, {"hint": "One is spinning, the other is orbiting.", "answer": "Rotation is spinning on an axis (day/night). Revolution is orbiting around another object (year).", "question": "What is the difference between rotation and revolution?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Stars and Galaxies	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Space science enables satellite communication, GPS navigation, weather forecasting, and exploration.	t
202	68	13 Colonies	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.366946	Explain key concepts related to 13 Colonies.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to 13 Colonies. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying 13 Colonies, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to 13 Colonies and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does 13 Colonies connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	13 Colonies	This lesson examines important social studies concepts related to 13 Colonies. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to 13 Colonies. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying 13 Colonies develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
204	68	Road to Revolution	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.368743	Explain key concepts related to Road to Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Road to Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Road to Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
205	69	Causes of the Revolution	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.370342	Explain key concepts related to Causes of the Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Causes of the Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Causes of the Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
206	69	Key Battles	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.371364	Explain key concepts related to Key Battles.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Key Battles. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Key Battles, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Key Battles and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Key Battles connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Key Battles	This lesson examines important social studies concepts related to Key Battles. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Key Battles. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Key Battles develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
208	70	Constitution	\N	1	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	6-8 min	\N	\N	t	2026-06-23 11:23:04.373582	Explain key concepts related to Constitution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Constitution	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
209	70	Bill of Rights	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	6-8 min	\N	\N	t	2026-06-23 11:23:04.37447	Explain key concepts related to Bill of Rights.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Bill of Rights	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
210	70	Westward Expansion	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.375474	Explain key concepts related to Westward Expansion.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Westward Expansion."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Westward Expansion	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
225	75	Author Purpose	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.391697	Read and comprehend a grade-level short story.\nApply the skill of analyzing author's purpose and craft to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on analyzing author's purpose and craft. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Author Purpose, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Analyzing author's purpose and craft	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
227	76	Counterarguments	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.393757	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
229	77	Evaluating Sources	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.396268	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Evaluating Sources, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
232	78	Debate Skills	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.399244	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Identifying Appeals", "content": "\\"As a 20-year veteran teacher (ethos), I have seen countless students struggle with overcrowded classrooms (pathos). Studies show that reducing class size by 30% improves test scores by 15% (logos).\\"", "solution": "This passage uses all three rhetorical appeals."}, {"title": "Addressing a Counterclaim", "content": "Claim: Schools should start later. Counterclaim: Later starts conflict with parents' work schedules. Rebuttal: Adjusted bus routes and before-school programs can accommodate working families.", "solution": "Acknowledging and responding to opposition strengthens the argument."}]	[{"hint": "Start with your claim, then support it with credibility, emotion, and evidence.", "answer": null, "question": "Write a short persuasive paragraph using at least one example of ethos, pathos, and logos."}, {"hint": "What kind of evidence is this — emotional, credibility-based, or logical?", "answer": "Ethos (appeal to expert authority) and Logos (statistical evidence).", "question": "Identify the rhetorical appeal (ethos, pathos, or logos) in this statement: \\"Nine out of ten dentists recommend this toothpaste.\\""}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
233	78	Group Discussions	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.400157	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Group Discussions, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
211	71	Understanding Ratios	\N	1	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.37702	Understand the concepts and methods of Understanding Ratios.\nSolve problems involving Understanding Ratios accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Understanding Ratios to real-world situations.	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Understanding Ratios	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	SOH CAH TOA: sin=opp/hyp, cos=adj/hyp, tan=opp/adj	[{"step": "Find opposite side: angle 30°, hyp=10", "work": "sin(30°)=opp/10, opp=10×0.5=5", "answer": "5"}]	[{"mistake": "Using the wrong trig ratio for the given sides", "correction": "SOH CAH TOA: identify which sides you have relative to the angle."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Understanding Ratios helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
212	71	Unit Rates	\N	2	https://www.khanacademy.org/math/cc-sixth-grade-math	Khan Academy: 6th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.377842	Understand the concepts and methods of Unit Rates.\nSolve problems involving Unit Rates accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Unit Rates to real-world situations.	This lesson covers important mathematical concepts related to Unit Rates. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Unit Rates	This lesson covers important mathematical concepts related to Unit Rates. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Unit Rates", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Unit Rates helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
213	71	Proportional Relationships	\N	3	https://www.khanacademy.org/math/cc-sixth-grade-math	Khan Academy: 6th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.37879	Understand the concepts and methods of Proportional Relationships.\nSolve problems involving Proportional Relationships accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Proportional Relationships to real-world situations.	This lesson covers important mathematical concepts related to Proportional Relationships. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Proportional Relationships	This lesson covers important mathematical concepts related to Proportional Relationships. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Proportional Relationships", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Proportional Relationships helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
215	72	Adding Integers	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	10-15 min	\N	\N	t	2026-06-23 11:23:04.380944	Understand the concepts and methods of Adding Integers.\nSolve problems involving Adding Integers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding Integers to real-world situations.	Addition combines quantities to find a total. Addition properties include commutative (a+b=b+a), associative ((a+b)+c=a+(b+c)), and identity (a+0=a).	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 35 + 27. Start in the ones place: 5 + 7 = 12. Since the sum is 10 or more, write 2 and carry 1. Continue to the tens place.", "solution": "35 + 27 = 62"}, {"title": "Word Problem", "content": "A library has 988 fiction books and 688 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "988 + 688 = 1676 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "100", "question": "Calculate: 63 + 37"}, {"hint": "Identify the two quantities and add them.", "answer": "560 items", "question": "A store sold 204 items on Monday and 356 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Adding Integers	Addition combines quantities to find a total. Addition properties include commutative (a+b=b+a), associative ((a+b)+c=a+(b+c)), and identity (a+0=a).	\N	[{"step": "Add 281 + 263", "work": "Line up by place value. Add ones, then tens.  281+263=544", "answer": "544"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding Integers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
217	73	Writing Expressions	\N	1	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.3833	Understand the concepts and methods of Writing Expressions.\nSolve problems involving Writing Expressions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Writing Expressions to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 4x = 8. Divide both sides by 4.", "solution": "x = 2"}, {"title": "Two-Step Equation", "content": "Solve: 4x + 7 = 15. Step 1: Subtract 7 from both sides → 4x = 8. Step 2: Divide by 4.", "solution": "x = 2"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Writing Expressions	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 4x + 2 = 38", "work": "Step 1: Subtract 2: 4x = 36. Step 2: Divide by 4: x = 9. Check: 4(9)+2=38 ✓", "answer": "x = 9"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Writing Expressions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
220	74	Mean Median and Mode	\N	1	https://www.khanacademy.org/math/statistics-probability	Khan Academy: Statistics & Probability	10-15 min	\N	\N	t	2026-06-23 11:23:04.386176	Understand the concepts and methods of Mean Median and Mode.\nSolve problems involving Mean Median and Mode accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Mean Median and Mode to real-world situations.	This lesson covers important mathematical concepts related to Mean Median and Mode. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding the Mean", "content": "Data: 8, 5, 12, 9, 6. Sum = 40. Count = 5. Mean = 40 ÷ 5.", "solution": "Mean = 8"}, {"title": "Finding Probability", "content": "A bag has 3 red and 7 blue marbles. P(red) = 3/(3+7) = 3/10.", "solution": "P(red) = 0.3 = 30%"}]	[{"hint": "First sort the numbers, then find the middle one.", "answer": "9", "question": "Find the median of: 14, 7, 11, 3, 9"}, {"hint": "Count favorable outcomes (1 and 2) out of total (6).", "answer": "2/6 = 1/3", "question": "A die has 6 faces. What is the probability of rolling a number less than 3?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Mean Median and Mode	This lesson covers important mathematical concepts related to Mean Median and Mode. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Mean Median and Mode", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Mean Median and Mode helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
222	74	Measures of Variability	\N	3	https://www.khanacademy.org/math/cc-sixth-grade-math	Khan Academy: 6th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.388205	Understand the concepts and methods of Measures of Variability.\nSolve problems involving Measures of Variability accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Measures of Variability to real-world situations.	This lesson covers important mathematical concepts related to Measures of Variability. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Measures of Variability. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Measures of Variability using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Measures of Variability	This lesson covers important mathematical concepts related to Measures of Variability. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Measures of Variability", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Measures of Variability helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
236	79	Plant vs Animal Cells	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.403534	Explain the key scientific concepts of Plant vs Animal Cells.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plant vs Animal Cells to real-world applications.	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	[{"title": "Photosynthesis Equation", "content": "6CO₂ + 6H₂O + sunlight → C₆H₁₂O₆ + 6O₂. Reactants: carbon dioxide and water. Products: glucose and oxygen. Energy source: sunlight.", "solution": "Plants take in CO₂ and water, use sunlight, and produce sugar and oxygen."}, {"title": "Plant Life Cycle", "content": "A bean seed is planted in soil → it absorbs water and germinates → a root grows down, a shoot grows up → leaves develop and photosynthesis begins → the plant flowers → bees pollinate the flowers → new bean pods (seeds) form.", "solution": "Seed → Germination → Growth → Flowering → Pollination → Seed Production"}]	[{"hint": "Think about what the plant takes in from its environment.", "answer": "Sunlight, water, and carbon dioxide.", "question": "What three things does a plant need for photosynthesis?"}, {"hint": "Think about which pigment is involved in photosynthesis.", "answer": "Chlorophyll absorbs red and blue light and reflects green light.", "question": "Explain why plants appear green."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Plant vs Animal Cells	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	\N	\N	["2 small pots", "potting soil", "bean seeds", "water", "ruler", "journal"]	Wash hands after handling soil. Do not eat seeds or soil.	[{"step": "Plant a bean seed in each pot. Place one in sunlight, one in a dark closet.", "detail": "Water both equally. Measure and record growth daily for 2 weeks."}]	["Which plant grew taller? Why?", "What happened to the plant without sunlight?", "What does this tell you about what plants need?"]	Write a conclusion explaining how sunlight affects plant growth. Use your data as evidence.	\N	\N	\N	\N	\N	\N	Agriculture depends on understanding plant needs. Farmers optimize sunlight, water, and soil nutrients to grow food.	t
238	80	Digestive System	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.405868	Explain the key scientific concepts of Digestive System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Digestive System to real-world applications.	This lesson explores scientific concepts related to Digestive System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Digestive System. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Digestive System	This lesson explores scientific concepts related to Digestive System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Digestive System connects to real-world applications in technology, health, and environmental stewardship.	f
241	81	Biomes	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.409008	Explain the key scientific concepts of Biomes.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Biomes to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Biomes	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	t
448	150	Harlem Renaissance	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.627566	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Harlem Renaissance, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
245	82	Ancient Egypt	\N	2	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.413167	Explain key concepts related to Ancient Egypt.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Ancient Egypt. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Ancient Egypt, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Ancient Egypt and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Ancient Egypt connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Ancient Egypt	This lesson examines important social studies concepts related to Ancient Egypt. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Ancient Egypt. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Ancient Egypt develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
247	83	Maps and Globes	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.415338	Explain key concepts related to Maps and Globes.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Maps and Globes	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
249	83	Cultural Geography	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.417073	Explain key concepts related to Cultural Geography.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Cultural Geography	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
251	84	Roman Empire	\N	2	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.41916	Explain key concepts related to Roman Empire.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Roman Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Roman Empire, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Roman Empire and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Roman Empire connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Roman Empire	This lesson examines important social studies concepts related to Roman Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Roman Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Roman Empire develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
265	89	Short Stories	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.434771	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
266	89	Poetry Analysis	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.435635	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
267	89	Drama and Plays	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.436568	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
272	91	Active vs Passive Voice	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.442123	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding grammar and sentence structure. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Active vs Passive Voice, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
269	90	Expository Writing	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.438976	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
271	91	Phrases and Clauses	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	10-15 min	\N	\N	t	2026-06-23 11:23:04.4411	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding grammar and sentence structure. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Phrases and Clauses, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
275	92	Connotation vs Denotation	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.445126	Read and comprehend a grade-level short story.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding vocabulary in context. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Connotation vs Denotation, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
254	85	Proportional Graphs	\N	2	https://www.khanacademy.org/math/cc-seventh-grade-math	Khan Academy: 7th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.422991	Understand the concepts and methods of Proportional Graphs.\nSolve problems involving Proportional Graphs accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Proportional Graphs to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Proportional Graphs	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Proportional Graphs helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
256	86	Multiplying and Dividing Integers	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	10-15 min	\N	\N	t	2026-06-23 11:23:04.425005	Understand the concepts and methods of Multiplying and Dividing Integers.\nSolve problems involving Multiplying and Dividing Integers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multiplying and Dividing Integers to real-world situations.	Multiplication is repeated addition. For multi-digit: multiply each digit, shift rows, add partial products. Distributive property: a(b+c) = ab+ac.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 10 × 8. This means 10 groups of 8, or 8 added 10 times.", "solution": "10 × 8 = 80"}, {"title": "Distributive Property", "content": "Calculate 24 × 9 using the distributive property. Break 24 into 20 + 4: (20 × 9) + (4 × 9) = 180 + 36.", "solution": "24 × 9 = 216"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 12 × 12"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 8 rows of desks with 5 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Multiplying and Dividing Integers	Multiplication is repeated addition. For multi-digit: multiply each digit, shift rows, add partial products. Distributive property: a(b+c) = ab+ac.	a × b = product	[{"step": "Calculate 19 × 20", "work": "19 groups of 20: 19×20=380", "answer": "380"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multiplying and Dividing Integers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
258	86	Rational Number Word Problems	\N	3	https://www.khanacademy.org/math/cc-seventh-grade-math	Khan Academy: 7th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.426697	Understand the concepts and methods of Rational Number Word Problems.\nSolve problems involving Rational Number Word Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Rational Number Word Problems to real-world situations.	This lesson covers important mathematical concepts related to Rational Number Word Problems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Rational Number Word Problems	This lesson covers important mathematical concepts related to Rational Number Word Problems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Rational Number Word Problems", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Rational Number Word Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
260	87	Area of Circles	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.428742	Understand the concepts and methods of Area of Circles.\nSolve problems involving Area of Circles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Area of Circles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 6 cm and width 8 cm. Area = length × width.", "solution": "A = 6 × 8 = 48 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(6 + 8) = 2(14) = 28 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 6 and height 4."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Area of Circles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 5×3", "work": "A = length × width = 5 × 3", "answer": "15 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Area of Circles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
263	88	Sampling	\N	2	https://www.khanacademy.org/math/cc-seventh-grade-math	Khan Academy: 7th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.431747	Understand the concepts and methods of Sampling.\nSolve problems involving Sampling accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Sampling to real-world situations.	This lesson covers important mathematical concepts related to Sampling. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Sampling. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Sampling using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Sampling	This lesson covers important mathematical concepts related to Sampling. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Sampling", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Sampling helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
277	93	Genetics Basics	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.447504	Explain the key scientific concepts of Genetics Basics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Genetics Basics to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Genetics Basics	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	t
279	93	Natural Selection	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.44926	Explain the key scientific concepts of Natural Selection.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Natural Selection to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Natural Selection	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	f
281	94	Skeletal and Muscular Systems	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.451409	Explain the key scientific concepts of Skeletal and Muscular Systems.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Skeletal and Muscular Systems to real-world applications.	This lesson explores scientific concepts related to Skeletal and Muscular Systems. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Skeletal and Muscular Systems. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Skeletal and Muscular Systems	This lesson explores scientific concepts related to Skeletal and Muscular Systems. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Skeletal and Muscular Systems connects to real-world applications in technology, health, and environmental stewardship.	f
283	95	Population Dynamics	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.453416	Explain the key scientific concepts of Population Dynamics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Population Dynamics to real-world applications.	This lesson explores scientific concepts related to Population Dynamics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Population Dynamics. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Population Dynamics	This lesson explores scientific concepts related to Population Dynamics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Population Dynamics connects to real-world applications in technology, health, and environmental stewardship.	f
286	96	Middle Ages in Europe	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.457063	Explain key concepts related to Middle Ages in Europe.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Middle Ages in Europe. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Middle Ages in Europe, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Middle Ages in Europe and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Middle Ages in Europe connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Middle Ages in Europe	This lesson examines important social studies concepts related to Middle Ages in Europe. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Middle Ages in Europe. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Middle Ages in Europe develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
288	96	Asian Civilizations	\N	3	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.458893	Explain key concepts related to Asian Civilizations.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Asian Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Asian Civilizations."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Asian Civilizations	This lesson examines important social studies concepts related to Asian Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Asian Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Asian Civilizations develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
289	97	Renaissance Art and Ideas	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.460055	Explain key concepts related to Renaissance Art and Ideas.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Renaissance Art and Ideas. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Renaissance Art and Ideas, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Renaissance Art and Ideas and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Renaissance Art and Ideas connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Renaissance Art and Ideas	This lesson examines important social studies concepts related to Renaissance Art and Ideas. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Renaissance Art and Ideas. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Renaissance Art and Ideas develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
291	97	Age of Exploration	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.461753	Explain key concepts related to Age of Exploration.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Age of Exploration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Age of Exploration, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Age of Exploration and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Age of Exploration connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Age of Exploration	This lesson examines important social studies concepts related to Age of Exploration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Age of Exploration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Age of Exploration develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
292	98	Rights and Responsibilities	\N	1	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.46299	Explain key concepts related to Rights and Responsibilities.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Rights and Responsibilities	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
293	98	Local and State Government	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.463904	Explain key concepts related to Local and State Government.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Local and State Government	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
307	103	Analyzing Arguments	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.478754	Read and comprehend a grade-level informational text.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing reading comprehension strategies. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
308	103	Evaluating Evidence	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.479653	Read and comprehend a grade-level informational text.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing reading comprehension strategies. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Evaluating Evidence, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
309	103	Identifying Bias	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.480503	Read and comprehend a grade-level informational text.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing reading comprehension strategies. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Identifying Bias, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
311	104	Research Methods	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.482566	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Research Methods, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
315	105	Comparative Analysis	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.48648	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Comparative Analysis, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
316	106	Formal vs Informal Writing	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.487707	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
317	106	Public Speaking	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.488674	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Public Speaking, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
318	106	Digital Literacy	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.489544	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Digital Literacy, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
298	100	Solving by Graphing	\N	1	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.469351	Understand the concepts and methods of Solving by Graphing.\nSolve problems involving Solving by Graphing accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Solving by Graphing to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Solving by Graphing	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solving by Graphing helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
300	100	Real-World Systems	\N	3	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.471108	Understand the concepts and methods of Real-World Systems.\nSolve problems involving Real-World Systems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Real-World Systems to real-world situations.	This lesson covers important mathematical concepts related to Real-World Systems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Real-World Systems. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Real-World Systems using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Real-World Systems	This lesson covers important mathematical concepts related to Real-World Systems. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Real-World Systems", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Real-World Systems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
303	101	Function Tables	\N	3	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.474305	Understand the concepts and methods of Function Tables.\nSolve problems involving Function Tables accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Function Tables to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Function Tables	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Function Tables helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
321	107	Chemical Reactions Basics	\N	3	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.492825	Explain the key scientific concepts of Chemical Reactions Basics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Chemical Reactions Basics to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Chemical Reactions Basics	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
306	102	Volume of Cylinders Cones and Spheres	\N	3	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.477178	Understand the concepts and methods of Volume of Cylinders Cones and Spheres.\nSolve problems involving Volume of Cylinders Cones and Spheres accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Volume of Cylinders Cones and Spheres to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 12 cm and width 6 cm. Area = length × width.", "solution": "A = 12 × 6 = 72 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(12 + 6) = 2(18) = 36 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 8 and height 10."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Volume of Cylinders Cones and Spheres	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 13×8", "work": "A = length × width = 13 × 8", "answer": "104 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Volume of Cylinders Cones and Spheres helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
320	107	Elements and Compounds	\N	2	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.491966	Explain the key scientific concepts of Elements and Compounds.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Elements and Compounds to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Elements and Compounds	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
323	108	Energy and Work	\N	2	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.49499	Explain the key scientific concepts of Energy and Work.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Energy and Work to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Energy and Work	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
325	109	Plate Tectonics	\N	1	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.496947	Explain the key scientific concepts of Plate Tectonics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plate Tectonics to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Plate Tectonics	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
328	110	Creating the Constitution	\N	1	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.499994	Explain key concepts related to Creating the Constitution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Creating the Constitution	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
330	110	Amendments	\N	3	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.501675	Explain key concepts related to Amendments.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Amendments. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Amendments, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Amendments and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Amendments connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Amendments	This lesson examines important social studies concepts related to Amendments. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Amendments. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Amendments develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
332	111	Key Battles and Leaders	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.50368	Explain key concepts related to Key Battles and Leaders.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Key Battles and Leaders. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Key Battles and Leaders, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Key Battles and Leaders and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Key Battles and Leaders connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Key Battles and Leaders	This lesson examines important social studies concepts related to Key Battles and Leaders. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Key Battles and Leaders. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Key Battles and Leaders develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
334	112	Industrial Revolution	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.506205	Explain key concepts related to Industrial Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Industrial Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Industrial Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
336	112	Progressive Era	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.50815	Explain key concepts related to Progressive Era.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Progressive Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Progressive Era, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Progressive Era and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Progressive Era connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Progressive Era	This lesson examines important social studies concepts related to Progressive Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Progressive Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Progressive Era develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
350	117	The Novel	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.523058	Read and comprehend a grade-level primary source.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 9	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
353	118	Compare and Contrast	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.526007	Read and comprehend a grade-level primary source.\nApply the skill of comparing and contrasting to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in comparing and contrasting through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Compare and Contrast, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 9	High School	\N	\N	f	Comparing and contrasting	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
354	118	Rhetorical Analysis	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.526869	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Appeals", "content": "\\"As a 20-year veteran teacher (ethos), I have seen countless students struggle with overcrowded classrooms (pathos). Studies show that reducing class size by 30% improves test scores by 15% (logos).\\"", "solution": "This passage uses all three rhetorical appeals."}, {"title": "Addressing a Counterclaim", "content": "Claim: Schools should start later. Counterclaim: Later starts conflict with parents' work schedules. Rebuttal: Adjusted bus routes and before-school programs can accommodate working families.", "solution": "Acknowledging and responding to opposition strengthens the argument."}]	[{"hint": "Start with your claim, then support it with credibility, emotion, and evidence.", "answer": null, "question": "Write a short persuasive paragraph using at least one example of ethos, pathos, and logos."}, {"hint": "What kind of evidence is this — emotional, credibility-based, or logical?", "answer": "Ethos (appeal to expert authority) and Logos (statistical evidence).", "question": "Identify the rhetorical appeal (ethos, pathos, or logos) in this statement: \\"Nine out of ten dentists recommend this toothpaste.\\""}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 9	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
356	119	Parallel Structure	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.529048	Read and comprehend a grade-level literature excerpt.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding grammar and sentence structure through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Parallel Structure, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 9	High School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
358	120	Ethos Pathos Logos	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.531308	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Ethos Pathos Logos, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 9	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
360	120	Evaluating Arguments	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.533136	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 9	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
339	113	Properties of Real Numbers	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.511468	Understand the concepts and methods of Properties of Real Numbers.\nSolve problems involving Properties of Real Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Properties of Real Numbers to real-world situations.	This lesson covers important mathematical concepts related to Properties of Real Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Properties of Real Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Properties of Real Numbers using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Properties of Real Numbers	This lesson covers important mathematical concepts related to Properties of Real Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Properties of Real Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Properties of Real Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
342	114	Systems of Linear Equations	\N	3	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.514562	Understand the concepts and methods of Systems of Linear Equations.\nSolve problems involving Systems of Linear Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Systems of Linear Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 7x = 35. Divide both sides by 7.", "solution": "x = 5"}, {"title": "Two-Step Equation", "content": "Solve: 7x + 2 = 37. Step 1: Subtract 2 from both sides → 7x = 35. Step 2: Divide by 7.", "solution": "x = 5"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Systems of Linear Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 2x + 1 = 9", "work": "Step 1: Subtract 1: 2x = 8. Step 2: Divide by 2: x = 4. Check: 2(4)+1=9 ✓", "answer": "x = 4"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Systems of Linear Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
345	115	Factoring	\N	3	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.51743	Understand the concepts and methods of Factoring.\nSolve problems involving Factoring accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Factoring to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Factoring", "content": "Solve x² − 7x + 12 = 0. Find two numbers that multiply to 12 and add to −7: −3 and −4. Factor: (x − 3)(x − 4) = 0.", "solution": "x = 3 or x = 4"}, {"title": "Quadratic Formula", "content": "Solve 2x² + 3x − 2 = 0. a=2, b=3, c=−2. Discriminant = 9 + 16 = 25. x = (−3 ± 5)/4.", "solution": "x = 1/2 or x = −2"}]	[{"hint": "Find two numbers that multiply to 20 and add to −9.", "answer": "x = 4 or x = 5", "question": "Factor and solve: x² − 9x + 20 = 0"}, {"hint": "a=1, b=2, c=−8. Plug into the formula.", "answer": "x = 2 or x = −4", "question": "Use the quadratic formula to solve: x² + 2x − 8 = 0"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Factoring	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Factoring helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
453	151	Advanced Research Papers	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.632448	Read and comprehend a grade-level literature excerpt.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Advanced Research Papers, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 11	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
361	121	Cell Structure and Function	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.534687	Explain the key scientific concepts of Cell Structure and Function.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cell Structure and Function to real-world applications.	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	[{"title": "Animal vs. Plant Cell", "content": "Both have: nucleus, mitochondria, cell membrane, ribosomes. Only plant cells have: cell wall, chloroplasts, large central vacuole.", "solution": "Plant cells have structures for photosynthesis and structural support that animal cells lack."}]	[{"hint": "Think about energy production.", "answer": "Mitochondria produce ATP (energy) through cellular respiration.", "question": "What is the function of the mitochondria?"}, {"hint": "Think about structures unique to plant cells.", "answer": "Plant cells have cell walls and chloroplasts; animal cells do not.", "question": "Name two differences between plant and animal cells."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Cell Structure and Function	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	\N	\N	["microscope (optional)", "prepared slides or diagrams", "colored pencils", "paper"]	\N	[{"step": "Draw and label an animal cell and a plant cell.", "detail": "Include: nucleus, cell membrane, mitochondria, ribosomes. For plant cells, add: cell wall, chloroplasts, central vacuole."}]	["What structures do plant and animal cells share?", "What structures are unique to plant cells?", "Why do plant cells need chloroplasts but animal cells do not?"]	Explain the relationship between cell structure and function. Why does each organelle matter?	\N	\N	\N	\N	\N	\N	Understanding cells is the foundation of medicine, genetics, and biotechnology.	t
372	124	Human Impact	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.546706	Explain the key scientific concepts of Human Impact.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Human Impact to real-world applications.	This lesson explores scientific concepts related to Human Impact. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Human Impact. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Human Impact	This lesson explores scientific concepts related to Human Impact. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Human Impact connects to real-world applications in technology, health, and environmental stewardship.	f
365	122	DNA Structure	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.539343	Explain the key scientific concepts of DNA Structure.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect DNA Structure to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	DNA Structure	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	t
367	123	Evidence for Evolution	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.541759	Explain the key scientific concepts of Evidence for Evolution.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Evidence for Evolution to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Evidence for Evolution	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	t
369	123	Speciation	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.543743	Explain the key scientific concepts of Speciation.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Speciation to real-world applications.	This lesson explores scientific concepts related to Speciation. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Speciation. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Speciation	This lesson explores scientific concepts related to Speciation. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Speciation connects to real-world applications in technology, health, and environmental stewardship.	f
371	124	Population Ecology	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.545885	Explain the key scientific concepts of Population Ecology.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Population Ecology to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Population Ecology	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	f
374	125	Classical Greece and Rome	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.54905	Explain key concepts related to Classical Greece and Rome.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Classical Greece and Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Classical Greece and Rome, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Classical Greece and Rome and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Classical Greece and Rome connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Classical Greece and Rome	This lesson examines important social studies concepts related to Classical Greece and Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Classical Greece and Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Classical Greece and Rome develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
377	126	Crusades	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.552066	Explain key concepts related to Crusades.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Crusades. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Crusades, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Crusades and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Crusades connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Crusades	This lesson examines important social studies concepts related to Crusades. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Crusades. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Crusades develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
379	127	Enlightenment	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.554217	Explain key concepts related to Enlightenment.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Enlightenment. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Enlightenment, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Enlightenment and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Enlightenment connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Enlightenment	This lesson examines important social studies concepts related to Enlightenment. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Enlightenment. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Enlightenment develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
380	127	French Revolution	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.555694	Explain key concepts related to French Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to French Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	French Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
381	127	Industrial Revolution	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.556794	Explain key concepts related to Industrial Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Industrial Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Industrial Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
383	128	World War II	\N	2	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.558807	Explain key concepts related to World War II.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to World War II."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	World War II	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
397	133	Ancient and Classical Literature	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.573694	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 10	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
400	134	Advanced Research Methods	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.576683	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Advanced Research Methods, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
402	134	Synthesis Writing	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.578598	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
404	135	Analyzing Rhetoric	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.580621	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Appeals", "content": "\\"As a 20-year veteran teacher (ethos), I have seen countless students struggle with overcrowded classrooms (pathos). Studies show that reducing class size by 30% improves test scores by 15% (logos).\\"", "solution": "This passage uses all three rhetorical appeals."}, {"title": "Addressing a Counterclaim", "content": "Claim: Schools should start later. Counterclaim: Later starts conflict with parents' work schedules. Rebuttal: Adjusted bus routes and before-school programs can accommodate working families.", "solution": "Acknowledging and responding to opposition strengthens the argument."}]	[{"hint": "Start with your claim, then support it with credibility, emotion, and evidence.", "answer": null, "question": "Write a short persuasive paragraph using at least one example of ethos, pathos, and logos."}, {"hint": "What kind of evidence is this — emotional, credibility-based, or logical?", "answer": "Ethos (appeal to expert authority) and Logos (statistical evidence).", "question": "Identify the rhetorical appeal (ethos, pathos, or logos) in this statement: \\"Nine out of ten dentists recommend this toothpaste.\\""}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
406	136	Short Story Writing	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.582658	Read and comprehend a grade-level primary source.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 10	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
408	136	Personal Narrative	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.584328	Read and comprehend a grade-level literature excerpt.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 10	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
385	129	Points Lines and Planes	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.561265	Understand the concepts and methods of Points Lines and Planes.\nSolve problems involving Points Lines and Planes accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Points Lines and Planes to real-world situations.	This lesson covers important mathematical concepts related to Points Lines and Planes. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Points Lines and Planes. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Points Lines and Planes using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Points Lines and Planes	This lesson covers important mathematical concepts related to Points Lines and Planes. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Points Lines and Planes", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Points Lines and Planes helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
388	130	Triangle Properties	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.564437	Understand the concepts and methods of Triangle Properties.\nSolve problems involving Triangle Properties accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Triangle Properties to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 11 cm and width 5 cm. Area = length × width.", "solution": "A = 11 × 5 = 55 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(11 + 5) = 2(16) = 32 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 8 and height 10."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Triangle Properties	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 12×5", "work": "A = length × width = 12 × 5", "answer": "60 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Triangle Properties helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
389	130	Congruent Triangles	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.565382	Understand the concepts and methods of Congruent Triangles.\nSolve problems involving Congruent Triangles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Congruent Triangles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 12 cm and width 4 cm. Area = length × width.", "solution": "A = 12 × 4 = 48 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(12 + 4) = 2(16) = 32 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 8 and height 9."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Congruent Triangles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 6×3", "work": "A = length × width = 6 × 3", "answer": "18 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Congruent Triangles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
390	130	Similar Triangles	\N	3	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.56618	Understand the concepts and methods of Similar Triangles.\nSolve problems involving Similar Triangles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Similar Triangles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 11 cm and width 7 cm. Area = length × width.", "solution": "A = 11 × 7 = 77 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(11 + 7) = 2(18) = 36 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 9 and height 6."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Similar Triangles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 13×4", "work": "A = length × width = 13 × 4", "answer": "52 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Similar Triangles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
392	131	Arc Length and Sector Area	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.56812	Understand the concepts and methods of Arc Length and Sector Area.\nSolve problems involving Arc Length and Sector Area accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Arc Length and Sector Area to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 7 cm and width 7 cm. Area = length × width.", "solution": "A = 7 × 7 = 49 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(7 + 7) = 2(14) = 28 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 14 and height 8."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Arc Length and Sector Area	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 13×4", "work": "A = length × width = 13 × 4", "answer": "52 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Arc Length and Sector Area helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
393	131	Inscribed Angles	\N	3	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.568941	Understand the concepts and methods of Inscribed Angles.\nSolve problems involving Inscribed Angles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Inscribed Angles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 7 cm and width 7 cm. Area = length × width.", "solution": "A = 7 × 7 = 49 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(7 + 7) = 2(14) = 28 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 14 and height 6."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Inscribed Angles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 6×6", "work": "A = length × width = 6 × 6", "answer": "36 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Inscribed Angles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
394	132	Area of Polygons	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.570193	Understand the concepts and methods of Area of Polygons.\nSolve problems involving Area of Polygons accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Area of Polygons to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 9 cm and width 7 cm. Area = length × width.", "solution": "A = 9 × 7 = 63 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(9 + 7) = 2(16) = 32 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 6 and height 8."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Area of Polygons	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 5×3", "work": "A = length × width = 5 × 3", "answer": "15 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Area of Polygons helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
409	137	Atoms and Elements	\N	1	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.586006	Explain the key scientific concepts of Atoms and Elements.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Atoms and Elements to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Atoms and Elements	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
411	137	Electron Configuration	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.58798	Explain the key scientific concepts of Electron Configuration.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Electron Configuration to real-world applications.	This lesson explores scientific concepts related to Electron Configuration. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Electron Configuration. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Electron Configuration	This lesson explores scientific concepts related to Electron Configuration. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Electron Configuration connects to real-world applications in technology, health, and environmental stewardship.	f
413	138	Covalent Bonds	\N	2	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.590209	Explain the key scientific concepts of Covalent Bonds.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Covalent Bonds to real-world applications.	This lesson explores scientific concepts related to Covalent Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Covalent Bonds	This lesson explores scientific concepts related to Covalent Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Covalent Bonds connects to real-world applications in technology, health, and environmental stewardship.	t
415	139	Balancing Equations	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.592386	Explain the key scientific concepts of Balancing Equations.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Balancing Equations to real-world applications.	This lesson explores scientific concepts related to Balancing Equations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Balancing Equations. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Balancing Equations	This lesson explores scientific concepts related to Balancing Equations. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Balancing Equations connects to real-world applications in technology, health, and environmental stewardship.	f
419	140	Acids and Bases	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.59635	Explain the key scientific concepts of Acids and Bases.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Acids and Bases to real-world applications.	This lesson explores scientific concepts related to Acids and Bases. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Acids and Bases. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Acids and Bases	This lesson explores scientific concepts related to Acids and Bases. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Acids and Bases connects to real-world applications in technology, health, and environmental stewardship.	f
440	147	Logarithmic Functions	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.618975	Understand the concepts and methods of Logarithmic Functions.\nSolve problems involving Logarithmic Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Logarithmic Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Logarithmic Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Logarithmic Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
423	141	Creating a New Nation	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.601061	Explain key concepts related to Creating a New Nation.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Creating a New Nation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Creating a New Nation, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Creating a New Nation and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Creating a New Nation connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Creating a New Nation	This lesson examines important social studies concepts related to Creating a New Nation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Creating a New Nation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Creating a New Nation develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
424	142	Westward Expansion	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.602369	Explain key concepts related to Westward Expansion.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Westward Expansion."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Westward Expansion	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
425	142	Jacksonian Democracy	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.603325	Explain key concepts related to Jacksonian Democracy.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Jacksonian Democracy	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
427	143	Slavery and Abolition	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.605531	Explain key concepts related to Slavery and Abolition.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Slavery and Abolition. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Slavery and Abolition, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Slavery and Abolition and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Slavery and Abolition connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Slavery and Abolition	This lesson examines important social studies concepts related to Slavery and Abolition. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Slavery and Abolition. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Slavery and Abolition develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
429	143	Reconstruction Era	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.607387	Explain key concepts related to Reconstruction Era.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Reconstruction Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Reconstruction Era, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Reconstruction Era and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Reconstruction Era connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Reconstruction Era	This lesson examines important social studies concepts related to Reconstruction Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Reconstruction Era. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Reconstruction Era develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
431	144	Civil Rights Movement	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.609796	Explain key concepts related to Civil Rights Movement.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Civil Rights Movement	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
445	149	Early American Literature	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.6248	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
450	150	Contemporary Literature	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.629497	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
452	151	Analytical Writing	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.631529	Read and comprehend a grade-level primary source.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 11	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
455	152	Grammar and Usage	\N	2	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	10-15 min	\N	\N	t	2026-06-23 11:23:04.634757	Read and comprehend a grade-level primary source.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding grammar and sentence structure through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 11	High School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
456	152	Essay Writing Under Time	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.63566	Read and comprehend a grade-level literature excerpt.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding essay structure and argument through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 11	High School	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
436	146	Rational Expressions	\N	1	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.615283	Understand the concepts and methods of Rational Expressions.\nSolve problems involving Rational Expressions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Rational Expressions to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 8x = 24. Divide both sides by 8.", "solution": "x = 3"}, {"title": "Two-Step Equation", "content": "Solve: 8x + 6 = 30. Step 1: Subtract 6 from both sides → 8x = 24. Step 2: Divide by 8.", "solution": "x = 3"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Rational Expressions	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 5x + 3 = 53", "work": "Step 1: Subtract 3: 5x = 50. Step 2: Divide by 5: x = 10. Check: 5(10)+3=53 ✓", "answer": "x = 10"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Rational Expressions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
438	146	Complex Numbers	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.616958	Understand the concepts and methods of Complex Numbers.\nSolve problems involving Complex Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Complex Numbers to real-world situations.	This lesson covers important mathematical concepts related to Complex Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Complex Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Complex Numbers using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Complex Numbers	This lesson covers important mathematical concepts related to Complex Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Complex Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Complex Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
442	148	Arithmetic Sequences	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	10-15 min	\N	\N	t	2026-06-23 11:23:04.621248	Understand the concepts and methods of Arithmetic Sequences.\nSolve problems involving Arithmetic Sequences accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Arithmetic Sequences to real-world situations.	This lesson covers important mathematical concepts related to Arithmetic Sequences. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Arithmetic Sequences. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Arithmetic Sequences using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Arithmetic Sequences	This lesson covers important mathematical concepts related to Arithmetic Sequences. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Arithmetic Sequences", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Arithmetic Sequences helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
443	148	Geometric Sequences	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.622223	Understand the concepts and methods of Geometric Sequences.\nSolve problems involving Geometric Sequences accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Geometric Sequences to real-world situations.	This lesson covers important mathematical concepts related to Geometric Sequences. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Geometric Sequences. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Geometric Sequences using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Geometric Sequences	This lesson covers important mathematical concepts related to Geometric Sequences. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Geometric Sequences", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Geometric Sequences helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
458	153	Newton Laws of Motion	\N	2	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.638355	Explain the key scientific concepts of Newton Laws of Motion.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Newton Laws of Motion to real-world applications.	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	[{"title": "Newton's Second Law", "content": "A 10 kg box is pushed with a force of 50 N. What is its acceleration? F = ma → 50 = 10 × a → a = 50/10.", "solution": "a = 5 m/s²"}, {"title": "Newton's Third Law", "content": "A swimmer pushes water backward (action). The water pushes the swimmer forward (reaction). This is why swimming works.", "solution": "Action and reaction forces are equal in magnitude and opposite in direction."}]	[{"hint": "Use F = ma.", "answer": "F = 5 × 3 = 15 N", "question": "Calculate: A 5 kg object accelerates at 3 m/s². What force is acting on it?"}, {"hint": "What force opposes the ball's motion?", "answer": "Friction between the ball and grass slows it down until it stops.", "question": "Explain why a soccer ball eventually stops rolling on grass."}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Newton Laws of Motion	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	\N	\N	["toy car", "ramp", "ruler", "timer", "different surfaces (carpet, tile, sandpaper)"]	Keep the ramp stable. Do not stand on the ramp.	[{"step": "Release a toy car from the same height on ramps with different surfaces.", "detail": "Measure how far the car travels on each surface. Record in a data table."}]	["On which surface did the car travel farthest?", "On which surface did it travel the shortest distance?", "How does friction affect the car's motion?"]	Explain how friction affects motion using your experimental data as evidence.	\N	\N	\N	\N	\N	\N	Engineers design brakes, tires, and road surfaces using knowledge of friction and motion.	t
460	154	Wave Properties	\N	1	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.640426	Explain the key scientific concepts of Wave Properties.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Wave Properties to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Wave Properties	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
462	154	Light and Optics	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.6422	Explain the key scientific concepts of Light and Optics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Light and Optics to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Light and Optics	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	f
463	155	Electric Charge	\N	1	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.643342	Explain the key scientific concepts of Electric Charge.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Electric Charge to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Electric Charge	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
464	155	Circuits	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.6442	Explain the key scientific concepts of Circuits.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Circuits to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Circuits	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	f
466	156	Nuclear Physics	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.646357	Explain the key scientific concepts of Nuclear Physics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Nuclear Physics to real-world applications.	This lesson explores scientific concepts related to Nuclear Physics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Nuclear Physics. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Nuclear Physics	This lesson explores scientific concepts related to Nuclear Physics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Nuclear Physics connects to real-world applications in technology, health, and environmental stewardship.	f
467	156	Quantum Mechanics Intro	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.647242	Explain the key scientific concepts of Quantum Mechanics Intro.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Quantum Mechanics Intro to real-world applications.	This lesson explores scientific concepts related to Quantum Mechanics Intro. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Quantum Mechanics Intro. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Quantum Mechanics Intro	This lesson explores scientific concepts related to Quantum Mechanics Intro. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Quantum Mechanics Intro connects to real-world applications in technology, health, and environmental stewardship.	f
468	156	Relativity Intro	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.648077	Explain the key scientific concepts of Relativity Intro.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Relativity Intro to real-world applications.	This lesson explores scientific concepts related to Relativity Intro. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Relativity Intro. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Relativity Intro	This lesson explores scientific concepts related to Relativity Intro. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Relativity Intro connects to real-world applications in technology, health, and environmental stewardship.	f
471	157	The Presidency and Courts	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.651344	Explain key concepts related to The Presidency and Courts.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to The Presidency and Courts. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying The Presidency and Courts, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to The Presidency and Courts and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does The Presidency and Courts connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	The Presidency and Courts	This lesson examines important social studies concepts related to The Presidency and Courts. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to The Presidency and Courts. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying The Presidency and Courts develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
473	158	Due Process	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.653564	Explain key concepts related to Due Process.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Due Process. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Due Process, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Due Process and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Due Process connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Due Process	This lesson examines important social studies concepts related to Due Process. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Due Process. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Due Process develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
475	159	Supply and Demand	\N	1	https://www.khanacademy.org/economics-finance-domain	Khan Academy: Economics & Finance	10-15 min	\N	\N	t	2026-06-23 11:23:04.655946	Explain key concepts related to Supply and Demand.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	[{"title": "Supply and Demand", "content": "A popular toy at holiday time: demand is high but supply is limited → price increases. After the holidays: demand drops → price decreases or stores offer sales.", "solution": "Prices rise when demand exceeds supply and fall when supply exceeds demand."}]	[{"hint": "Opportunity cost is what you give up.", "answer": "The concert experience is the opportunity cost.", "question": "You have $50. You can buy a video game or go to a concert. If you choose the game, what is the opportunity cost?"}, {"hint": "How does rain affect demand for umbrellas?", "answer": "Demand increases while supply stays the same, so the price tends to rise.", "question": "Explain what happens to the price of umbrellas when it starts raining heavily."}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Supply and Demand	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	Economic literacy helps with personal budgeting, career decisions, understanding policy, and financial planning.	t
477	159	Monetary and Fiscal Policy	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.6577	Explain key concepts related to Monetary and Fiscal Policy.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Monetary and Fiscal Policy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Monetary and Fiscal Policy, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Monetary and Fiscal Policy and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Monetary and Fiscal Policy connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Monetary and Fiscal Policy	This lesson examines important social studies concepts related to Monetary and Fiscal Policy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Monetary and Fiscal Policy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Monetary and Fiscal Policy develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
479	160	Banking and Credit	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.659933	Explain key concepts related to Banking and Credit.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Banking and Credit. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Banking and Credit, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Banking and Credit and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Banking and Credit connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Banking and Credit	This lesson examines important social studies concepts related to Banking and Credit. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Banking and Credit. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Banking and Credit develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
480	160	Investing Basics	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.660785	Explain key concepts related to Investing Basics.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Investing Basics. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Investing Basics, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Investing Basics and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Investing Basics connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Investing Basics	This lesson examines important social studies concepts related to Investing Basics. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Investing Basics. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Investing Basics develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
494	165	Shakespeare	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.675503	Read and comprehend a grade-level literature excerpt.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Shakespeare, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
498	166	Contemporary British Writers	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.679961	Read and comprehend a grade-level literature excerpt.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Contemporary British Writers, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
500	167	Academic Research	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.681966	Read and comprehend a grade-level speech.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Academic Research, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 12	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
483	161	Inverse Functions	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.664262	Understand the concepts and methods of Inverse Functions.\nSolve problems involving Inverse Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Inverse Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Inverse Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Inverse Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
502	168	Senior Research Project	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.683961	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Senior Research Project, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
503	168	Presentation Skills	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.684769	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Presentation Skills, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
481	161	Function Analysis	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.662559	Understand the concepts and methods of Function Analysis.\nSolve problems involving Function Analysis accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Function Analysis to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Function Analysis	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Function Analysis helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
486	162	Applications of Trigonometry	\N	3	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.667244	Understand the concepts and methods of Applications of Trigonometry.\nSolve problems involving Applications of Trigonometry accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Applications of Trigonometry to real-world situations.	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding a Side", "content": "In a right triangle with angle 30° and hypotenuse 10, find the opposite side. sin(30°) = opposite/10, so opposite = 10 × sin(30°) = 10 × 0.5.", "solution": "opposite = 5"}, {"title": "Finding an Angle", "content": "A right triangle has opposite side 4 and adjacent side 3. Find angle θ. tan(θ) = 4/3 ≈ 1.333. θ = arctan(1.333).", "solution": "θ ≈ 53.1°"}]	[{"hint": "sin(45°) = opposite/8. sin(45°) ≈ 0.707.", "answer": "≈ 5.66", "question": "Find the missing side: right triangle, angle 45°, hypotenuse 8. Find opposite."}, {"hint": "Recall the common angle values or use the unit circle.", "answer": "0.5", "question": "What is cos(60°)?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Applications of Trigonometry	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	SOH CAH TOA: sin=opp/hyp, cos=adj/hyp, tan=opp/adj	[{"step": "Find opposite side: angle 30°, hyp=10", "work": "sin(30°)=opp/10, opp=10×0.5=5", "answer": "5"}]	[{"mistake": "Using the wrong trig ratio for the given sides", "correction": "SOH CAH TOA: identify which sides you have relative to the angle."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Applications of Trigonometry helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
509	170	Ocean Currents	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.691471	Explain the key scientific concepts of Ocean Currents.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ocean Currents to real-world applications.	This lesson explores scientific concepts related to Ocean Currents. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Ocean Currents. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Ocean Currents	This lesson explores scientific concepts related to Ocean Currents. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ocean Currents connects to real-world applications in technology, health, and environmental stewardship.	f
489	163	Continuity	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.669959	Understand the concepts and methods of Continuity.\nSolve problems involving Continuity accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Continuity to real-world situations.	This lesson covers important mathematical concepts related to Continuity. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Continuity. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Continuity using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Continuity	This lesson covers important mathematical concepts related to Continuity. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Continuity", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Continuity helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
490	164	Derivatives Concept	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.671195	Understand the concepts and methods of Derivatives Concept.\nSolve problems involving Derivatives Concept accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Derivatives Concept to real-world situations.	This lesson covers important mathematical concepts related to Derivatives Concept. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Derivatives Concept. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Derivatives Concept using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Derivatives Concept	This lesson covers important mathematical concepts related to Derivatives Concept. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Derivatives Concept", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Derivatives Concept helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
491	164	Basic Derivative Rules	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.672165	Understand the concepts and methods of Basic Derivative Rules.\nSolve problems involving Basic Derivative Rules accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Basic Derivative Rules to real-world situations.	This lesson covers important mathematical concepts related to Basic Derivative Rules. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Basic Derivative Rules. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Basic Derivative Rules using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Basic Derivative Rules	This lesson covers important mathematical concepts related to Basic Derivative Rules. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Basic Derivative Rules", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Basic Derivative Rules helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
505	169	Minerals and Rocks	\N	1	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.687169	Explain the key scientific concepts of Minerals and Rocks.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Minerals and Rocks to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Minerals and Rocks	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
508	170	Ocean Floor	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.69054	Explain the key scientific concepts of Ocean Floor.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ocean Floor to real-world applications.	This lesson explores scientific concepts related to Ocean Floor. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Ocean Floor. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Ocean Floor	This lesson explores scientific concepts related to Ocean Floor. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ocean Floor connects to real-world applications in technology, health, and environmental stewardship.	f
511	171	Atmosphere	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.693571	Explain the key scientific concepts of Atmosphere.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Atmosphere to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Atmosphere	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	f
513	171	Climate Patterns	\N	3	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.695384	Explain the key scientific concepts of Climate Patterns.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Climate Patterns to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Climate Patterns	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
268	90	Narrative Writing	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.437938	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
515	172	Galaxies	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.697439	Explain the key scientific concepts of Galaxies.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Galaxies to real-world applications.	This lesson explores scientific concepts related to Galaxies. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Galaxies. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Galaxies	This lesson explores scientific concepts related to Galaxies. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Galaxies connects to real-world applications in technology, health, and environmental stewardship.	f
516	172	Cosmology	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.698332	Explain the key scientific concepts of Cosmology.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cosmology to real-world applications.	This lesson explores scientific concepts related to Cosmology. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Cosmology. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Cosmology	This lesson explores scientific concepts related to Cosmology. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Cosmology connects to real-world applications in technology, health, and environmental stewardship.	f
519	173	Human Rights	\N	3	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.701639	Explain key concepts related to Human Rights.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Human Rights	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
520	174	World Powers	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.702765	Explain key concepts related to World Powers.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to World Powers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying World Powers, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to World Powers and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does World Powers connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	World Powers	This lesson examines important social studies concepts related to World Powers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to World Powers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying World Powers develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
521	174	Regional Conflicts	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.703673	Explain key concepts related to Regional Conflicts.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Regional Conflicts."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Regional Conflicts	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
523	175	Culture and Society	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.705967	Explain key concepts related to Culture and Society.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Culture and Society. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Culture and Society, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Culture and Society and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Culture and Society connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Culture and Society	This lesson examines important social studies concepts related to Culture and Society. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Culture and Society. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Culture and Society develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
525	175	Social Change	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.70784	Explain key concepts related to Social Change.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Social Change. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Social Change, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Social Change and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Social Change connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Social Change	This lesson examines important social studies concepts related to Social Change. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Social Change. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Social Change develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
13	5	Letter Sounds A-M	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.146267	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Letter Sounds A-M, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
527	176	Media Literacy	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.709842	Explain key concepts related to Media Literacy.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Media Literacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Media Literacy, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Media Literacy and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Media Literacy connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Media Literacy	This lesson examines important social studies concepts related to Media Literacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Media Literacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Media Literacy develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
14	5	Letter Sounds N-Z	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.147379	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Letter Sounds N-Z, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
15	5	Consonant Blends	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.148542	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Consonant Blends, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
17	6	Reading Simple Sentences	\N	2	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.151022	Read and comprehend a grade-level informational text.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Finding the Main Idea", "content": "Read this passage: \\"Bees are essential pollinators. They carry pollen from flower to flower, helping plants reproduce. Without bees, many fruits and vegetables would not grow.\\" The main idea is that bees play a vital role in plant reproduction.", "solution": "Main idea: Bees are essential pollinators that help plants reproduce."}, {"title": "Making an Inference", "content": "The passage says: \\"Maria checked her watch again and tapped her foot.\\" What can you infer? Maria is probably waiting for someone or something and feels impatient.", "solution": "Inference: Maria is impatient about waiting."}]	[{"hint": "Ask yourself: What is this paragraph mostly about? What facts support that?", "answer": null, "question": "Read a paragraph from your current text. Identify the main idea in one sentence and list two supporting details."}, {"hint": "Look at the sentences around the unknown word for hints.", "answer": null, "question": "Find a word you do not know in your reading. Use context clues to determine its meaning, then check a dictionary."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
19	7	Writing Letters	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.153652	Read and comprehend a grade-level short story.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
23	8	Verbs	\N	2	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.160209	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Verbs, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 1	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
4	2	Adding Within 10	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.134177	Understand the concepts and methods of Adding Within 10.\nSolve problems involving Adding Within 10 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding Within 10 to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 72 + 64. Start in the ones place: 2 + 4 = 6. Write 6. Continue to the tens place.", "solution": "72 + 64 = 136"}, {"title": "Word Problem", "content": "A library has 221 fiction books and 512 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "221 + 512 = 733 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "43", "question": "Calculate: 21 + 22"}, {"hint": "Identify the two quantities and add them.", "answer": "656 items", "question": "A store sold 374 items on Monday and 282 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Adding Within 10	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 33 + 30", "work": "Line up by place value. Add ones, then tens.  33+30=63", "answer": "63"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding Within 10 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
6	2	Addition Word Problems	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.136404	Understand the concepts and methods of Addition Word Problems.\nSolve problems involving Addition Word Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Addition Word Problems to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 49 + 59. Start in the ones place: 9 + 9 = 18. Since the sum is 10 or more, write 8 and carry 1. Continue to the tens place.", "solution": "49 + 59 = 108"}, {"title": "Word Problem", "content": "A library has 226 fiction books and 532 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "226 + 532 = 758 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "127", "question": "Calculate: 52 + 75"}, {"hint": "Identify the two quantities and add them.", "answer": "278 items", "question": "A store sold 157 items on Monday and 121 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Addition Word Problems	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 16 + 36", "work": "Line up by place value. Add ones, then tens. Regroup: 16+36=52", "answer": "52"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Addition Word Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
8	3	Subtracting Within 20	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.139512	Understand the concepts and methods of Subtracting Within 20.\nSolve problems involving Subtracting Within 20 accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Subtracting Within 20 to real-world situations.	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Subtraction", "content": "Subtract 63 − 49. Ones place: 3 − 9. Since 3 < 9, borrow from the tens place.", "solution": "63 − 49 = 14"}, {"title": "Checking with Addition", "content": "If 85 − 37 = 48, check by adding: 48 + 37 = 85. ✓ Correct.", "solution": "85 − 37 = 48"}]	[{"hint": "Work right to left. Borrow if needed.", "answer": "58", "question": "Calculate: 92 − 34"}, {"hint": "Add your answer to the subtrahend.", "answer": "Yes, 58 + 34 = 92", "question": "Check your answer by adding: does 58 + 34 = 92?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Subtracting Within 20	Subtraction finds the difference between two quantities. When the top digit is smaller, borrow from the next column.	\N	[{"step": "Subtract 65 − 19", "work": "Line up by place value. Subtract right to left. Borrow if needed.", "answer": "46"}]	[{"mistake": "Forgetting to borrow when the top digit is smaller", "correction": "Borrow 1 from the next column (making it 10+ in the current column)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Subtracting Within 20 helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
12	4	Telling Time to the Hour	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.144141	Understand the concepts and methods of Telling Time to the Hour.\nSolve problems involving Telling Time to the Hour accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Telling Time to the Hour to real-world situations.	This lesson covers important mathematical concepts related to Telling Time to the Hour. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Telling Time to the Hour. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Telling Time to the Hour using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Telling Time to the Hour	This lesson covers important mathematical concepts related to Telling Time to the Hour. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Telling Time to the Hour", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Telling Time to the Hour helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
26	9	Animal Habitats	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.164426	Explain the key scientific concepts of Animal Habitats.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Animal Habitats to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Animal Habitats	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	t
28	10	Types of Weather	\N	1	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	6-8 min	\N	\N	t	2026-06-23 11:23:04.166818	Explain the key scientific concepts of Types of Weather.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Types of Weather to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Types of Weather	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
29	10	Four Seasons	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.167803	Explain the key scientific concepts of Four Seasons.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Four Seasons to real-world applications.	This lesson explores scientific concepts related to Four Seasons. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Four Seasons. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Four Seasons	This lesson explores scientific concepts related to Four Seasons. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Four Seasons connects to real-world applications in technology, health, and environmental stewardship.	f
30	10	Weather Patterns	\N	3	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	6-8 min	\N	\N	t	2026-06-23 11:23:04.169074	Explain the key scientific concepts of Weather Patterns.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Weather Patterns to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Weather Patterns	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
32	11	Sun Moon and Stars	\N	2	https://www.khanacademy.org/science/cosmology-and-astronomy	Khan Academy: Cosmology & Astronomy	6-8 min	\N	\N	t	2026-06-23 11:23:04.171464	Explain the key scientific concepts of Sun Moon and Stars.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Sun Moon and Stars to real-world applications.	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	[{"title": "Why Seasons Occur", "content": "In June, the Northern Hemisphere tilts toward the Sun → longer days, more direct sunlight → summer. In December, it tilts away → shorter days, less direct sunlight → winter. The Southern Hemisphere has opposite seasons.", "solution": "Seasons are caused by Earth's axial tilt, not distance from the Sun."}]	[{"hint": "My Very Educated Mother Just Served Us Nachos.", "answer": "Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune", "question": "List the eight planets in order from the Sun."}, {"hint": "One is spinning, the other is orbiting.", "answer": "Rotation is spinning on an axis (day/night). Revolution is orbiting around another object (year).", "question": "What is the difference between rotation and revolution?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Sun Moon and Stars	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Space science enables satellite communication, GPS navigation, weather forecasting, and exploration.	t
33	11	Earth Materials	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.172508	Explain the key scientific concepts of Earth Materials.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Earth Materials to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	\N	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Earth Materials	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	f
35	12	Rules and Laws	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	6-8 min	\N	\N	t	2026-06-23 11:23:04.175305	Explain key concepts related to Rules and Laws.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Rules and Laws	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
37	13	Maps and Directions	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.177708	Explain key concepts related to Maps and Directions.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	Maps and Directions	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
39	13	My Neighborhood	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.179787	Explain key concepts related to My Neighborhood.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to My Neighborhood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying My Neighborhood, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to My Neighborhood and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does My Neighborhood connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	My Neighborhood	This lesson examines important social studies concepts related to My Neighborhood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to My Neighborhood. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying My Neighborhood develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
41	14	National Holidays	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.182716	Explain key concepts related to National Holidays.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to National Holidays. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying National Holidays, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to National Holidays and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does National Holidays connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 1	Elementary	\N	\N	f	National Holidays	This lesson examines important social studies concepts related to National Holidays. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to National Holidays. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying National Holidays develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
55	19	Reading with Expression	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.201424	Read and comprehend a grade-level short story.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Finding the Main Idea", "content": "Read this passage: \\"Bees are essential pollinators. They carry pollen from flower to flower, helping plants reproduce. Without bees, many fruits and vegetables would not grow.\\" The main idea is that bees play a vital role in plant reproduction.", "solution": "Main idea: Bees are essential pollinators that help plants reproduce."}, {"title": "Making an Inference", "content": "The passage says: \\"Maria checked her watch again and tapped her foot.\\" What can you infer? Maria is probably waiting for someone or something and feels impatient.", "solution": "Inference: Maria is impatient about waiting."}]	[{"hint": "Ask yourself: What is this paragraph mostly about? What facts support that?", "answer": null, "question": "Read a paragraph from your current text. Identify the main idea in one sentence and list two supporting details."}, {"hint": "Look at the sentences around the unknown word for hints.", "answer": null, "question": "Find a word you do not know in your reading. Use context clues to determine its meaning, then check a dictionary."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
57	19	Story Elements	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.203316	Read and comprehend a grade-level short story.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing reading comprehension strategies. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
58	20	Topic Sentences	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.204979	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
60	20	Conclusion Sentences	\N	3	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.207235	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
61	21	Adjectives	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.208494	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Adjectives, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Lost Library Book	short_story	Ethan loved the library more than anywhere else in the school. Every Wednesday, he picked a new book to take home. This week, he chose a book about dinosaurs with shiny pictures inside.\n\nOn Thursday, Ethan brought the book outside during recess. He sat under a tree and read about the Tyrannosaurus Rex. When the bell rang, Ethan jumped up and ran inside. He did not notice the book sitting in the grass.\n\nThat night, Ethan looked everywhere for the library book. He searched his backpack, his desk, and under his bed. His stomach felt like it was tied in knots. The book was due tomorrow.\n\n"What is wrong?" his mother asked.\n\n"I lost my library book," Ethan whispered. He was afraid he would be in trouble.\n\nHis mother sat beside him. "Losing something happens to everyone. What matters is what you do next. Can you think about where you last had it?"\n\nEthan thought hard. He remembered reading under the tree. "The playground!" he said.\n\nThe next morning, Ethan rushed to the tree. The book was there, a little damp from the morning dew, but safe. He wiped it off carefully and returned it to the library.\n\n"Thank you for being honest and returning it," said the librarian.\n\nEthan smiled. He learned that being responsible means taking care of the things other people trust you with.	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
63	21	Complete Sentences	\N	3	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.210482	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
64	22	Word Families	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.211762	Read and comprehend a grade-level informational text.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Using Word Parts", "content": "\\"Unbelievable\\" = un (not) + believe + able (capable of). Meaning: not capable of being believed; incredible.", "solution": "unbelievable = not capable of being believed"}, {"title": "Context Clues", "content": "\\"The arid desert received less than five inches of rain per year.\\" Clue: \\"less than five inches of rain\\" tells us arid means very dry.", "solution": "arid = extremely dry"}]	[{"hint": "dis- (not) + agree (to be in harmony) + -ment (state of).", "answer": "dis-agree-ment: the state of not agreeing", "question": "Break the word \\"disagreement\\" into its prefix, root, and suffix. Define each part."}, {"hint": "\\"There\\" = a place. \\"Their\\" = belonging to them. \\"They're\\" = they are.", "answer": "They went there to pick up their order.", "question": "Write the correct homophone: \\"They went (their/there/they're) to pick up (their/there/they're) order.\\""}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
66	22	Context Clues	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.213697	Read and comprehend a grade-level short story.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Context Clues, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 2	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
44	15	Hundreds	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.186461	Understand the concepts and methods of Hundreds.\nSolve problems involving Hundreds accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Hundreds to real-world situations.	This lesson covers important mathematical concepts related to Hundreds. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Hundreds. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Hundreds using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Hundreds	This lesson covers important mathematical concepts related to Hundreds. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Hundreds", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Hundreds helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
49	17	Measuring in Inches	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.193336	Understand the concepts and methods of Measuring in Inches.\nSolve problems involving Measuring in Inches accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Measuring in Inches to real-world situations.	This lesson covers important mathematical concepts related to Measuring in Inches. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Measuring in Inches. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Measuring in Inches using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Measuring in Inches	This lesson covers important mathematical concepts related to Measuring in Inches. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Measuring in Inches", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Measuring in Inches helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
53	18	Making Change	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.198427	Understand the concepts and methods of Making Change.\nSolve problems involving Making Change accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Making Change to real-world situations.	This lesson covers important mathematical concepts related to Making Change. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Making Change. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Making Change using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Making Change	This lesson covers important mathematical concepts related to Making Change. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Making Change", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Making Change helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
67	23	Solids Liquids and Gases	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.215329	Explain the key scientific concepts of Solids Liquids and Gases.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Solids Liquids and Gases to real-world applications.	This lesson explores scientific concepts related to Solids Liquids and Gases. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Solids Liquids and Gases. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Solids Liquids and Gases	This lesson explores scientific concepts related to Solids Liquids and Gases. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solids Liquids and Gases connects to real-world applications in technology, health, and environmental stewardship.	f
69	23	Changes in Matter	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.217257	Explain the key scientific concepts of Changes in Matter.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Changes in Matter to real-world applications.	This lesson explores scientific concepts related to Changes in Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Changes in Matter. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Changes in Matter	This lesson explores scientific concepts related to Changes in Matter. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Changes in Matter connects to real-world applications in technology, health, and environmental stewardship.	f
73	25	Plant Life Cycles	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	6-8 min	\N	\N	t	2026-06-23 11:23:04.222321	Explain the key scientific concepts of Plant Life Cycles.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plant Life Cycles to real-world applications.	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	[{"title": "Photosynthesis Equation", "content": "6CO₂ + 6H₂O + sunlight → C₆H₁₂O₆ + 6O₂. Reactants: carbon dioxide and water. Products: glucose and oxygen. Energy source: sunlight.", "solution": "Plants take in CO₂ and water, use sunlight, and produce sugar and oxygen."}, {"title": "Plant Life Cycle", "content": "A bean seed is planted in soil → it absorbs water and germinates → a root grows down, a shoot grows up → leaves develop and photosynthesis begins → the plant flowers → bees pollinate the flowers → new bean pods (seeds) form.", "solution": "Seed → Germination → Growth → Flowering → Pollination → Seed Production"}]	[{"hint": "Think about what the plant takes in from its environment.", "answer": "Sunlight, water, and carbon dioxide.", "question": "What three things does a plant need for photosynthesis?"}, {"hint": "Think about which pigment is involved in photosynthesis.", "answer": "Chlorophyll absorbs red and blue light and reflects green light.", "question": "Explain why plants appear green."}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Plant Life Cycles	Plants produce their own food through photosynthesis: 6CO₂ + 6H₂O + light → C₆H₁₂O₆ + 6O₂. Chlorophyll in chloroplasts absorbs light energy. Plants have a life cycle: seed → germination → growth → flowering → pollination → seed production.	\N	\N	\N	["2 small pots", "potting soil", "bean seeds", "water", "ruler", "journal"]	Wash hands after handling soil. Do not eat seeds or soil.	[{"step": "Plant a bean seed in each pot. Place one in sunlight, one in a dark closet.", "detail": "Water both equally. Measure and record growth daily for 2 weeks."}]	["Which plant grew taller? Why?", "What happened to the plant without sunlight?", "What does this tell you about what plants need?"]	Write a conclusion explaining how sunlight affects plant growth. Use your data as evidence.	\N	\N	\N	\N	\N	\N	Agriculture depends on understanding plant needs. Farmers optimize sunlight, water, and soil nutrients to grow food.	t
76	26	Continents and Oceans	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.226113	Explain key concepts related to Continents and Oceans.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Continents and Oceans	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
78	26	Natural Resources	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.227929	Explain key concepts related to Natural Resources.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Natural Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Natural Resources, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Natural Resources and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Natural Resources connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Natural Resources	This lesson examines important social studies concepts related to Natural Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Natural Resources. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Natural Resources develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
80	27	Important Historical Figures	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.23003	Explain key concepts related to Important Historical Figures.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Important Historical Figures. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Important Historical Figures, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Important Historical Figures and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Important Historical Figures connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Important Historical Figures	This lesson examines important social studies concepts related to Important Historical Figures. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Important Historical Figures. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Important Historical Figures develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
81	27	Timeline of Events	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.230963	Explain key concepts related to Timeline of Events.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Timeline of Events. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Timeline of Events, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Timeline of Events and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Timeline of Events connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Timeline of Events	This lesson examines important social studies concepts related to Timeline of Events. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Timeline of Events. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Timeline of Events develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
83	28	Goods and Services	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.233185	Explain key concepts related to Goods and Services.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Goods and Services. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Goods and Services, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Goods and Services and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Goods and Services connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Goods and Services	This lesson examines important social studies concepts related to Goods and Services. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Goods and Services. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Goods and Services develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
84	28	Saving and Spending	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.234234	Explain key concepts related to Saving and Spending.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Saving and Spending. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Saving and Spending, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Saving and Spending and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Saving and Spending connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 2	Elementary	\N	\N	f	Saving and Spending	This lesson examines important social studies concepts related to Saving and Spending. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Saving and Spending. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Saving and Spending develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
97	33	Main Idea and Details	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.249236	Read and comprehend a grade-level short story.\nApply the skill of identifying the main idea and supporting details to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice identifying the main idea and supporting details. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Main Idea and Details, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Identifying the main idea and supporting details	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
101	34	Informational Writing	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.253485	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
103	35	Subject-Verb Agreement	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.255944	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Subject-Verb Agreement, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
105	35	Conjunctions	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.257854	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Conjunctions, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
107	36	Finding Information	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.260061	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Finding Information, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 3	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
85	29	Multiplication Concepts	\N	1	https://www.khanacademy.org/math/cc-third-grade-math	Khan Academy: 3rd Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.235951	Understand the concepts and methods of Multiplication Concepts.\nSolve problems involving Multiplication Concepts accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multiplication Concepts to real-world situations.	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 9 × 8. This means 9 groups of 8, or 8 added 9 times.", "solution": "9 × 8 = 72"}, {"title": "Distributive Property", "content": "Calculate 22 × 7 using the distributive property. Break 22 into 20 + 2: (20 × 7) + (2 × 7) = 140 + 14.", "solution": "22 × 7 = 154"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 4 × 8"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 6 rows of desks with 7 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Multiplication Concepts	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	a × b = product	[{"step": "Calculate 4 × 5", "work": "4 groups of 5: 4×5=20", "answer": "20"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multiplication Concepts helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
88	30	Division Concepts	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.239384	Understand the concepts and methods of Division Concepts.\nSolve problems involving Division Concepts accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Division Concepts to real-world situations.	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Division", "content": "Divide 120 ÷ 8. Ask: how many times does 8 go into 120?", "solution": "120 ÷ 8 = 15"}, {"title": "Division with Remainder", "content": "Divide 123 ÷ 8. 8 goes into the dividend 15 times with a remainder.", "solution": "Quotient: 15, Remainder: check your calculation"}]	[{"hint": "Use long division or think about multiplication facts.", "answer": null, "question": "Calculate: 50 ÷ 7"}, {"hint": "Divide and look at the whole number quotient.", "answer": null, "question": "44 students need to form equal teams of 4. How many full teams can be made?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Division Concepts	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	\N	[{"step": "Divide 126 ÷ 9", "work": "How many times does 9 go into 126? 9×14=126", "answer": "14"}]	[{"mistake": "Forgetting to include the remainder", "correction": "If division is not exact, record the remainder: quotient R remainder."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Division Concepts helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
90	30	Division Word Problems	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.241248	Understand the concepts and methods of Division Word Problems.\nSolve problems involving Division Word Problems accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Division Word Problems to real-world situations.	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Division", "content": "Divide 88 ÷ 8. Ask: how many times does 8 go into 88?", "solution": "88 ÷ 8 = 11"}, {"title": "Division with Remainder", "content": "Divide 92 ÷ 8. 8 goes into the dividend 11 times with a remainder.", "solution": "Quotient: 11, Remainder: check your calculation"}]	[{"hint": "Use long division or think about multiplication facts.", "answer": null, "question": "Calculate: 56 ÷ 5"}, {"hint": "Divide and look at the whole number quotient.", "answer": null, "question": "38 students need to form equal teams of 5. How many full teams can be made?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Division Word Problems	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	\N	[{"step": "Divide 88 ÷ 8", "work": "How many times does 8 go into 88? 8×11=88", "answer": "11"}]	[{"mistake": "Forgetting to include the remainder", "correction": "If division is not exact, record the remainder: quotient R remainder."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Division Word Problems helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
94	32	Area and Perimeter	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	6-8 min	\N	\N	t	2026-06-23 11:23:04.245659	Understand the concepts and methods of Area and Perimeter.\nSolve problems involving Area and Perimeter accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Area and Perimeter to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 15 cm and width 3 cm. Area = length × width.", "solution": "A = 15 × 3 = 45 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(15 + 3) = 2(18) = 36 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 9 and height 8."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Area and Perimeter	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 9×8", "work": "A = length × width = 9 × 8", "answer": "72 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Area and Perimeter helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
109	37	Balanced and Unbalanced Forces	\N	1	https://www.khanacademy.org/science/physics	Khan Academy: Physics	6-8 min	\N	\N	t	2026-06-23 11:23:04.262683	Explain the key scientific concepts of Balanced and Unbalanced Forces.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Balanced and Unbalanced Forces to real-world applications.	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	[{"title": "Newton's Second Law", "content": "A 10 kg box is pushed with a force of 50 N. What is its acceleration? F = ma → 50 = 10 × a → a = 50/10.", "solution": "a = 5 m/s²"}, {"title": "Newton's Third Law", "content": "A swimmer pushes water backward (action). The water pushes the swimmer forward (reaction). This is why swimming works.", "solution": "Action and reaction forces are equal in magnitude and opposite in direction."}]	[{"hint": "Use F = ma.", "answer": "F = 5 × 3 = 15 N", "question": "Calculate: A 5 kg object accelerates at 3 m/s². What force is acting on it?"}, {"hint": "What force opposes the ball's motion?", "answer": "Friction between the ball and grass slows it down until it stops.", "question": "Explain why a soccer ball eventually stops rolling on grass."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Balanced and Unbalanced Forces	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	\N	\N	["toy car", "ramp", "ruler", "timer", "different surfaces (carpet, tile, sandpaper)"]	Keep the ramp stable. Do not stand on the ramp.	[{"step": "Release a toy car from the same height on ramps with different surfaces.", "detail": "Measure how far the car travels on each surface. Record in a data table."}]	["On which surface did the car travel farthest?", "On which surface did it travel the shortest distance?", "How does friction affect the car's motion?"]	Explain how friction affects motion using your experimental data as evidence.	\N	\N	\N	\N	\N	\N	Engineers design brakes, tires, and road surfaces using knowledge of friction and motion.	t
110	37	Magnets	\N	2	https://www.khanacademy.org/science/physics	Khan Academy: Physics	6-8 min	\N	\N	t	2026-06-23 11:23:04.263639	Explain the key scientific concepts of Magnets.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Magnets to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Magnets	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
111	37	Gravity	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.264564	Explain the key scientific concepts of Gravity.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Gravity to real-world applications.	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	[{"title": "Newton's Second Law", "content": "A 10 kg box is pushed with a force of 50 N. What is its acceleration? F = ma → 50 = 10 × a → a = 50/10.", "solution": "a = 5 m/s²"}, {"title": "Newton's Third Law", "content": "A swimmer pushes water backward (action). The water pushes the swimmer forward (reaction). This is why swimming works.", "solution": "Action and reaction forces are equal in magnitude and opposite in direction."}]	[{"hint": "Use F = ma.", "answer": "F = 5 × 3 = 15 N", "question": "Calculate: A 5 kg object accelerates at 3 m/s². What force is acting on it?"}, {"hint": "What force opposes the ball's motion?", "answer": "Friction between the ball and grass slows it down until it stops.", "question": "Explain why a soccer ball eventually stops rolling on grass."}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Gravity	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	\N	\N	["toy car", "ramp", "ruler", "timer", "different surfaces (carpet, tile, sandpaper)"]	Keep the ramp stable. Do not stand on the ramp.	[{"step": "Release a toy car from the same height on ramps with different surfaces.", "detail": "Measure how far the car travels on each surface. Record in a data table."}]	["On which surface did the car travel farthest?", "On which surface did it travel the shortest distance?", "How does friction affect the car's motion?"]	Explain how friction affects motion using your experimental data as evidence.	\N	\N	\N	\N	\N	\N	Engineers design brakes, tires, and road surfaces using knowledge of friction and motion.	f
115	39	Water Cycle	\N	1	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.269151	Explain the key scientific concepts of Water Cycle.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Water Cycle to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Water Cycle	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	f
116	39	Cloud Types	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.270088	Explain the key scientific concepts of Cloud Types.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cloud Types to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	\N	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Cloud Types	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	f
118	40	Urban Rural and Suburban	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.273229	Explain key concepts related to Urban Rural and Suburban.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Urban Rural and Suburban. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Urban Rural and Suburban, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Urban Rural and Suburban and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Urban Rural and Suburban connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Urban Rural and Suburban	This lesson examines important social studies concepts related to Urban Rural and Suburban. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Urban Rural and Suburban. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Urban Rural and Suburban develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
119	40	Local Government	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	6-8 min	\N	\N	t	2026-06-23 11:23:04.274139	Explain key concepts related to Local Government.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Local Government	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
123	41	Human Geography	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.278398	Explain key concepts related to Human Geography.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	[{"title": "Reading Coordinates", "content": "Washington, D.C. is located at approximately 38°N latitude, 77°W longitude. The \\"N\\" means north of the Equator, and \\"W\\" means west of the Prime Meridian.", "solution": "Latitude and longitude pinpoint any location on Earth."}]	[{"hint": "Use the first letter of each continent as a memory aid.", "answer": "Continents: Africa, Antarctica, Asia, Australia, Europe, North America, South America. Oceans: Pacific, Atlantic, Indian.", "question": "Name the seven continents and the three largest oceans."}, {"hint": "Think about water, climate, and resources.", "answer": "People settle near water, fertile soil, and moderate climates where they can grow food, access resources, and travel.", "question": "Explain how geography influences where people choose to live."}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Human Geography	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geography studies Earth's physical features and human activity. Physical geography examines landforms, water systems, and climate. Human geography examines where and how people live. Maps use legends, scales, and compass roses. Latitude (horizontal) and longitude (vertical) create a coordinate system for any location on Earth.	\N	\N	Geographic knowledge helps with navigation, urban planning, resource management, and understanding cultural differences.	t
125	42	Producers and Consumers	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.280587	Explain key concepts related to Producers and Consumers.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Producers and Consumers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Producers and Consumers, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Producers and Consumers and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Producers and Consumers connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 3	Elementary	\N	\N	f	Producers and Consumers	This lesson examines important social studies concepts related to Producers and Consumers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Producers and Consumers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Producers and Consumers develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
139	47	Fiction vs Nonfiction	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.296597	Read and comprehend a grade-level informational text.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	Amazing Butterflies	informational_text	Butterflies are some of the most beautiful insects in the world. They can be found on every continent except Antarctica. There are more than 17,000 different species of butterflies.\n\nA butterfly goes through four stages in its life. This is called metamorphosis. First, a butterfly starts as a tiny egg. The mother butterfly lays her eggs on a leaf. Second, a caterpillar hatches from the egg. The caterpillar eats leaves and grows bigger every day. Third, the caterpillar forms a chrysalis around its body. Inside the chrysalis, an amazing change happens. Fourth, a butterfly emerges with beautiful wings. It spreads its wings and flies away.\n\nButterflies are important to our planet. When a butterfly lands on a flower to drink nectar, pollen sticks to its body. When it flies to another flower, the pollen rubs off. This is called pollination, and it helps plants grow new seeds.\n\nButterflies have some interesting features. They taste with their feet! They also have thousands of tiny scales on their wings that create colorful patterns. Some butterflies migrate thousands of miles. The monarch butterfly travels from Canada to Mexico every fall. That is a journey of over 3,000 miles.\n\nUnfortunately, many butterfly species are in danger. When forests are cut down or fields are sprayed with chemicals, butterflies lose their homes and food. We can help by planting flowers, avoiding pesticides, and protecting natural areas.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
140	47	Character Analysis	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.297539	Read and comprehend a grade-level short story.\nApply the skill of analyzing character traits and motivations to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice analyzing character traits and motivations. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Character Analysis, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Analyzing character traits and motivations	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
142	48	Essay Structure	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.299787	Read and comprehend a grade-level short story.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding essay structure and argument. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
143	48	Descriptive Writing	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.300791	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice developing writing skills. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
145	49	Complex Sentences	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	6-8 min	\N	\N	t	2026-06-23 11:23:04.303054	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
147	49	Homophones	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.305148	Read and comprehend a grade-level informational text.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Homophones, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
149	50	Discussion Skills	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.307967	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice reading comprehension. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Discussion Skills, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 4	Elementary	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
127	43	Multi-Digit Multiplication	\N	1	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.283223	Understand the concepts and methods of Multi-Digit Multiplication.\nSolve problems involving Multi-Digit Multiplication accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multi-Digit Multiplication to real-world situations.	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 5 × 8. This means 5 groups of 8, or 8 added 5 times.", "solution": "5 × 8 = 40"}, {"title": "Distributive Property", "content": "Calculate 27 × 8 using the distributive property. Break 27 into 20 + 7: (20 × 8) + (7 × 8) = 160 + 56.", "solution": "27 × 8 = 216"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 11 × 10"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 7 rows of desks with 5 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Multi-Digit Multiplication	Multiplication is repeated addition. Learn times tables 1-12. Use arrays and groups to visualize.	a × b = product	[{"step": "Calculate 3 × 7", "work": "3 groups of 7: 3×7=21", "answer": "21"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multi-Digit Multiplication helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
128	43	Long Division	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.284105	Understand the concepts and methods of Long Division.\nSolve problems involving Long Division accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Long Division to real-world situations.	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Division", "content": "Divide 90 ÷ 9. Ask: how many times does 9 go into 90?", "solution": "90 ÷ 9 = 10"}, {"title": "Division with Remainder", "content": "Divide 97 ÷ 9. 9 goes into the dividend 10 times with a remainder.", "solution": "Quotient: 10, Remainder: check your calculation"}]	[{"hint": "Use long division or think about multiplication facts.", "answer": null, "question": "Calculate: 32 ÷ 3"}, {"hint": "Divide and look at the whole number quotient.", "answer": null, "question": "26 students need to form equal teams of 7. How many full teams can be made?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Long Division	Division splits a total into equal groups. Use the DMSB method: Divide, Multiply, Subtract, Bring down.	\N	[{"step": "Divide 112 ÷ 8", "work": "How many times does 8 go into 112? 8×14=112", "answer": "14"}]	[{"mistake": "Forgetting to include the remainder", "correction": "If division is not exact, record the remainder: quotient R remainder."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Long Division helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
131	44	Adding Fractions	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.287485	Understand the concepts and methods of Adding Fractions.\nSolve problems involving Adding Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding Fractions to real-world situations.	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 15 + 53. Start in the ones place: 5 + 3 = 8. Write 8. Continue to the tens place.", "solution": "15 + 53 = 68"}, {"title": "Word Problem", "content": "A library has 924 fiction books and 966 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "924 + 966 = 1890 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "95", "question": "Calculate: 25 + 70"}, {"hint": "Identify the two quantities and add them.", "answer": "493 items", "question": "A store sold 174 items on Monday and 319 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Adding Fractions	Addition combines quantities to find a total. Start at the ones place and regroup when the sum is 10 or more.	a + b = sum	[{"step": "Add 184 + 81", "work": "Line up by place value. Add ones, then tens.  184+81=265", "answer": "265"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
133	45	Unit Conversion	\N	1	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.29004	Understand the concepts and methods of Unit Conversion.\nSolve problems involving Unit Conversion accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Unit Conversion to real-world situations.	This lesson covers important mathematical concepts related to Unit Conversion. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Unit Conversion. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Unit Conversion using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Unit Conversion	This lesson covers important mathematical concepts related to Unit Conversion. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Unit Conversion", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Unit Conversion helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
137	46	Input-Output Tables	\N	2	https://www.khanacademy.org/math/cc-fourth-grade-math	Khan Academy: 4th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.294108	Understand the concepts and methods of Input-Output Tables.\nSolve problems involving Input-Output Tables accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Input-Output Tables to real-world situations.	This lesson covers important mathematical concepts related to Input-Output Tables. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Input-Output Tables. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Input-Output Tables using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Input-Output Tables	This lesson covers important mathematical concepts related to Input-Output Tables. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Input-Output Tables", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Input-Output Tables helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
153	51	Electricity	\N	3	https://www.khanacademy.org/science/physics	Khan Academy: Physics	6-8 min	\N	\N	t	2026-06-23 11:23:04.314821	Explain the key scientific concepts of Electricity.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Electricity to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Electricity	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
155	52	Erosion and Weathering	\N	2	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	6-8 min	\N	\N	t	2026-06-23 11:23:04.317092	Explain the key scientific concepts of Erosion and Weathering.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Erosion and Weathering to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Erosion and Weathering	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
159	53	Food Webs	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.32106	Explain the key scientific concepts of Food Webs.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Food Webs to real-world applications.	This lesson explores scientific concepts related to Food Webs. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Food Webs. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Food Webs	This lesson explores scientific concepts related to Food Webs. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Food Webs connects to real-world applications in technology, health, and environmental stewardship.	f
160	54	Native Americans of Nevada	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.322779	Explain key concepts related to Native Americans of Nevada.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Native Americans of Nevada. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Native Americans of Nevada, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Native Americans of Nevada and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Native Americans of Nevada connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Native Americans of Nevada	This lesson examines important social studies concepts related to Native Americans of Nevada. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Native Americans of Nevada. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Native Americans of Nevada develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
164	55	Midwest and Southwest	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.326664	Explain key concepts related to Midwest and Southwest.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Midwest and Southwest. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Midwest and Southwest, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Midwest and Southwest and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Midwest and Southwest connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Midwest and Southwest	This lesson examines important social studies concepts related to Midwest and Southwest. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Midwest and Southwest. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Midwest and Southwest develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
166	56	European Explorers	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	6-8 min	\N	\N	t	2026-06-23 11:23:04.32876	Explain key concepts related to European Explorers.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to European Explorers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying European Explorers, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to European Explorers and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does European Explorers connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	European Explorers	This lesson examines important social studies concepts related to European Explorers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to European Explorers. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying European Explorers develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
168	56	Impact on Native Peoples	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.330709	Explain key concepts related to Impact on Native Peoples.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Impact on Native Peoples. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Impact on Native Peoples, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Impact on Native Peoples and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Impact on Native Peoples connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 4	Elementary	\N	\N	f	Impact on Native Peoples	This lesson examines important social studies concepts related to Impact on Native Peoples. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Impact on Native Peoples. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Impact on Native Peoples develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
182	61	Figurative Language	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.346096	Read and comprehend a grade-level informational text.\nApply the skill of identifying figurative language to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice identifying figurative language. Read the informational text below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Figurative Language, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Water: Earth's Most Important Resource	informational_text	Water covers about 71 percent of Earth's surface, but did you know that only about 3 percent of that water is fresh water? Most of Earth's water is in the oceans, which are too salty to drink.\n\nFresh water is found in rivers, lakes, and underground. People use fresh water every day for drinking, cooking, cleaning, and growing food. Farmers need water to grow crops. Factories use water to make products. Animals and plants need water to survive.\n\nWater moves in a cycle called the water cycle. The sun heats water in oceans, lakes, and rivers. This heat turns liquid water into water vapor, which rises into the air. This is called evaporation. When the vapor cools high in the sky, it turns back into tiny water droplets that form clouds. This is called condensation. When clouds hold too much water, the droplets fall back to Earth as rain, snow, sleet, or hail. This is called precipitation. The water flows into rivers and lakes or soaks into the ground, and the cycle starts again.\n\nWater pollution is a serious problem. When people dump trash, chemicals, or waste into rivers and lakes, it makes the water unsafe for people and animals. Oil spills, factory runoff, and littering all harm our water.\n\nWe can help protect water by turning off the faucet when brushing teeth, taking shorter showers, fixing leaky pipes, and never throwing trash into waterways. Every drop counts.	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Identifying figurative language	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
184	62	Persuasive Writing	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.348042	Read and comprehend a grade-level short story.\nApply the skill of analyzing persuasive techniques to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice analyzing persuasive techniques. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Analyzing persuasive techniques	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
185	62	Narrative Essays	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.348903	Read and comprehend a grade-level short story.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding essay structure and argument. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
189	63	Comma Rules	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.352689	Read and comprehend a grade-level short story.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding grammar and sentence structure. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Comma Rules, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The New Student	short_story	On Monday morning, Mrs. Roberts introduced a new student to the class. "Everyone, this is Sofia. She just moved here from another city. Please make her feel welcome."\n\nSofia stood at the front of the room, looking down at her shoes. She did not smile. She did not wave. Some students whispered to each other.\n\nAt lunch, Sofia sat alone at the end of a long table. She opened her lunchbox slowly and took out a sandwich, but she did not eat it.\n\nLiam noticed Sofia sitting by herself. He remembered his first day at a new school two years ago. He remembered how scared he felt, how the cafeteria seemed too loud, and how nobody talked to him.\n\nLiam picked up his tray and walked over to Sofia's table. "Hi, I'm Liam. Can I sit here?"\n\nSofia looked up, surprised. "Okay," she said quietly.\n\n"I was the new kid once too," Liam told her. "It gets better. The hardest part is the first day."\n\nSofia smiled a little. "I was nervous. I did not know anyone."\n\n"Now you know me," Liam said.\n\nOver the next few days, Liam introduced Sofia to his friends. He showed her where the art room was and where to find the best books in the library. By Friday, Sofia was laughing and talking like she had been there all year.\n\n"Thank you," Sofia told Liam. "You made everything easier."\n\nLiam shrugged. "Someone did the same for me once."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
191	64	Context Clues	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	6-8 min	\N	\N	t	2026-06-23 11:23:04.354919	Read and comprehend a grade-level short story.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite a short response about the passage.	In this lesson, you will practice understanding vocabulary in context. Read the short story below carefully. As you read, think about the most important ideas the author is sharing. Pay attention to the details that help you understand the story or information.\n\nAfter reading, you will answer questions about what you read. Remember to look back at the passage to find evidence for your answers.	[{"term": "determined", "definition": "Having made a firm decision and being resolved not to change it."}, {"term": "cautiously", "definition": "In a careful way to avoid danger or problems."}, {"term": "emerged", "definition": "Came out from a hidden or enclosed space."}, {"term": "observe", "definition": "To watch carefully and notice details."}, {"term": "responsible", "definition": "Having the duty to take care of something or someone."}, {"term": "surface", "definition": "The outside or top part of something."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Context Clues, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Garden Project	short_story	Maya looked at the empty patch of dirt behind her school. It was full of weeds and old leaves, but Maya saw something different. She saw rows of bright tomatoes, tall sunflowers, and leafy lettuce.\n\n"We could grow a garden here," Maya told her teacher, Ms. Chen.\n\nMs. Chen smiled. "That is a wonderful idea, Maya. But a garden takes a lot of work. Are you ready for that?"\n\nMaya nodded. She made a plan. First, she asked her classmates to help. Together, they pulled the weeds and raked the soil until it was smooth and dark. Next, they dug small holes in neat rows. Then, they carefully placed seeds into each hole and covered them with dirt.\n\nEvery day after school, Maya and her friends watered the garden. They watched for tiny green sprouts pushing through the soil. After two weeks, small plants began to appear. Maya felt proud.\n\nBy the end of spring, the garden was bursting with color. Red tomatoes hung from thick green stems. Yellow sunflowers stood tall against the fence. Maya picked a tomato and took a bite. It was the best tomato she had ever tasted.\n\n"We did it," she said to her friends. "We turned dirt into something amazing."\n\nMs. Chen put her hand on Maya's shoulder. "You taught everyone that hard work and patience can turn a dream into something real."	Original passage for JNM Home Education Program	Grade 5	Elementary	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
169	57	Decimal Place Value	\N	1	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	6-8 min	\N	\N	t	2026-06-23 11:23:04.33226	Understand the concepts and methods of Decimal Place Value.\nSolve problems involving Decimal Place Value accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Decimal Place Value to real-world situations.	This lesson covers important mathematical concepts related to Decimal Place Value. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Adding Decimals", "content": "Add 3.45 + 2.30. Line up decimal points: 3.45 + 2.30 = 5.75.", "solution": "3.45 + 2.30 = 5.75"}, {"title": "Decimal to Fraction", "content": "Convert 0.6 to a fraction. 0.6 = 6/10 = 3/5.", "solution": "0.6 = 3/5"}]	[{"hint": "Line up the decimal points and add column by column.", "answer": "5.79", "question": "Calculate: 4.56 + 1.23"}, {"hint": "Divide 3 by 4.", "answer": "0.75", "question": "Convert 3/4 to a decimal."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Decimal Place Value	This lesson covers important mathematical concepts related to Decimal Place Value. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Decimal Place Value", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Decimal Place Value helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
174	58	Mixed Numbers	\N	3	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.337305	Understand the concepts and methods of Mixed Numbers.\nSolve problems involving Mixed Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Mixed Numbers to real-world situations.	This lesson covers important mathematical concepts related to Mixed Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Mixed Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Mixed Numbers using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Mixed Numbers	This lesson covers important mathematical concepts related to Mixed Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Mixed Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Mixed Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
178	60	Plotting Points	\N	1	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.341823	Understand the concepts and methods of Plotting Points.\nSolve problems involving Plotting Points accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Plotting Points to real-world situations.	This lesson covers important mathematical concepts related to Plotting Points. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Plotting Points. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Plotting Points using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Plotting Points	This lesson covers important mathematical concepts related to Plotting Points. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Plotting Points", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Plotting Points helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
180	60	Graphing Patterns	\N	3	https://www.khanacademy.org/math/cc-fifth-grade-math	Khan Academy: 5th Grade Math	6-8 min	\N	\N	t	2026-06-23 11:23:04.343736	Understand the concepts and methods of Graphing Patterns.\nSolve problems involving Graphing Patterns accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Graphing Patterns to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Graphing Patterns	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Graphing Patterns helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
194	65	Chemical vs Physical Changes	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.358565	Explain the key scientific concepts of Chemical vs Physical Changes.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Chemical vs Physical Changes to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Chemical vs Physical Changes	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	f
195	65	Mixtures and Solutions	\N	3	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.359421	Explain the key scientific concepts of Mixtures and Solutions.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Mixtures and Solutions to real-world applications.	This lesson explores scientific concepts related to Mixtures and Solutions. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Mixtures and Solutions. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Mixtures and Solutions	This lesson explores scientific concepts related to Mixtures and Solutions. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Mixtures and Solutions connects to real-world applications in technology, health, and environmental stewardship.	f
197	66	Ocean Currents	\N	2	\N	\N	6-8 min	\N	\N	t	2026-06-23 11:23:04.361524	Explain the key scientific concepts of Ocean Currents.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ocean Currents to real-world applications.	This lesson explores scientific concepts related to Ocean Currents. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Ocean Currents. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Ocean Currents	This lesson explores scientific concepts related to Ocean Currents. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ocean Currents connects to real-world applications in technology, health, and environmental stewardship.	f
199	67	Solar System	\N	1	https://www.khanacademy.org/science/cosmology-and-astronomy	Khan Academy: Cosmology & Astronomy	6-8 min	\N	\N	t	2026-06-23 11:23:04.363704	Explain the key scientific concepts of Solar System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Solar System to real-world applications.	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	[{"title": "Why Seasons Occur", "content": "In June, the Northern Hemisphere tilts toward the Sun → longer days, more direct sunlight → summer. In December, it tilts away → shorter days, less direct sunlight → winter. The Southern Hemisphere has opposite seasons.", "solution": "Seasons are caused by Earth's axial tilt, not distance from the Sun."}]	[{"hint": "My Very Educated Mother Just Served Us Nachos.", "answer": "Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune", "question": "List the eight planets in order from the Sun."}, {"hint": "One is spinning, the other is orbiting.", "answer": "Rotation is spinning on an axis (day/night). Revolution is orbiting around another object (year).", "question": "What is the difference between rotation and revolution?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Solar System	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Space science enables satellite communication, GPS navigation, weather forecasting, and exploration.	t
201	67	Earth Moon System	\N	3	https://www.khanacademy.org/science/cosmology-and-astronomy	Khan Academy: Cosmology & Astronomy	6-8 min	\N	\N	t	2026-06-23 11:23:04.365476	Explain the key scientific concepts of Earth Moon System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Earth Moon System to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Earth Moon System	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
203	68	Colonial Life	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.367822	Explain key concepts related to Colonial Life.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Colonial Life."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Colonial Life	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
207	69	Declaration of Independence	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	6-8 min	\N	\N	t	2026-06-23 11:23:04.372332	Explain key concepts related to Declaration of Independence.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Declaration of Independence."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 5	Elementary	\N	\N	f	Declaration of Independence	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
223	75	Analyzing Characters	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.389947	Read and comprehend a grade-level short story.\nApply the skill of analyzing character traits and motivations to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on analyzing character traits and motivations. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Analyzing Characters, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Analyzing character traits and motivations	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
224	75	Plot Structure	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.390841	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Plot Structure, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Music Box	short_story	The music box had sat on Grandma Rosa's dresser for as long as Daniela could remember. It was made of dark wood with a rose carved into the lid. When you opened it, a tiny metal cylinder turned and played a melody—soft, slow, and a little sad.\n\n"What song is that?" Daniela had asked when she was six.\n\n"It is a song from my village in Mexico," Grandma Rosa said. "My mother sang it when I was your age. She gave me this box the day I left for the United States. She said, 'Wherever this song plays, that is where home is.'"\n\nDaniela did not fully understand then. Home was here—the yellow house on Maple Street with the squeaky screen door and the smell of cinnamon in the kitchen.\n\nGrandma Rosa passed away the winter Daniela turned thirteen. The family gathered to sort through her things. Daniela's mother held up the music box. "She wanted you to have this," she said.\n\nDaniela took the box to her room and opened the lid. The melody filled the air, each note clear and fragile as glass. She closed her eyes and saw Grandma Rosa's hands—wrinkled and warm—turning the pages of old photo albums, kneading dough for tortillas, pressing flowers into books.\n\nDaniela realized the music box was more than an object. It was a thread connecting three generations. Her great-grandmother had listened to this same melody in a small village thousands of miles away. Her grandmother had carried it across a border and into a new life. Now it sat in Daniela's room, still playing, still holding a piece of every person who had loved it.\n\nShe wound the key and listened again. The song was not sad, she decided. It was something deeper—proof that love does not disappear. It just changes form.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
226	76	Claims and Evidence	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.392826	Read and comprehend a grade-level informational text.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on developing writing skills. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Claims and Evidence, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
228	76	Persuasive Techniques	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.395124	Read and comprehend a grade-level informational text.\nApply the skill of analyzing persuasive techniques to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on analyzing persuasive techniques. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Analyzing persuasive techniques	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
270	90	Argumentative Essays	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.439958	Read and comprehend a grade-level informational text.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding essay structure and argument. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
234	78	Presentations	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.400989	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Presentations, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 6	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
214	72	Positive and Negative Numbers	\N	1	https://www.khanacademy.org/math/cc-sixth-grade-math	Khan Academy: 6th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.379943	Understand the concepts and methods of Positive and Negative Numbers.\nSolve problems involving Positive and Negative Numbers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Positive and Negative Numbers to real-world situations.	This lesson covers important mathematical concepts related to Positive and Negative Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Positive and Negative Numbers. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Positive and Negative Numbers using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Positive and Negative Numbers	This lesson covers important mathematical concepts related to Positive and Negative Numbers. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Positive and Negative Numbers", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Positive and Negative Numbers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
216	72	Subtracting Integers	\N	3	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	10-15 min	\N	\N	t	2026-06-23 11:23:04.381953	Understand the concepts and methods of Subtracting Integers.\nSolve problems involving Subtracting Integers accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Subtracting Integers to real-world situations.	Subtraction finds the difference between two quantities. Subtraction is the inverse of addition. Check by adding: if a-b=c, then c+b=a.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Subtraction", "content": "Subtract 65 − 35. Ones place: 5 − 5 = 0.", "solution": "65 − 35 = 30"}, {"title": "Checking with Addition", "content": "If 85 − 37 = 48, check by adding: 48 + 37 = 85. ✓ Correct.", "solution": "85 − 37 = 48"}]	[{"hint": "Work right to left. Borrow if needed.", "answer": "65", "question": "Calculate: 75 − 10"}, {"hint": "Add your answer to the subtrahend.", "answer": "Yes, 65 + 10 = 75", "question": "Check your answer by adding: does 65 + 10 = 75?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Subtracting Integers	Subtraction finds the difference between two quantities. Subtraction is the inverse of addition. Check by adding: if a-b=c, then c+b=a.	\N	[{"step": "Subtract 390 − 389", "work": "Line up by place value. Subtract right to left. Borrow if needed.", "answer": "1"}]	[{"mistake": "Forgetting to borrow when the top digit is smaller", "correction": "Borrow 1 from the next column (making it 10+ in the current column)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Subtracting Integers helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
219	73	Inequalities	\N	3	https://www.khanacademy.org/math/cc-sixth-grade-math	Khan Academy: 6th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.385074	Understand the concepts and methods of Inequalities.\nSolve problems involving Inequalities accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Inequalities to real-world situations.	This lesson covers important mathematical concepts related to Inequalities. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Inequalities. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Inequalities using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Inequalities	This lesson covers important mathematical concepts related to Inequalities. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Inequalities", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Inequalities helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
221	74	Data Displays	\N	2	https://www.khanacademy.org/math/statistics-probability	Khan Academy: Statistics & Probability	10-15 min	\N	\N	t	2026-06-23 11:23:04.387014	Understand the concepts and methods of Data Displays.\nSolve problems involving Data Displays accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Data Displays to real-world situations.	This lesson covers important mathematical concepts related to Data Displays. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding the Mean", "content": "Data: 8, 5, 12, 9, 6. Sum = 40. Count = 5. Mean = 40 ÷ 5.", "solution": "Mean = 8"}, {"title": "Finding Probability", "content": "A bag has 3 red and 7 blue marbles. P(red) = 3/(3+7) = 3/10.", "solution": "P(red) = 0.3 = 30%"}]	[{"hint": "First sort the numbers, then find the middle one.", "answer": "9", "question": "Find the median of: 14, 7, 11, 3, 9"}, {"hint": "Count favorable outcomes (1 and 2) out of total (6).", "answer": "2/6 = 1/3", "question": "A die has 6 faces. What is the probability of rolling a number less than 3?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Data Displays	This lesson covers important mathematical concepts related to Data Displays. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Data Displays", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Data Displays helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
235	79	Cell Structure	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.402608	Explain the key scientific concepts of Cell Structure.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cell Structure to real-world applications.	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	[{"title": "Animal vs. Plant Cell", "content": "Both have: nucleus, mitochondria, cell membrane, ribosomes. Only plant cells have: cell wall, chloroplasts, large central vacuole.", "solution": "Plant cells have structures for photosynthesis and structural support that animal cells lack."}]	[{"hint": "Think about energy production.", "answer": "Mitochondria produce ATP (energy) through cellular respiration.", "question": "What is the function of the mitochondria?"}, {"hint": "Think about structures unique to plant cells.", "answer": "Plant cells have cell walls and chloroplasts; animal cells do not.", "question": "Name two differences between plant and animal cells."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Cell Structure	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	\N	\N	["microscope (optional)", "prepared slides or diagrams", "colored pencils", "paper"]	\N	[{"step": "Draw and label an animal cell and a plant cell.", "detail": "Include: nucleus, cell membrane, mitochondria, ribosomes. For plant cells, add: cell wall, chloroplasts, central vacuole."}]	["What structures do plant and animal cells share?", "What structures are unique to plant cells?", "Why do plant cells need chloroplasts but animal cells do not?"]	Explain the relationship between cell structure and function. Why does each organelle matter?	\N	\N	\N	\N	\N	\N	Understanding cells is the foundation of medicine, genetics, and biotechnology.	t
237	79	Cell Functions	\N	3	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.4045	Explain the key scientific concepts of Cell Functions.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cell Functions to real-world applications.	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	[{"title": "Animal vs. Plant Cell", "content": "Both have: nucleus, mitochondria, cell membrane, ribosomes. Only plant cells have: cell wall, chloroplasts, large central vacuole.", "solution": "Plant cells have structures for photosynthesis and structural support that animal cells lack."}]	[{"hint": "Think about energy production.", "answer": "Mitochondria produce ATP (energy) through cellular respiration.", "question": "What is the function of the mitochondria?"}, {"hint": "Think about structures unique to plant cells.", "answer": "Plant cells have cell walls and chloroplasts; animal cells do not.", "question": "Name two differences between plant and animal cells."}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Cell Functions	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	\N	\N	["microscope (optional)", "prepared slides or diagrams", "colored pencils", "paper"]	\N	[{"step": "Draw and label an animal cell and a plant cell.", "detail": "Include: nucleus, cell membrane, mitochondria, ribosomes. For plant cells, add: cell wall, chloroplasts, central vacuole."}]	["What structures do plant and animal cells share?", "What structures are unique to plant cells?", "Why do plant cells need chloroplasts but animal cells do not?"]	Explain the relationship between cell structure and function. Why does each organelle matter?	\N	\N	\N	\N	\N	\N	Understanding cells is the foundation of medicine, genetics, and biotechnology.	t
239	80	Circulatory System	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.406768	Explain the key scientific concepts of Circulatory System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Circulatory System to real-world applications.	This lesson explores scientific concepts related to Circulatory System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Circulatory System. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Circulatory System	This lesson explores scientific concepts related to Circulatory System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Circulatory System connects to real-world applications in technology, health, and environmental stewardship.	f
240	80	Respiratory System	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.407785	Explain the key scientific concepts of Respiratory System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Respiratory System to real-world applications.	This lesson explores scientific concepts related to Respiratory System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Respiratory System. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Respiratory System	This lesson explores scientific concepts related to Respiratory System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Respiratory System connects to real-world applications in technology, health, and environmental stewardship.	f
242	81	Ecosystems	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.409917	Explain the key scientific concepts of Ecosystems.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ecosystems to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Ecosystems	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	t
243	81	Human Impact on Environment	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.410849	Explain the key scientific concepts of Human Impact on Environment.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Human Impact on Environment to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	\N	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Human Impact on Environment	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	f
244	82	Mesopotamia	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.412335	Explain key concepts related to Mesopotamia.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Mesopotamia. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Mesopotamia, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Mesopotamia and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Mesopotamia connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Mesopotamia	This lesson examines important social studies concepts related to Mesopotamia. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Mesopotamia. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Mesopotamia develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
246	82	Ancient Greece	\N	3	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.413996	Explain key concepts related to Ancient Greece.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Ancient Greece. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Ancient Greece, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Ancient Greece and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Ancient Greece connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Ancient Greece	This lesson examines important social studies concepts related to Ancient Greece. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Ancient Greece. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Ancient Greece develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
248	83	Climate Zones	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.416214	Explain key concepts related to Climate Zones.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Climate Zones. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Climate Zones, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Climate Zones and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Climate Zones connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Climate Zones	This lesson examines important social studies concepts related to Climate Zones. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Climate Zones. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Climate Zones develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
250	84	Roman Republic	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.41823	Explain key concepts related to Roman Republic.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Roman Republic. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Roman Republic, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Roman Republic and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Roman Republic connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Roman Republic	This lesson examines important social studies concepts related to Roman Republic. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Roman Republic. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Roman Republic develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
252	84	Fall of Rome	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.420067	Explain key concepts related to Fall of Rome.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Fall of Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Fall of Rome, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Fall of Rome and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Fall of Rome connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 6	Middle School	\N	\N	f	Fall of Rome	This lesson examines important social studies concepts related to Fall of Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Fall of Rome. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Fall of Rome develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
274	92	Word Origins	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.44424	Read and comprehend a grade-level informational text.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding vocabulary in context. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Using Word Parts", "content": "\\"Unbelievable\\" = un (not) + believe + able (capable of). Meaning: not capable of being believed; incredible.", "solution": "unbelievable = not capable of being believed"}, {"title": "Context Clues", "content": "\\"The arid desert received less than five inches of rain per year.\\" Clue: \\"less than five inches of rain\\" tells us arid means very dry.", "solution": "arid = extremely dry"}]	[{"hint": "dis- (not) + agree (to be in harmony) + -ment (state of).", "answer": "dis-agree-ment: the state of not agreeing", "question": "Break the word \\"disagreement\\" into its prefix, root, and suffix. Define each part."}, {"hint": "\\"There\\" = a place. \\"Their\\" = belonging to them. \\"They're\\" = they are.", "answer": "They went there to pick up their order.", "question": "Write the correct homophone: \\"They went (their/there/they're) to pick up (their/there/they're) order.\\""}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
276	92	Academic Language	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.445999	Read and comprehend a grade-level informational text.\nApply the skill of understanding vocabulary in context to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on understanding vocabulary in context. You will read a informational text and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Academic Language, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	The Science of Sleep	informational_text	Every night, your body performs one of its most essential functions: sleep. Although it may seem like nothing is happening when you close your eyes, your brain is actually working harder during some stages of sleep than when you are awake.\n\nSleep occurs in cycles that last about 90 minutes each. During a full night's rest, you typically go through four to six of these cycles. Each cycle contains four stages. The first three stages are called non-REM sleep, and the fourth is called REM (Rapid Eye Movement) sleep.\n\nDuring the deep stages of non-REM sleep, your body repairs muscle tissue, strengthens the immune system, and releases growth hormones. This is why sleep is especially important for teenagers, whose bodies are still growing and developing.\n\nREM sleep is when most dreaming occurs. During this stage, your brain processes emotions, consolidates memories, and sorts through the information you absorbed during the day. Research shows that students who get adequate sleep perform significantly better on tests than those who stay up late studying. The brain literally needs sleep to move information from short-term to long-term memory.\n\nDespite its importance, many teenagers do not get enough sleep. The American Academy of Sleep Medicine recommends that teenagers get eight to ten hours of sleep per night. However, studies show that nearly 73 percent of high school students get fewer than eight hours on school nights.\n\nSeveral factors work against teen sleep. Biological changes during puberty shift the body's internal clock, making it difficult to fall asleep before 11 p.m. Early school start times, homework, extracurricular activities, and screen time all reduce the hours available for rest.\n\nThe consequences of sleep deprivation are serious. Insufficient sleep is linked to difficulty concentrating, mood swings, weakened immunity, weight gain, and increased risk of accidents. Over time, chronic sleep loss can affect mental health and academic performance.\n\nImproving sleep habits is possible. Experts recommend keeping a consistent sleep schedule, avoiding screens for at least 30 minutes before bed, keeping the bedroom cool and dark, and avoiding caffeine in the afternoon and evening. Even small changes can lead to meaningful improvements in sleep quality.	Original passage for JNM Home Education Program	Grade 7	Middle School	\N	\N	f	Understanding vocabulary in context	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
253	85	Constant of Proportionality	\N	1	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.422007	Understand the concepts and methods of Constant of Proportionality.\nSolve problems involving Constant of Proportionality accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Constant of Proportionality to real-world situations.	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Constant of Proportionality	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	SOH CAH TOA: sin=opp/hyp, cos=adj/hyp, tan=opp/adj	[{"step": "Find opposite side: angle 30°, hyp=10", "work": "sin(30°)=opp/10, opp=10×0.5=5", "answer": "5"}]	[{"mistake": "Using the wrong trig ratio for the given sides", "correction": "SOH CAH TOA: identify which sides you have relative to the angle."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Constant of Proportionality helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
255	85	Scale Drawings	\N	3	https://www.khanacademy.org/math/cc-seventh-grade-math	Khan Academy: 7th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.423843	Understand the concepts and methods of Scale Drawings.\nSolve problems involving Scale Drawings accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Scale Drawings to real-world situations.	This lesson covers important mathematical concepts related to Scale Drawings. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Scale Drawings. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Scale Drawings using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Scale Drawings	This lesson covers important mathematical concepts related to Scale Drawings. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Scale Drawings", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Scale Drawings helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
257	86	Operations with Fractions	\N	2	https://www.khanacademy.org/math/arithmetic	Khan Academy: Arithmetic	10-15 min	\N	\N	t	2026-06-23 11:23:04.425848	Understand the concepts and methods of Operations with Fractions.\nSolve problems involving Operations with Fractions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Operations with Fractions to real-world situations.	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Equivalent Fractions", "content": "Find a fraction equivalent to 3/4. Multiply both parts by 2: (3×2)/(4×2) = 6/8. So 3/4 = 6/8.", "solution": "3/4 = 6/8"}, {"title": "Adding Fractions", "content": "Add 1/4 + 2/4. The denominators are the same, so add the numerators: (1+2)/4 = 3/4.", "solution": "1/4 + 2/4 = 3/4"}]	[{"hint": "Find the greatest common factor of 8 and 12, then divide both by it.", "answer": "2/3", "question": "Simplify the fraction 8/12 to lowest terms."}, {"hint": "When denominators are the same, add the numerators.", "answer": "3/5", "question": "Add: 2/5 + 1/5"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Operations with Fractions	A fraction represents part of a whole. The numerator (top) shows parts selected; the denominator (bottom) shows total equal parts. To add or subtract fractions, find a common denominator first.	a/b + c/d = (ad + bc) / bd	[{"step": "Add 1/4 + 2/4", "work": "Same denominator: (1+2)/4 = 3/4", "answer": "3/4"}, {"step": "Add 1/3 + 1/6", "work": "LCD=6. Convert: 2/6+1/6=3/6=1/2", "answer": "1/2"}]	[{"mistake": "Adding denominators: 1/4+1/4≠2/8", "correction": "Only add numerators when denominators match. 1/4+1/4=2/4=1/2."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Operations with Fractions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
259	87	Angles	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.427852	Understand the concepts and methods of Angles.\nSolve problems involving Angles accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Angles to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 6 cm and width 10 cm. Area = length × width.", "solution": "A = 6 × 10 = 60 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(6 + 10) = 2(16) = 32 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 7 and height 4."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Angles	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 10×9", "work": "A = length × width = 10 × 9", "answer": "90 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Angles helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
262	88	Probability	\N	1	https://www.khanacademy.org/math/statistics-probability	Khan Academy: Statistics & Probability	10-15 min	\N	\N	t	2026-06-23 11:23:04.430799	Understand the concepts and methods of Probability.\nSolve problems involving Probability accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Probability to real-world situations.	This lesson covers important mathematical concepts related to Probability. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding the Mean", "content": "Data: 8, 5, 12, 9, 6. Sum = 40. Count = 5. Mean = 40 ÷ 5.", "solution": "Mean = 8"}, {"title": "Finding Probability", "content": "A bag has 3 red and 7 blue marbles. P(red) = 3/(3+7) = 3/10.", "solution": "P(red) = 0.3 = 30%"}]	[{"hint": "First sort the numbers, then find the middle one.", "answer": "9", "question": "Find the median of: 14, 7, 11, 3, 9"}, {"hint": "Count favorable outcomes (1 and 2) out of total (6).", "answer": "2/6 = 1/3", "question": "A die has 6 faces. What is the probability of rolling a number less than 3?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Probability	This lesson covers important mathematical concepts related to Probability. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Probability", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Probability helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
264	88	Comparing Populations	\N	3	https://www.khanacademy.org/math/cc-seventh-grade-math	Khan Academy: 7th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.432633	Understand the concepts and methods of Comparing Populations.\nSolve problems involving Comparing Populations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Comparing Populations to real-world situations.	This lesson covers important mathematical concepts related to Comparing Populations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Comparing Populations. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Comparing Populations using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Comparing Populations	This lesson covers important mathematical concepts related to Comparing Populations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Comparing Populations", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Comparing Populations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
278	93	DNA and Heredity	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.44837	Explain the key scientific concepts of DNA and Heredity.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect DNA and Heredity to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	DNA and Heredity	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	t
280	94	Nervous System	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.450527	Explain the key scientific concepts of Nervous System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Nervous System to real-world applications.	This lesson explores scientific concepts related to Nervous System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Nervous System. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Nervous System	This lesson explores scientific concepts related to Nervous System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Nervous System connects to real-world applications in technology, health, and environmental stewardship.	f
282	94	Immune System	\N	3	https://www.khanacademy.org/science/health-and-medicine	Khan Academy: Health & Medicine	10-15 min	\N	\N	t	2026-06-23 11:23:04.452288	Explain the key scientific concepts of Immune System.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Immune System to real-world applications.	This lesson explores scientific concepts related to Immune System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Immune System. Identify the independent and dependent variables."}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Immune System	This lesson explores scientific concepts related to Immune System. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Immune System connects to real-world applications in technology, health, and environmental stewardship.	t
284	95	Symbiotic Relationships	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.454336	Explain the key scientific concepts of Symbiotic Relationships.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Symbiotic Relationships to real-world applications.	This lesson explores scientific concepts related to Symbiotic Relationships. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Symbiotic Relationships. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Symbiotic Relationships	This lesson explores scientific concepts related to Symbiotic Relationships. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Symbiotic Relationships connects to real-world applications in technology, health, and environmental stewardship.	f
285	95	Conservation	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.455403	Explain the key scientific concepts of Conservation.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Conservation to real-world applications.	This lesson explores scientific concepts related to Conservation. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Conservation. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Conservation	This lesson explores scientific concepts related to Conservation. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Conservation connects to real-world applications in technology, health, and environmental stewardship.	f
287	96	Islamic Golden Age	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.458023	Explain key concepts related to Islamic Golden Age.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Islamic Golden Age. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Islamic Golden Age, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Islamic Golden Age and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Islamic Golden Age connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Islamic Golden Age	This lesson examines important social studies concepts related to Islamic Golden Age. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Islamic Golden Age. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Islamic Golden Age develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
290	97	Protestant Reformation	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.460908	Explain key concepts related to Protestant Reformation.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Protestant Reformation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Protestant Reformation, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Protestant Reformation and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Protestant Reformation connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Protestant Reformation	This lesson examines important social studies concepts related to Protestant Reformation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Protestant Reformation. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Protestant Reformation develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
294	98	Civic Participation	\N	3	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.464778	Explain key concepts related to Civic Participation.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 7	Middle School	\N	\N	f	Civic Participation	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
314	105	Literary Movements	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.485521	Read and comprehend a grade-level short story.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson focuses on reading comprehension. You will read a short story and apply this skill by analyzing the text carefully. Strong readers do not just understand what a text says—they think about how and why the author makes specific choices.\n\nAs you read, annotate key details, unfamiliar words, and moments that seem important. After reading, you will answer questions that require you to cite specific evidence from the text to support your responses.	[{"term": "consolidate", "definition": "To combine or bring together into a single, stronger whole."}, {"term": "cascade", "definition": "To fall or flow downward rapidly, like a waterfall."}, {"term": "deprivation", "definition": "The lack or denial of something considered necessary."}, {"term": "heritage", "definition": "Traditions, achievements, and beliefs passed down through generations."}, {"term": "perspective", "definition": "A particular way of viewing or understanding things."}, {"term": "metaphor", "definition": "A figure of speech comparing two unlike things without using like or as."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Forgotten Trail	short_story	The trail had no name on the map. It was a thin gray line that wandered off the main path and disappeared into the trees. Kai had seen it every time his family hiked Ridgeback Mountain, but they always stayed on the marked trail.\n\nToday, Kai was alone. He was fifteen, old enough—according to his parents—to hike the lower loops by himself. He stood at the fork where the unnamed trail began and felt something pull at him, a quiet curiosity that had been building for years.\n\nThe path was narrow and overgrown. Branches reached across it like arms trying to hold him back. The ground was soft and uneven, scattered with roots that grabbed at his boots. After twenty minutes, Kai began to doubt his decision. The trees blocked most of the sunlight, and the trail seemed to be fading.\n\nThen he heard it—water. Not a gentle stream, but something bigger. He pushed through a curtain of thick ferns and stopped.\n\nA waterfall cascaded over a wall of dark rock into a clear pool below. Mist hung in the air like silver dust. The rocks around the pool were covered in bright green moss. Kai had never seen anything so beautiful that close to the parking lot.\n\nHe sat on a flat rock and listened. The water roared and whispered at the same time. He thought about how this place had been here his whole life, hidden just a few hundred steps from the trail everyone followed.\n\nKai pulled out his phone to take a picture, then stopped. Some things, he decided, were worth more than a photo. He sat for a long time, letting the sound fill up the empty spaces inside him.\n\nWhen he finally stood and hiked back to the main trail, the forest felt different. Not because it had changed, but because he had. He realized that the best discoveries were not the ones people pointed you toward. They were the ones you had the courage to find yourself.\n\nKai smiled and walked toward the parking lot, already planning his next visit. This time, he would bring a notebook instead of a phone.	Original passage for JNM Home Education Program	Grade 8	Middle School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
296	99	Slope	\N	2	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.467162	Understand the concepts and methods of Slope.\nSolve problems involving Slope accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Slope to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Slope	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Slope helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
297	99	Graphing Linear Equations	\N	3	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.468085	Understand the concepts and methods of Graphing Linear Equations.\nSolve problems involving Graphing Linear Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Graphing Linear Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 2x = 16. Divide both sides by 2.", "solution": "x = 8"}, {"title": "Two-Step Equation", "content": "Solve: 2x + 7 = 23. Step 1: Subtract 7 from both sides → 2x = 16. Step 2: Divide by 2.", "solution": "x = 8"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Graphing Linear Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 7x + 2 = 44", "work": "Step 1: Subtract 2: 7x = 42. Step 2: Divide by 7: x = 6. Check: 7(6)+2=44 ✓", "answer": "x = 6"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Graphing Linear Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
299	100	Solving by Substitution	\N	2	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.470218	Understand the concepts and methods of Solving by Substitution.\nSolve problems involving Solving by Substitution accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Solving by Substitution to real-world situations.	This lesson covers important mathematical concepts related to Solving by Substitution. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Solving by Substitution. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Solving by Substitution using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Solving by Substitution	This lesson covers important mathematical concepts related to Solving by Substitution. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Solving by Substitution", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solving by Substitution helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
301	101	Understanding Functions	\N	1	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.472492	Understand the concepts and methods of Understanding Functions.\nSolve problems involving Understanding Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Understanding Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Understanding Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Understanding Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
302	101	Linear vs Nonlinear	\N	2	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.473424	Understand the concepts and methods of Linear vs Nonlinear.\nSolve problems involving Linear vs Nonlinear accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Linear vs Nonlinear to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Linear vs Nonlinear	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Linear vs Nonlinear helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
304	102	Pythagorean Theorem	\N	1	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.475508	Understand the concepts and methods of Pythagorean Theorem.\nSolve problems involving Pythagorean Theorem accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Pythagorean Theorem to real-world situations.	This lesson covers important mathematical concepts related to Pythagorean Theorem. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Pythagorean Theorem. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Pythagorean Theorem using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Pythagorean Theorem	This lesson covers important mathematical concepts related to Pythagorean Theorem. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Pythagorean Theorem", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Pythagorean Theorem helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
305	102	Transformations	\N	2	https://www.khanacademy.org/math/cc-eighth-grade-math	Khan Academy: 8th Grade Math	10-15 min	\N	\N	t	2026-06-23 11:23:04.476345	Understand the concepts and methods of Transformations.\nSolve problems involving Transformations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Transformations to real-world situations.	This lesson covers important mathematical concepts related to Transformations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Transformations. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Transformations using the methods from this lesson."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Transformations	This lesson covers important mathematical concepts related to Transformations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Transformations", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Transformations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
319	107	Atomic Structure	\N	1	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.49104	Explain the key scientific concepts of Atomic Structure.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Atomic Structure to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Atomic Structure	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
322	108	Forces and Motion	\N	1	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.494095	Explain the key scientific concepts of Forces and Motion.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Forces and Motion to real-world applications.	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	[{"title": "Newton's Second Law", "content": "A 10 kg box is pushed with a force of 50 N. What is its acceleration? F = ma → 50 = 10 × a → a = 50/10.", "solution": "a = 5 m/s²"}, {"title": "Newton's Third Law", "content": "A swimmer pushes water backward (action). The water pushes the swimmer forward (reaction). This is why swimming works.", "solution": "Action and reaction forces are equal in magnitude and opposite in direction."}]	[{"hint": "Use F = ma.", "answer": "F = 5 × 3 = 15 N", "question": "Calculate: A 5 kg object accelerates at 3 m/s². What force is acting on it?"}, {"hint": "What force opposes the ball's motion?", "answer": "Friction between the ball and grass slows it down until it stops.", "question": "Explain why a soccer ball eventually stops rolling on grass."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Forces and Motion	Newton's Three Laws: 1st—An object stays at rest or in motion unless acted on by a force (inertia). 2nd—Force = mass × acceleration (F=ma). 3rd—Every action has an equal and opposite reaction. Friction opposes motion. Gravity accelerates objects at 9.8 m/s².	\N	\N	\N	["toy car", "ramp", "ruler", "timer", "different surfaces (carpet, tile, sandpaper)"]	Keep the ramp stable. Do not stand on the ramp.	[{"step": "Release a toy car from the same height on ramps with different surfaces.", "detail": "Measure how far the car travels on each surface. Record in a data table."}]	["On which surface did the car travel farthest?", "On which surface did it travel the shortest distance?", "How does friction affect the car's motion?"]	Explain how friction affects motion using your experimental data as evidence.	\N	\N	\N	\N	\N	\N	Engineers design brakes, tires, and road surfaces using knowledge of friction and motion.	t
326	109	Earthquakes and Volcanoes	\N	2	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.497771	Explain the key scientific concepts of Earthquakes and Volcanoes.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Earthquakes and Volcanoes to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Earthquakes and Volcanoes	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
327	109	Climate Change	\N	3	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.498594	Explain the key scientific concepts of Climate Change.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Climate Change to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Climate Change	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
329	110	Three Branches of Government	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.50083	Explain key concepts related to Three Branches of Government.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Three Branches of Government	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
331	111	Causes of the Civil War	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.502801	Explain key concepts related to Causes of the Civil War.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Causes of the Civil War."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Causes of the Civil War	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
333	111	Reconstruction	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.504803	Explain key concepts related to Reconstruction.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Reconstruction. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Reconstruction, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Reconstruction and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Reconstruction connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Reconstruction	This lesson examines important social studies concepts related to Reconstruction. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Reconstruction. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Reconstruction develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
335	112	Immigration	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.507183	Explain key concepts related to Immigration.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Immigration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Immigration, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Immigration and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Immigration connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 8	Middle School	\N	\N	f	Immigration	This lesson examines important social studies concepts related to Immigration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Immigration. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Immigration develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
349	117	The Short Story	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.522126	Read and comprehend a grade-level literature excerpt.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 9	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
351	117	Poetry Forms	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.523964	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 9	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
352	118	Literary Analysis Essay	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.525138	Read and comprehend a grade-level poem.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding essay structure and argument through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 9	High School	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
355	119	Sentence Variety	\N	1	https://www.khanacademy.org/humanities/grammar	Khan Academy: Grammar	10-15 min	\N	\N	t	2026-06-23 11:23:04.528085	Read and comprehend a grade-level poem.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding grammar and sentence structure through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Parts of Speech", "content": "\\"The brave firefighter quickly climbed the tall ladder.\\" Noun: firefighter, ladder. Verb: climbed. Adjective: brave, tall. Adverb: quickly.", "solution": "Each word serves a specific function in the sentence."}, {"title": "Correcting a Sentence", "content": "Incorrect: \\"Me and him went to the store.\\" Correct: \\"He and I went to the store.\\" Use subject pronouns (I, he, she, we, they) as subjects.", "solution": "\\"He and I went to the store.\\""}]	[{"hint": "The subject is who/what the sentence is about. The predicate is everything else.", "answer": "Subject: The old oak tree. Predicate: swayed gently in the wind.", "question": "Identify the subject and predicate in: \\"The old oak tree swayed gently in the wind.\\""}, {"hint": "Use commas to separate items in a list.", "answer": "\\"I need eggs, milk, bread, and butter from the store.\\"", "question": "Add commas where needed: \\"I need eggs milk bread and butter from the store.\\""}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 9	High School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
357	119	Tone and Voice	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.529913	Read and comprehend a grade-level poem.\nApply the skill of understanding grammar and sentence structure to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding grammar and sentence structure through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Tone and Voice, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 9	High School	\N	\N	f	Understanding grammar and sentence structure	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
359	120	Persuasive Techniques	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.532229	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 9	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
337	113	Variables and Expressions	\N	1	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.509753	Understand the concepts and methods of Variables and Expressions.\nSolve problems involving Variables and Expressions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Variables and Expressions to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 6x = 30. Divide both sides by 6.", "solution": "x = 5"}, {"title": "Two-Step Equation", "content": "Solve: 6x + 1 = 31. Step 1: Subtract 1 from both sides → 6x = 30. Step 2: Divide by 6.", "solution": "x = 5"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Variables and Expressions	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 5x + 7 = 42", "work": "Step 1: Subtract 7: 5x = 35. Step 2: Divide by 5: x = 7. Check: 5(7)+7=42 ✓", "answer": "x = 7"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Variables and Expressions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
338	113	Order of Operations	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.510598	Understand the concepts and methods of Order of Operations.\nSolve problems involving Order of Operations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Order of Operations to real-world situations.	This lesson covers important mathematical concepts related to Order of Operations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Order of Operations	This lesson covers important mathematical concepts related to Order of Operations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Order of Operations", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Order of Operations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
340	114	Solving Linear Equations	\N	1	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.512773	Understand the concepts and methods of Solving Linear Equations.\nSolve problems involving Solving Linear Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Solving Linear Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 8x = 40. Divide both sides by 8.", "solution": "x = 5"}, {"title": "Two-Step Equation", "content": "Solve: 8x + 9 = 49. Step 1: Subtract 9 from both sides → 8x = 40. Step 2: Divide by 8.", "solution": "x = 5"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Solving Linear Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 8x + 2 = 34", "work": "Step 1: Subtract 2: 8x = 32. Step 2: Divide by 8: x = 4. Check: 8(4)+2=34 ✓", "answer": "x = 4"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solving Linear Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
341	114	Graphing Linear Inequalities	\N	2	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.513697	Understand the concepts and methods of Graphing Linear Inequalities.\nSolve problems involving Graphing Linear Inequalities accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Graphing Linear Inequalities to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Graphing Linear Inequalities	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Graphing Linear Inequalities helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
343	115	Adding and Subtracting Polynomials	\N	1	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.515696	Understand the concepts and methods of Adding and Subtracting Polynomials.\nSolve problems involving Adding and Subtracting Polynomials accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Adding and Subtracting Polynomials to real-world situations.	Addition combines quantities to find a total. Addition properties include commutative (a+b=b+a), associative ((a+b)+c=a+(b+c)), and identity (a+0=a).	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 90 + 50. Start in the ones place: 0 + 0 = 0. Write 0. Continue to the tens place.", "solution": "90 + 50 = 140"}, {"title": "Word Problem", "content": "A library has 660 fiction books and 256 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "660 + 256 = 916 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "144", "question": "Calculate: 53 + 91"}, {"hint": "Identify the two quantities and add them.", "answer": "605 items", "question": "A store sold 443 items on Monday and 162 items on Tuesday. How many items were sold in total?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Adding and Subtracting Polynomials	Addition combines quantities to find a total. Addition properties include commutative (a+b=b+a), associative ((a+b)+c=a+(b+c)), and identity (a+0=a).	\N	[{"step": "Add 128 + 130", "work": "Line up by place value. Add ones, then tens.  128+130=258", "answer": "258"}]	[{"mistake": "Forgetting to regroup (carry) when a column sums to 10 or more", "correction": "Always check if each column total is 10+. If so, write the ones digit and carry the tens digit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Adding and Subtracting Polynomials helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
344	115	Multiplying Polynomials	\N	2	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.516585	Understand the concepts and methods of Multiplying Polynomials.\nSolve problems involving Multiplying Polynomials accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Multiplying Polynomials to real-world situations.	Multiplication is repeated addition. For multi-digit: multiply each digit, shift rows, add partial products. Distributive property: a(b+c) = ab+ac.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Multiplication", "content": "Calculate 9 × 11. This means 9 groups of 11, or 11 added 9 times.", "solution": "9 × 11 = 99"}, {"title": "Distributive Property", "content": "Calculate 19 × 2 using the distributive property. Break 19 into 10 + 9: (10 × 2) + (9 × 2) = 20 + 18.", "solution": "19 × 2 = 38"}]	[{"hint": "Multiply using your times tables or repeated addition.", "answer": null, "question": "Calculate: 6 × 12"}, {"hint": "Multiply rows by desks per row.", "answer": null, "question": "A classroom has 6 rows of desks with 6 desks in each row. How many desks total?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Multiplying Polynomials	Multiplication is repeated addition. For multi-digit: multiply each digit, shift rows, add partial products. Distributive property: a(b+c) = ab+ac.	a × b = product	[{"step": "Calculate 42 × 20", "work": "42 groups of 20: 42×20=840", "answer": "840"}]	[{"mistake": "Not aligning partial products correctly in multi-digit multiplication", "correction": "Each new row shifts one place left. Then add all rows."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Multiplying Polynomials helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
346	116	Graphing Quadratics	\N	1	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.518579	Understand the concepts and methods of Graphing Quadratics.\nSolve problems involving Graphing Quadratics accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Graphing Quadratics to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Graphing Quadratics	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Graphing Quadratics helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
347	116	Quadratic Formula	\N	2	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.51955	Understand the concepts and methods of Quadratic Formula.\nSolve problems involving Quadratic Formula accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Quadratic Formula to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Factoring", "content": "Solve x² − 7x + 12 = 0. Find two numbers that multiply to 12 and add to −7: −3 and −4. Factor: (x − 3)(x − 4) = 0.", "solution": "x = 3 or x = 4"}, {"title": "Quadratic Formula", "content": "Solve 2x² + 3x − 2 = 0. a=2, b=3, c=−2. Discriminant = 9 + 16 = 25. x = (−3 ± 5)/4.", "solution": "x = 1/2 or x = −2"}]	[{"hint": "Find two numbers that multiply to 20 and add to −9.", "answer": "x = 4 or x = 5", "question": "Factor and solve: x² − 9x + 20 = 0"}, {"hint": "a=1, b=2, c=−8. Plug into the formula.", "answer": "x = 2 or x = −4", "question": "Use the quadratic formula to solve: x² + 2x − 8 = 0"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Quadratic Formula	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Quadratic Formula helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
348	116	Applications of Quadratics	\N	3	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.520445	Understand the concepts and methods of Applications of Quadratics.\nSolve problems involving Applications of Quadratics accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Applications of Quadratics to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Factoring", "content": "Solve x² − 7x + 12 = 0. Find two numbers that multiply to 12 and add to −7: −3 and −4. Factor: (x − 3)(x − 4) = 0.", "solution": "x = 3 or x = 4"}, {"title": "Quadratic Formula", "content": "Solve 2x² + 3x − 2 = 0. a=2, b=3, c=−2. Discriminant = 9 + 16 = 25. x = (−3 ± 5)/4.", "solution": "x = 1/2 or x = −2"}]	[{"hint": "Find two numbers that multiply to 20 and add to −9.", "answer": "x = 4 or x = 5", "question": "Factor and solve: x² − 9x + 20 = 0"}, {"hint": "a=1, b=2, c=−8. Plug into the formula.", "answer": "x = 2 or x = −4", "question": "Use the quadratic formula to solve: x² + 2x − 8 = 0"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Applications of Quadratics	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Applications of Quadratics helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
362	121	Cell Division	\N	2	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.535661	Explain the key scientific concepts of Cell Division.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Cell Division to real-world applications.	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	[{"title": "Animal vs. Plant Cell", "content": "Both have: nucleus, mitochondria, cell membrane, ribosomes. Only plant cells have: cell wall, chloroplasts, large central vacuole.", "solution": "Plant cells have structures for photosynthesis and structural support that animal cells lack."}]	[{"hint": "Think about energy production.", "answer": "Mitochondria produce ATP (energy) through cellular respiration.", "question": "What is the function of the mitochondria?"}, {"hint": "Think about structures unique to plant cells.", "answer": "Plant cells have cell walls and chloroplasts; animal cells do not.", "question": "Name two differences between plant and animal cells."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Cell Division	All living things are made of cells. Prokaryotic cells (bacteria) lack a nucleus. Eukaryotic cells (plants, animals) have a nucleus containing DNA. Key organelles: nucleus (control center), mitochondria (energy), ribosomes (proteins), cell membrane (boundary).	\N	\N	\N	["microscope (optional)", "prepared slides or diagrams", "colored pencils", "paper"]	\N	[{"step": "Draw and label an animal cell and a plant cell.", "detail": "Include: nucleus, cell membrane, mitochondria, ribosomes. For plant cells, add: cell wall, chloroplasts, central vacuole."}]	["What structures do plant and animal cells share?", "What structures are unique to plant cells?", "Why do plant cells need chloroplasts but animal cells do not?"]	Explain the relationship between cell structure and function. Why does each organelle matter?	\N	\N	\N	\N	\N	\N	Understanding cells is the foundation of medicine, genetics, and biotechnology.	t
364	122	Mendel and Heredity	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.53816	Explain the key scientific concepts of Mendel and Heredity.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Mendel and Heredity to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Mendel and Heredity	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	f
366	122	Genetic Mutations	\N	3	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.540412	Explain the key scientific concepts of Genetic Mutations.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Genetic Mutations to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Genetic Mutations	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	t
368	123	Natural Selection	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.542707	Explain the key scientific concepts of Natural Selection.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Natural Selection to real-world applications.	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	[{"title": "Punnett Square", "content": "Cross Bb × Bb (both parents carry one dominant and one recessive allele). Results: BB (25%), Bb (50%), bb (25%). So 75% show the dominant trait and 25% show the recessive trait.", "solution": "3:1 ratio of dominant to recessive phenotypes."}]	[{"hint": "Set up a Punnett square with Bb × Bb.", "answer": "25% (bb)", "question": "If both parents have the genotype Bb for eye color (B = brown, b = blue), what percentage of offspring could have blue eyes?"}, {"hint": "Think about which individuals survive and reproduce more successfully.", "answer": "Organisms with favorable traits survive and reproduce more, passing those traits to offspring. Over generations, the population becomes better adapted.", "question": "Explain how natural selection leads to adaptation over time."}]	\N	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Natural Selection	DNA stores genetic instructions in a double helix. Genes are DNA segments coding for traits. Humans have 46 chromosomes (23 pairs). Dominant alleles are expressed with one copy; recessive require two. Natural selection: organisms with favorable traits reproduce more, driving evolution over generations.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Genetics informs medicine (genetic testing, gene therapy), agriculture (crop improvement), and forensics (DNA evidence).	f
370	124	Ecosystems and Biomes	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.545036	Explain the key scientific concepts of Ecosystems and Biomes.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ecosystems and Biomes to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Ecosystems and Biomes	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	t
373	125	Early Civilizations	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.548177	Explain key concepts related to Early Civilizations.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Early Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Early Civilizations."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Early Civilizations	This lesson examines important social studies concepts related to Early Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Early Civilizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Early Civilizations develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
375	125	Rise of Religions	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.549922	Explain key concepts related to Rise of Religions.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Rise of Religions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Rise of Religions, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Rise of Religions and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Rise of Religions connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Rise of Religions	This lesson examines important social studies concepts related to Rise of Religions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Rise of Religions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Rise of Religions develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
376	126	Byzantine Empire	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.551094	Explain key concepts related to Byzantine Empire.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Byzantine Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Byzantine Empire, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Byzantine Empire and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Byzantine Empire connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Byzantine Empire	This lesson examines important social studies concepts related to Byzantine Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Byzantine Empire. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Byzantine Empire develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
378	126	Renaissance	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.552908	Explain key concepts related to Renaissance.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Renaissance. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Renaissance, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Renaissance and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Renaissance connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Renaissance	This lesson examines important social studies concepts related to Renaissance. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Renaissance. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Renaissance develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
382	128	World War I	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.557967	Explain key concepts related to World War I.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to World War I."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	World War I	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
384	128	Cold War	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.559607	Explain key concepts related to Cold War.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Cold War."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 9	High School	\N	\N	f	Cold War	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
398	133	Medieval and Renaissance Works	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.57461	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Medieval and Renaissance Works, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
399	133	Modern World Literature	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.575533	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
401	134	Argumentative Essays	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.577645	Read and comprehend a grade-level speech.\nApply the skill of analyzing rhetorical strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in analyzing rhetorical strategies through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 10	High School	\N	\N	f	Analyzing rhetorical strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
403	135	Literary Theory	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.579765	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 10	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
405	135	Media Literacy	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.581522	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Media Literacy, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 10	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
407	136	Poetry Composition	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.58348	Read and comprehend a grade-level poem.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 10	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
493	165	Anglo-Saxon and Medieval	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.674679	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Anglo-Saxon and Medieval, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
386	129	Angles and Angle Relationships	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.562169	Understand the concepts and methods of Angles and Angle Relationships.\nSolve problems involving Angles and Angle Relationships accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Angles and Angle Relationships to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 6 cm and width 7 cm. Area = length × width.", "solution": "A = 6 × 7 = 42 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(6 + 7) = 2(13) = 26 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 8 and height 4."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Angles and Angle Relationships	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 6×8", "work": "A = length × width = 6 × 8", "answer": "48 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Angles and Angle Relationships helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
387	129	Parallel Lines	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.563007	Understand the concepts and methods of Parallel Lines.\nSolve problems involving Parallel Lines accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Parallel Lines to real-world situations.	This lesson covers important mathematical concepts related to Parallel Lines. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Parallel Lines. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Parallel Lines using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Parallel Lines	This lesson covers important mathematical concepts related to Parallel Lines. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Parallel Lines", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Parallel Lines helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
391	131	Circle Properties	\N	1	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.567285	Understand the concepts and methods of Circle Properties.\nSolve problems involving Circle Properties accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Circle Properties to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 10 cm and width 4 cm. Area = length × width.", "solution": "A = 10 × 4 = 40 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(10 + 4) = 2(14) = 28 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 7 and height 6."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Circle Properties	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 14×10", "work": "A = length × width = 14 × 10", "answer": "140 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Circle Properties helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
395	132	Volume of Solids	\N	2	https://www.khanacademy.org/math/geometry	Khan Academy: Geometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.571171	Understand the concepts and methods of Volume of Solids.\nSolve problems involving Volume of Solids accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Volume of Solids to real-world situations.	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Area of a Rectangle", "content": "Find the area of a rectangle with length 10 cm and width 4 cm. Area = length × width.", "solution": "A = 10 × 4 = 40 cm²"}, {"title": "Perimeter of a Rectangle", "content": "Find the perimeter of the same rectangle. P = 2(length + width).", "solution": "P = 2(10 + 4) = 2(14) = 28 cm"}]	[{"hint": "A = ½ × base × height.", "answer": null, "question": "Find the area of a triangle with base 14 and height 10."}, {"hint": "C = 2πr.", "answer": "43.96", "question": "Find the circumference of a circle with radius 7. Use π ≈ 3.14."}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Volume of Solids	Geometry studies shapes, sizes, and spatial relationships. Area measures space inside a 2D shape. Volume measures space inside a 3D shape.	Area of rectangle = l × w | Area of triangle = ½ × b × h | Circumference = 2πr	[{"step": "Find area: rectangle 9×8", "work": "A = length × width = 9 × 8", "answer": "72 square units"}]	[{"mistake": "Confusing area (square units) with perimeter (linear units)", "correction": "Area = inside space (multiply). Perimeter = outside distance (add all sides)."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Volume of Solids helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
396	132	Geometric Transformations	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.572175	Understand the concepts and methods of Geometric Transformations.\nSolve problems involving Geometric Transformations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Geometric Transformations to real-world situations.	This lesson covers important mathematical concepts related to Geometric Transformations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Geometric Transformations. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Geometric Transformations using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Geometric Transformations	This lesson covers important mathematical concepts related to Geometric Transformations. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Geometric Transformations", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Geometric Transformations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
410	137	Periodic Table	\N	2	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.586884	Explain the key scientific concepts of Periodic Table.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Periodic Table to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Periodic Table	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
412	138	Ionic Bonds	\N	1	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.589331	Explain the key scientific concepts of Ionic Bonds.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Ionic Bonds to real-world applications.	This lesson explores scientific concepts related to Ionic Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Ionic Bonds	This lesson explores scientific concepts related to Ionic Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Ionic Bonds connects to real-world applications in technology, health, and environmental stewardship.	t
414	138	Metallic Bonds	\N	3	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.591119	Explain the key scientific concepts of Metallic Bonds.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Metallic Bonds to real-world applications.	This lesson explores scientific concepts related to Metallic Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Metallic Bonds	This lesson explores scientific concepts related to Metallic Bonds. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Metallic Bonds connects to real-world applications in technology, health, and environmental stewardship.	t
416	139	Types of Reactions	\N	2	https://www.khanacademy.org/science/chemistry	Khan Academy: Chemistry	10-15 min	\N	\N	t	2026-06-23 11:23:04.593321	Explain the key scientific concepts of Types of Reactions.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Types of Reactions to real-world applications.	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	[{"title": "Balancing an Equation", "content": "Unbalanced: H₂ + O₂ → H₂O. Count atoms: 2H and 2O on left, 2H and 1O on right. Balanced: 2H₂ + O₂ → 2H₂O.", "solution": "2H₂ + O₂ → 2H₂O (4H and 2O on each side)"}]	[{"hint": "Think about how many types of atoms are involved.", "answer": "An element is one type of atom; a compound is two or more elements bonded together.", "question": "What is the difference between an element and a compound?"}, {"hint": "Na is a metal, Cl is a nonmetal.", "answer": "Ionic — metals and nonmetals form ionic bonds by transferring electrons.", "question": "Is NaCl (table salt) an ionic or covalent compound?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Types of Reactions	All matter is made of atoms (protons, neutrons, electrons). Elements are pure substances of one atom type. The periodic table organizes elements by atomic number. Compounds form when elements bond: ionic (transfer electrons) or covalent (share electrons). Chemical equations must be balanced.	\N	\N	\N	["baking soda", "vinegar", "balloon", "empty bottle", "safety goggles"]	Wear safety goggles. Do not taste chemicals. Work in a ventilated area.	[{"step": "Put 2 tablespoons of baking soda into a balloon. Pour vinegar into a bottle. Stretch the balloon over the bottle opening and lift to drop the baking soda in.", "detail": "Observe the balloon inflating. The reaction: NaHCO₃ + CH₃COOH → CO₂ + H₂O + NaCH₃COO."}]	["What gas inflated the balloon?", "Was this a chemical or physical change? How do you know?", "What evidence of a chemical reaction did you observe?"]	Explain what happened using the law of conservation of mass. Were atoms created or destroyed?	\N	\N	\N	\N	\N	\N	Chemical reactions power everything from baking bread to rocket engines to batteries.	t
417	139	Stoichiometry	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.59422	Explain the key scientific concepts of Stoichiometry.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Stoichiometry to real-world applications.	This lesson explores scientific concepts related to Stoichiometry. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Stoichiometry. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Stoichiometry	This lesson explores scientific concepts related to Stoichiometry. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Stoichiometry connects to real-world applications in technology, health, and environmental stewardship.	f
418	140	Solutions and Solubility	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.595379	Explain the key scientific concepts of Solutions and Solubility.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Solutions and Solubility to real-world applications.	This lesson explores scientific concepts related to Solutions and Solubility. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Solutions and Solubility. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Solutions and Solubility	This lesson explores scientific concepts related to Solutions and Solubility. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Solutions and Solubility connects to real-world applications in technology, health, and environmental stewardship.	f
421	141	Colonial Society	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.598739	Explain key concepts related to Colonial Society.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Colonial Society."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Colonial Society	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
422	141	American Revolution	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.600155	Explain key concepts related to American Revolution.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to American Revolution."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	American Revolution	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
426	142	Manifest Destiny	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.604237	Explain key concepts related to Manifest Destiny.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Manifest Destiny. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Manifest Destiny, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Manifest Destiny and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Manifest Destiny connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Manifest Destiny	This lesson examines important social studies concepts related to Manifest Destiny. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Manifest Destiny. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Manifest Destiny develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
428	143	Civil War	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.606475	Explain key concepts related to Civil War.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to Civil War."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Civil War	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
430	144	World Wars	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.608712	Explain key concepts related to World Wars.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	[{"title": "Cause and Effect", "content": "Cause: British Parliament imposed the Stamp Act (1765), taxing printed materials in the colonies. Effect: Colonists protested (\\"No taxation without representation\\"), eventually leading to the American Revolution.", "solution": "Historical events have interconnected causes and effects."}]	[{"hint": "Think about what led to the event and what changed because of it.", "answer": null, "question": "Identify two causes and two effects of a major conflict related to World Wars."}, {"hint": "Different groups may have experienced events differently.", "answer": "Different groups had different motivations, experiences, and outcomes. Understanding multiple perspectives gives a more complete picture.", "question": "Why is it important to examine multiple perspectives when studying historical conflicts?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	World Wars	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Major conflicts have shaped American history. The American Revolution (1775-1783) established independence from Britain. The Civil War (1861-1865) ended slavery and preserved the Union. World Wars I and II reshaped global politics. Each conflict had complex causes, key turning points, and lasting consequences.	\N	\N	Studying conflicts helps us understand how nations form, how rights are won, and how to work toward peace.	t
432	144	Contemporary Issues	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.610666	Explain key concepts related to Contemporary Issues.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Contemporary Issues. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Contemporary Issues, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Contemporary Issues and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Contemporary Issues connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 10	High School	\N	\N	f	Contemporary Issues	This lesson examines important social studies concepts related to Contemporary Issues. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Contemporary Issues. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Contemporary Issues develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
449	150	Modernism	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.628588	Read and comprehend a grade-level speech.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Modernism, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 11	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
451	151	College Application Essays	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.630642	Read and comprehend a grade-level literature excerpt.\nApply the skill of understanding essay structure and argument to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in understanding essay structure and argument through close reading of a literature excerpt. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	The Promise and Price of Progress	literature_excerpt	Every generation believes it stands at the pinnacle of progress, and every generation is both right and wrong. We are right because we have indeed advanced beyond what came before—our medicine is more effective, our communication faster, our access to knowledge more democratic than at any point in human history. We are wrong because we tend to confuse advancement with arrival, as if progress were a destination rather than a direction.\n\nConsider the automobile. When Henry Ford's assembly line made cars affordable in the early twentieth century, it was celebrated as a triumph of innovation. Families could travel freely. Rural communities gained access to cities. Commerce accelerated. And yet, within decades, the same invention contributed to urban sprawl, air pollution, traffic fatalities, and a dependence on fossil fuels that now threatens the global climate. The car did not stop being an achievement. But it became clear that achievement is never cost-free.\n\nThis pattern repeats throughout history. The printing press democratized knowledge and also enabled propaganda. Antibiotics saved millions of lives and also created resistant bacteria. The internet connected the world and also fractured our attention.\n\nNone of this means we should reject progress. It means we should pursue it with open eyes. The measure of a society is not how quickly it innovates, but how honestly it reckons with the consequences of its innovations.\n\nThe philosopher Hans Jonas wrote that modern technology has introduced "a new dimension of responsibility." Previous generations could act locally and trust that the effects would remain local. We no longer have that luxury. A decision made in one boardroom can alter the atmosphere. A piece of software released in one country can reshape elections in another.\n\nProgress, then, is not a force to be celebrated or feared. It is a force to be governed—carefully, collectively, and with a willingness to ask the hardest question of all: Just because we can, should we?	Original essay for JNM Home Education Program	Grade 11	High School	\N	\N	f	Understanding essay structure and argument	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
454	152	Reading Comprehension Strategies	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.633786	Read and comprehend a grade-level primary source.\nApply the skill of developing reading comprehension strategies to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing reading comprehension strategies through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Finding the Main Idea", "content": "Read this passage: \\"Bees are essential pollinators. They carry pollen from flower to flower, helping plants reproduce. Without bees, many fruits and vegetables would not grow.\\" The main idea is that bees play a vital role in plant reproduction.", "solution": "Main idea: Bees are essential pollinators that help plants reproduce."}, {"title": "Making an Inference", "content": "The passage says: \\"Maria checked her watch again and tapped her foot.\\" What can you infer? Maria is probably waiting for someone or something and feels impatient.", "solution": "Inference: Maria is impatient about waiting."}]	[{"hint": "Ask yourself: What is this paragraph mostly about? What facts support that?", "answer": null, "question": "Read a paragraph from your current text. Identify the main idea in one sentence and list two supporting details."}, {"hint": "Look at the sentences around the unknown word for hints.", "answer": null, "question": "Find a word you do not know in your reading. Use context clues to determine its meaning, then check a dictionary."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 11	High School	\N	\N	f	Developing reading comprehension strategies	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
433	145	Polynomial Operations	\N	1	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.612303	Understand the concepts and methods of Polynomial Operations.\nSolve problems involving Polynomial Operations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Polynomial Operations to real-world situations.	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Simplifying a Ratio", "content": "Simplify 12:8. The GCF of 12 and 8 is 4. Divide both by 4: 12:8 = 3:2.", "solution": "12:8 = 3:2"}, {"title": "Solving a Proportion", "content": "Solve: x/5 = 12/20. Cross multiply: 20x = 60. Divide: x = 3.", "solution": "x = 3"}]	[{"hint": "Find the GCF and divide both by it.", "answer": "3:2", "question": "Simplify the ratio 18:12."}, {"hint": "Set up a proportion: 4/6 = 10/x, then cross-multiply.", "answer": "$15", "question": "If 4 notebooks cost $6, how much do 10 notebooks cost?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Polynomial Operations	A quadratic equation has the form ax²+bx+c=0. Solve by factoring, completing the square, or the quadratic formula. The discriminant b²-4ac tells how many real solutions exist.	Quadratic formula: x = (-b ± √(b²-4ac)) / 2a	[{"step": "Solve x²-5x+6=0", "work": "Factor: (x-2)(x-3)=0. Set each factor=0.", "answer": "x=2 or x=3"}]	[{"mistake": "Forgetting to set the equation equal to zero before factoring", "correction": "Always rearrange to standard form ax²+bx+c=0 first."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Polynomial Operations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
435	145	Polynomial Division	\N	3	https://www.khanacademy.org/math/algebra2	Khan Academy: Algebra 2	10-15 min	\N	\N	t	2026-06-23 11:23:04.614105	Understand the concepts and methods of Polynomial Division.\nSolve problems involving Polynomial Division accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Polynomial Division to real-world situations.	Division splits a total into equal groups. Division is the inverse of multiplication. Check: quotient × divisor + remainder = dividend.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Division", "content": "Divide 12 ÷ 2. Ask: how many times does 2 go into 12?", "solution": "12 ÷ 2 = 6"}, {"title": "Division with Remainder", "content": "Divide 13 ÷ 2. 2 goes into the dividend 6 times with a remainder.", "solution": "Quotient: 6, Remainder: check your calculation"}]	[{"hint": "Use long division or think about multiplication facts.", "answer": null, "question": "Calculate: 30 ÷ 9"}, {"hint": "Divide and look at the whole number quotient.", "answer": null, "question": "39 students need to form equal teams of 5. How many full teams can be made?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Polynomial Division	Division splits a total into equal groups. Division is the inverse of multiplication. Check: quotient × divisor + remainder = dividend.	\N	[{"step": "Divide 54 ÷ 3", "work": "How many times does 3 go into 54? 3×18=54", "answer": "18"}]	[{"mistake": "Forgetting to include the remainder", "correction": "If division is not exact, record the remainder: quotient R remainder."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Polynomial Division helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
437	146	Radical Equations	\N	2	https://www.khanacademy.org/math/algebra	Khan Academy: Algebra	10-15 min	\N	\N	t	2026-06-23 11:23:04.6161	Understand the concepts and methods of Radical Equations.\nSolve problems involving Radical Equations accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Radical Equations to real-world situations.	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "One-Step Equation", "content": "Solve: 8x = 24. Divide both sides by 8.", "solution": "x = 3"}, {"title": "Two-Step Equation", "content": "Solve: 8x + 1 = 25. Step 1: Subtract 1 from both sides → 8x = 24. Step 2: Divide by 8.", "solution": "x = 3"}]	[{"hint": "Subtract 7 from both sides, then divide by 3.", "answer": "x = 5", "question": "Solve: 3x + 7 = 22"}, {"hint": "Combine like terms (the x terms).", "answer": "6x − 3", "question": "Simplify: 4x + 2x − 3"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Radical Equations	An equation states two expressions are equal. To solve, isolate the variable using inverse operations. Whatever you do to one side, do to the other.	To solve ax + b = c: subtract b, then divide by a	[{"step": "Solve: 8x + 5 = 53", "work": "Step 1: Subtract 5: 8x = 48. Step 2: Divide by 8: x = 6. Check: 8(6)+5=53 ✓", "answer": "x = 6"}]	[{"mistake": "Performing an operation on only one side of the equation", "correction": "Always apply the same operation to BOTH sides to maintain balance."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Radical Equations helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
439	147	Exponential Functions	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.618115	Understand the concepts and methods of Exponential Functions.\nSolve problems involving Exponential Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Exponential Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Exponential Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Exponential Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
441	147	Exponential Growth and Decay	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.619863	Understand the concepts and methods of Exponential Growth and Decay.\nSolve problems involving Exponential Growth and Decay accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Exponential Growth and Decay to real-world situations.	This lesson covers important mathematical concepts related to Exponential Growth and Decay. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Exponential Growth and Decay. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Exponential Growth and Decay using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Exponential Growth and Decay	This lesson covers important mathematical concepts related to Exponential Growth and Decay. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Exponential Growth and Decay", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Exponential Growth and Decay helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
444	148	Series and Summation	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.623143	Understand the concepts and methods of Series and Summation.\nSolve problems involving Series and Summation accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Series and Summation to real-world situations.	This lesson covers important mathematical concepts related to Series and Summation. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Basic Addition", "content": "Add 69 + 72. Start in the ones place: 9 + 2 = 11. Since the sum is 10 or more, write 1 and carry 1. Continue to the tens place.", "solution": "69 + 72 = 141"}, {"title": "Word Problem", "content": "A library has 678 fiction books and 520 nonfiction books. How many books does the library have in total? Identify the operation: we are combining two quantities, so we add.", "solution": "678 + 520 = 1198 books"}]	[{"hint": "Start with the ones place. Regroup if the sum exceeds 9.", "answer": "171", "question": "Calculate: 86 + 85"}, {"hint": "Identify the two quantities and add them.", "answer": "822 items", "question": "A store sold 383 items on Monday and 439 items on Tuesday. How many items were sold in total?"}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Series and Summation	This lesson covers important mathematical concepts related to Series and Summation. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Series and Summation", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Series and Summation helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
457	153	Kinematics	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.637313	Explain the key scientific concepts of Kinematics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Kinematics to real-world applications.	This lesson explores scientific concepts related to Kinematics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "Scientific Method in Action", "content": "Observation: Plants near the window grow taller. Question: Does more sunlight help plants grow? Hypothesis: Plants exposed to more sunlight will grow taller. Experiment: Grow identical plants with different amounts of light. Measure height after 2 weeks.", "solution": "The scientific method turns observations into testable experiments."}]	[{"hint": "What would you change? What would you measure?", "answer": null, "question": "Design a simple experiment related to Kinematics. Identify the independent and dependent variables."}]	\N	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Kinematics	This lesson explores scientific concepts related to Kinematics. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Kinematics connects to real-world applications in technology, health, and environmental stewardship.	f
459	153	Work Energy and Power	\N	3	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.639246	Explain the key scientific concepts of Work Energy and Power.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Work Energy and Power to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Work Energy and Power	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
461	154	Sound Waves	\N	2	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.64132	Explain the key scientific concepts of Sound Waves.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Sound Waves to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Sound Waves	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
465	155	Magnetism	\N	3	https://www.khanacademy.org/science/physics	Khan Academy: Physics	10-15 min	\N	\N	t	2026-06-23 11:23:04.645087	Explain the key scientific concepts of Magnetism.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Magnetism to real-world applications.	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	[{"title": "Energy Transformation", "content": "A flashlight: Chemical energy (battery) → Electrical energy (circuit) → Light energy (bulb) + Thermal energy (heat).", "solution": "Energy transforms between forms but the total amount stays the same."}]	[{"hint": "Chemical energy in your body starts the chain.", "answer": "Chemical → kinetic (pedaling) → mechanical (wheels turning) → some thermal (friction/heat).", "question": "List three energy transformations that happen when you ride a bicycle."}, {"hint": "Think about the path electricity follows.", "answer": "Series has one path (if one component fails, all fail). Parallel has multiple paths (components work independently).", "question": "What is the difference between a series circuit and a parallel circuit?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Magnetism	Energy is the ability to do work. Forms: kinetic, potential, thermal, electrical, chemical, light, sound. Conservation of energy: energy transforms but total amount stays constant. Circuits need a source, conductor, and load. Waves transfer energy; mechanical waves need a medium, electromagnetic waves do not.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Energy science underpins electricity, renewable power, communication technology, and medical imaging.	t
469	157	Constitution and Federalism	\N	1	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.649576	Explain key concepts related to Constitution and Federalism.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Constitution and Federalism	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
470	157	Congress	\N	2	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.650432	Explain key concepts related to Congress.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Congress. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Congress, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Congress and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Congress connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Congress	This lesson examines important social studies concepts related to Congress. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Congress. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Congress develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
472	158	Bill of Rights	\N	1	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.652615	Explain key concepts related to Bill of Rights.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Bill of Rights	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
474	158	Equal Protection	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.654572	Explain key concepts related to Equal Protection.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Equal Protection. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Equal Protection, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Equal Protection and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Equal Protection connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Equal Protection	This lesson examines important social studies concepts related to Equal Protection. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Equal Protection. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Equal Protection develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
476	159	Market Structures	\N	2	https://www.khanacademy.org/economics-finance-domain	Khan Academy: Economics & Finance	10-15 min	\N	\N	t	2026-06-23 11:23:04.656768	Explain key concepts related to Market Structures.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	[{"title": "Supply and Demand", "content": "A popular toy at holiday time: demand is high but supply is limited → price increases. After the holidays: demand drops → price decreases or stores offer sales.", "solution": "Prices rise when demand exceeds supply and fall when supply exceeds demand."}]	[{"hint": "Opportunity cost is what you give up.", "answer": "The concert experience is the opportunity cost.", "question": "You have $50. You can buy a video game or go to a concert. If you choose the game, what is the opportunity cost?"}, {"hint": "How does rain affect demand for umbrellas?", "answer": "Demand increases while supply stays the same, so the price tends to rise.", "question": "Explain what happens to the price of umbrellas when it starts raining heavily."}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Market Structures	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Economics studies how people use limited resources. Supply and demand determine prices. Scarcity forces choices. Opportunity cost is what you give up when choosing. GDP measures national economic output. Inflation reduces purchasing power over time.	\N	\N	Economic literacy helps with personal budgeting, career decisions, understanding policy, and financial planning.	t
478	160	Budgeting	\N	1	https://www.khanacademy.org/economics-finance-domain	Khan Academy: Economics & Finance	10-15 min	\N	\N	t	2026-06-23 11:23:04.658913	Explain key concepts related to Budgeting.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Budgeting. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Supply and Demand", "content": "A popular toy at holiday time: demand is high but supply is limited → price increases. After the holidays: demand drops → price decreases or stores offer sales.", "solution": "Prices rise when demand exceeds supply and fall when supply exceeds demand."}]	[{"hint": "Opportunity cost is what you give up.", "answer": "The concert experience is the opportunity cost.", "question": "You have $50. You can buy a video game or go to a concert. If you choose the game, what is the opportunity cost?"}, {"hint": "How does rain affect demand for umbrellas?", "answer": "Demand increases while supply stays the same, so the price tends to rise.", "question": "Explain what happens to the price of umbrellas when it starts raining heavily."}]	Khan Academy	\N	\N	\N	\N	Grade 11	High School	\N	\N	f	Budgeting	This lesson examines important social studies concepts related to Budgeting. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Budgeting. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Budgeting develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
495	165	Romantic and Victorian Era	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.676764	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Romantic and Victorian Era, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
496	166	Modernist Writers	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.678207	Read and comprehend a grade-level primary source.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Textual Evidence", "content": "When making a claim about a text, support it with a specific reference: \\"The author suggests that persistence matters, as shown when the character states, 'I won't give up no matter what.'\\"", "solution": "Always connect your evidence back to your main point."}]	[{"hint": "Claim → Evidence → Explanation. This is the C-E-E structure.", "answer": null, "question": "Based on your study of Modernist Writers, write a response that includes a claim, evidence from the text, and an explanation."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
497	166	Post-Colonial Literature	\N	2	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.679112	Read and comprehend a grade-level poem.\nApply the skill of reading comprehension to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in reading comprehension through close reading of a poem. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Identifying Theme", "content": "In a story where a shy student finds courage to speak up against bullying, the theme might be: \\"Standing up for what is right requires courage, but it inspires others to do the same.\\"", "solution": "Theme = a message about life, not just a topic word."}, {"title": "Analyzing Characterization", "content": "The author writes: \\"Jake straightened his shoulders, took a deep breath, and walked into the room full of strangers.\\" This shows Jake is nervous but determined — revealed through his actions.", "solution": "Indirect characterization through actions."}]	[{"hint": "Consider: what do they say? What do they do? What do others say about them?", "answer": null, "question": "Choose a character from your current reading. Describe how the author reveals their personality using at least two methods of characterization."}, {"hint": "Look for comparisons or objects that seem to represent something larger.", "answer": null, "question": "Identify one example of figurative language (simile, metaphor, or symbolism) in your reading and explain what it means."}]	Khan Academy	November Light	poem	November Light\n\nThe trees have shed their arguments,\nstanding bare against the gray,\neach branch a question mark\npointed at the sky.\n\nThe pond holds still—\na mirror for the geese\nwho cross it twice,\nonce in flight, once in reflection,\nneither version quite the truth.\n\nThe wind has changed its mind again,\npushing leaves across the road\nlike scattered pages\nfrom a book nobody finished.\n\nAnd the light—\nthat low, amber light of November—\nslants through everything\nas if the sun is trying\nto read the world\none last time before it sets.\n\nI stand at the edge of the field\nwhere the grass has gone to gold,\nand I think about the things\nthat only silence teaches:\n\nhow a season ends\nnot with a sound\nbut with a softening,\n\nhow the earth lets go\nwithout being asked,\n\nhow even the shortest days\ncarry more light\nthan we remember.	Original poem for JNM Home Education Program	Grade 12	High School	\N	\N	f	Reading comprehension	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
499	167	Advanced Composition	\N	1	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.681111	Read and comprehend a grade-level speech.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a speech. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	On the Duty of Citizens in a Democracy	speech	Fellow citizens, I stand before you not as someone who has all the answers, but as someone who believes profoundly in your capacity to seek them.\n\nWe are told that democracy is a gift. I respectfully disagree. Democracy is not a gift—it is a responsibility. A gift sits on a shelf. A responsibility demands that you rise from your chair and act. The ballot box does not fill itself. The town meeting does not convene without voices willing to speak. The free press does not survive without readers willing to think.\n\nConsider for a moment the generations who came before us. They did not merely inherit this system of self-governance. They built it, brick by brick, through sacrifice, argument, and compromise. They debated in crowded halls. They marched on dusty roads. They wrote letters by candlelight. They did not always agree, but they understood a truth that we sometimes forget: disagreement, handled with respect, is not a threat to democracy. It is the engine of democracy.\n\nToday, we face a different challenge. It is not the absence of information—it is the flood of it. We carry more knowledge in our pockets than previous generations could access in a lifetime. And yet, knowledge alone does not make a citizen. What makes a citizen is the willingness to engage—to listen to those who see the world differently, to weigh evidence carefully, and to place the common good alongside personal interest.\n\nI am not asking you to agree with me. I am asking you to participate. Read beyond the headline. Attend a local meeting. Talk to your neighbor—not to persuade, but to understand. Cast your vote not as an expression of anger, but as an act of hope.\n\nThe strength of this republic has never rested in its leaders. It rests, as it always has, in its people. In you.\n\nSo I ask: What kind of citizen will you be? Not tomorrow. Not someday. Today.	Original passage for JNM Home Education Program	Grade 12	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
501	167	Professional Writing	\N	3	https://www.khanacademy.org/ela	Khan Academy: Reading & Language Arts	10-15 min	\N	\N	t	2026-06-23 11:23:04.68285	Read and comprehend a grade-level primary source.\nApply the skill of developing writing skills to the reading.\nIdentify and define key vocabulary from the passage.\nSupport answers with evidence from the text.\nWrite an analytical response using textual evidence.	This lesson develops your ability in developing writing skills through close reading of a primary source. At this level, reading is an active, analytical process. You should consider not only what the text says, but how the author constructs meaning through language, structure, and rhetorical choices.\n\nAs you read, consider the author's purpose, audience, tone, and the techniques used to convey the central message. Your responses should demonstrate critical thinking and include direct references to the text.	[{"term": "pinnacle", "definition": "The highest point of development or achievement."}, {"term": "rhetoric", "definition": "The art of effective or persuasive speaking or writing."}, {"term": "paradox", "definition": "A statement that seems contradictory but may reveal a deeper truth."}, {"term": "critique", "definition": "A detailed analysis and assessment of something."}, {"term": "juxtaposition", "definition": "Placing two things close together for comparison or contrast."}, {"term": "implicit", "definition": "Suggested but not directly expressed; implied."}]	[{"title": "Writing a Thesis Statement", "content": "Topic: school uniforms. Weak thesis: \\"School uniforms are good.\\" Strong thesis: \\"School uniforms reduce peer pressure, decrease morning decision fatigue, and promote a sense of community among students.\\"", "solution": "A strong thesis is specific and lists the main points you will discuss."}, {"title": "Using Transitions", "content": "Without transition: \\"Exercise improves mood. It strengthens muscles.\\" With transition: \\"Exercise improves mood. Additionally, it strengthens muscles.\\"", "solution": "Transitions create smooth connections between ideas."}]	[{"hint": "State your position and include 2-3 reasons you will discuss.", "answer": null, "question": "Write a thesis statement for an essay about the importance of reading."}, {"hint": "Start with your point, support it with facts or examples, then wrap up.", "answer": null, "question": "Write a body paragraph with a topic sentence, two pieces of evidence, and a concluding sentence."}]	Khan Academy	Letter from the Western Frontier, 1849	primary_source	April 14, 1849\n\nDear Mother,\n\nI write to you from a place that has no name on any map I have seen. We have been traveling for thirty-seven days since leaving Independence, Missouri, and the country has changed in ways I cannot easily describe. The trees thinned and then disappeared entirely. The grass stretches to the horizon in every direction, rippling in the wind like a green ocean. At night, the sky holds more stars than I believed existed.\n\nOur company consists of twelve wagons and forty-one souls, including seven children. We travel fifteen miles on a good day, fewer when the rains turn the ground to mud. The oxen are patient but slow. I walk beside them most of the day, as the wagon is too crowded and too rough for sitting.\n\nI will not pretend the journey is pleasant. The dust is relentless. Water must be rationed. Mrs. Harlan lost her youngest to fever last week, and the company stopped for half a day while we buried the child on a hillside with no marker but a ring of stones.\n\nAnd yet, there is something in this landscape that I did not expect. A kind of openness that changes the way you think. In St. Louis, I worried about small things—the price of flour, the condition of the roads, whether the neighbors approved of our fence. Out here, those worries seem to belong to someone else. The land asks different questions. Can you build a fire in the wind? Can you find water before dark? Can you keep walking when your legs want to stop?\n\nI do not know what waits for us in California. The stories we hear are wild and contradictory—fortunes made overnight, cities of tents, lawlessness, and opportunity in equal measure. I choose to believe the version that makes the sacrifice worthwhile.\n\nGive my love to Father and the children. I carry your letters in my coat pocket, close to my chest.\n\nYour devoted son,\nWilliam	Original historical fiction letter for JNM Home Education Program	Grade 12	High School	\N	\N	f	Developing writing skills	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t
482	161	Transformations of Functions	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.66342	Understand the concepts and methods of Transformations of Functions.\nSolve problems involving Transformations of Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Transformations of Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Transformations of Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Transformations of Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
484	162	Trigonometric Functions	\N	1	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.665383	Understand the concepts and methods of Trigonometric Functions.\nSolve problems involving Trigonometric Functions accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Trigonometric Functions to real-world situations.	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding Slope", "content": "Find the slope between (1, 3) and (4, 9). m = (9 − 3)/(4 − 1) = 6/3.", "solution": "m = 2"}, {"title": "Evaluating a Function", "content": "If f(x) = 3x − 5, find f(4). Substitute: f(4) = 3(4) − 5 = 12 − 5.", "solution": "f(4) = 7"}]	[{"hint": "Use m = (y₂ − y₁)/(x₂ − x₁).", "answer": "m = 2", "question": "Find the slope of the line passing through (2, 5) and (6, 13)."}, {"hint": "Use slope-intercept form: y = mx + b.", "answer": "y = 3x − 2", "question": "Write the equation of a line with slope 3 and y-intercept −2."}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Trigonometric Functions	A linear function produces a straight line. The slope (m) measures steepness. The y-intercept (b) is where the line crosses the y-axis.	Slope-intercept form: y = mx + b | Slope: m = (y₂-y₁)/(x₂-x₁)	[{"step": "Find slope between (1,3) and (4,9)", "work": "m=(9-3)/(4-1)=6/3=2", "answer": "m=2"}]	[{"mistake": "Swapping x and y values in the slope formula", "correction": "Slope = rise/run = (y₂-y₁)/(x₂-x₁). Keep the order consistent."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Trigonometric Functions helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
485	162	Trigonometric Identities	\N	2	https://www.khanacademy.org/math/trigonometry	Khan Academy: Trigonometry	10-15 min	\N	\N	t	2026-06-23 11:23:04.666388	Understand the concepts and methods of Trigonometric Identities.\nSolve problems involving Trigonometric Identities accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Trigonometric Identities to real-world situations.	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Finding a Side", "content": "In a right triangle with angle 30° and hypotenuse 10, find the opposite side. sin(30°) = opposite/10, so opposite = 10 × sin(30°) = 10 × 0.5.", "solution": "opposite = 5"}, {"title": "Finding an Angle", "content": "A right triangle has opposite side 4 and adjacent side 3. Find angle θ. tan(θ) = 4/3 ≈ 1.333. θ = arctan(1.333).", "solution": "θ ≈ 53.1°"}]	[{"hint": "sin(45°) = opposite/8. sin(45°) ≈ 0.707.", "answer": "≈ 5.66", "question": "Find the missing side: right triangle, angle 45°, hypotenuse 8. Find opposite."}, {"hint": "Recall the common angle values or use the unit circle.", "answer": "0.5", "question": "What is cos(60°)?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Trigonometric Identities	Trigonometry relates angles to side lengths in right triangles. The three main ratios are sine, cosine, and tangent. The unit circle extends these to all angles.	SOH CAH TOA: sin=opp/hyp, cos=adj/hyp, tan=opp/adj	[{"step": "Find opposite side: angle 30°, hyp=10", "work": "sin(30°)=opp/10, opp=10×0.5=5", "answer": "5"}]	[{"mistake": "Using the wrong trig ratio for the given sides", "correction": "SOH CAH TOA: identify which sides you have relative to the angle."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Trigonometric Identities helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	t
487	163	Introduction to Limits	\N	1	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.668341	Understand the concepts and methods of Introduction to Limits.\nSolve problems involving Introduction to Limits accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Introduction to Limits to real-world situations.	This lesson covers important mathematical concepts related to Introduction to Limits. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Introduction to Limits. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Introduction to Limits using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Introduction to Limits	This lesson covers important mathematical concepts related to Introduction to Limits. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Introduction to Limits", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Introduction to Limits helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
488	163	Evaluating Limits	\N	2	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.669164	Understand the concepts and methods of Evaluating Limits.\nSolve problems involving Evaluating Limits accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Evaluating Limits to real-world situations.	This lesson covers important mathematical concepts related to Evaluating Limits. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Evaluating Limits. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Evaluating Limits using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Evaluating Limits	This lesson covers important mathematical concepts related to Evaluating Limits. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Evaluating Limits", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Evaluating Limits helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
492	164	Applications of Derivatives	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.673071	Understand the concepts and methods of Applications of Derivatives.\nSolve problems involving Applications of Derivatives accurately.\nShow work and explain reasoning step by step.\nIdentify and avoid common mistakes.\nApply Applications of Derivatives to real-world situations.	This lesson covers important mathematical concepts related to Applications of Derivatives. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	[{"term": "Expression", "definition": "A combination of numbers, variables, and operations."}, {"term": "Equation", "definition": "A statement that two expressions are equal."}, {"term": "Solution", "definition": "A value that makes an equation true."}, {"term": "Variable", "definition": "A letter representing an unknown value."}]	[{"title": "Applying Concepts", "content": "Apply the methods from this lesson to solve a problem involving Applications of Derivatives. Identify the key information, set up your work, and solve step by step.", "solution": "Verify your answer by substituting back or using a different method."}]	[{"hint": "Review the examples above and follow the same process.", "answer": null, "question": "Solve a problem related to Applications of Derivatives using the methods from this lesson."}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Applications of Derivatives	This lesson covers important mathematical concepts related to Applications of Derivatives. Mathematics builds cumulatively—each new concept relies on understanding previous ones. Approach each problem methodically: identify what is given, determine what to find, choose a strategy, solve step by step, and verify your answer.	\N	[{"step": "Apply the concepts from Applications of Derivatives", "work": "Identify given information, set up the problem, solve systematically, check your work.", "answer": "Verify by substituting back into the original problem."}]	[{"mistake": "Skipping steps and trying to solve in your head", "correction": "Show every step. This helps you catch errors and earn partial credit."}]	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Applications of Derivatives helps you solve real problems — from budgeting money and measuring ingredients to analyzing data and designing structures.	f
506	169	Plate Tectonics	\N	2	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.688304	Explain the key scientific concepts of Plate Tectonics.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Plate Tectonics to real-world applications.	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Plate Tectonics	Earth has layers: crust, mantle, outer core, inner core. Plate tectonics: Earth's crust is divided into moving plates. Convergent boundaries create mountains. Divergent boundaries create rifts. Transform boundaries cause earthquakes. The rock cycle: igneous → sedimentary → metamorphic (and back).	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Geologists study Earth's structure to predict earthquakes, find resources, and understand natural hazards.	t
507	169	Geologic Time	\N	3	\N	\N	10-15 min	\N	\N	t	2026-06-23 11:23:04.689228	Explain the key scientific concepts of Geologic Time.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Geologic Time to real-world applications.	This lesson explores scientific concepts related to Geologic Time. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	[{"title": "The Rock Cycle", "content": "Granite (igneous) → weathering breaks it into sediment → sediment compresses into sandstone (sedimentary) → heat and pressure transform it into quartzite (metamorphic) → melting creates magma → cooling forms new igneous rock.", "solution": "Rocks cycle between igneous, sedimentary, and metamorphic forms."}]	[{"hint": "Think about cooling, compression, and transformation.", "answer": "Igneous (cooled magma), Sedimentary (compressed sediment), Metamorphic (changed by heat/pressure).", "question": "Name the three types of rocks and how each is formed."}, {"hint": "What occurs when two plates push together?", "answer": "Plates collide, forming mountains or subduction zones (one plate slides under another).", "question": "What happens at a convergent plate boundary?"}]	\N	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Geologic Time	This lesson explores scientific concepts related to Geologic Time. Science uses the scientific method: observe → question → hypothesize → experiment → analyze → conclude. Always record observations carefully, control variables, and base conclusions on evidence.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Understanding Geologic Time connects to real-world applications in technology, health, and environmental stewardship.	f
510	170	Marine Ecosystems	\N	3	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.692391	Explain the key scientific concepts of Marine Ecosystems.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Marine Ecosystems to real-world applications.	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	[{"title": "Food Chain Example", "content": "Grass (producer) → Grasshopper (primary consumer) → Frog (secondary consumer) → Snake (tertiary consumer) → Hawk (top predator). Decomposers recycle nutrients from dead organisms at every level.", "solution": "Energy flows from producers to consumers, with only ~10% transferred at each step."}]	[{"hint": "Start with a plant (producer) and build up.", "answer": null, "question": "Create a food chain with at least four organisms. Label each as producer, primary consumer, secondary consumer, or top predator."}, {"hint": "Think about what decomposers do with dead material and nutrients.", "answer": "Dead material would pile up and nutrients would not be recycled back into the soil, eventually starving producers.", "question": "What would happen to an ecosystem if all decomposers disappeared?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Marine Ecosystems	An ecosystem includes all living (biotic) and nonliving (abiotic) factors in an area. Energy flows: producers → primary consumers → secondary consumers → decomposers. Only ~10% of energy transfers between trophic levels. Biomes are large ecosystems defined by climate.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Ecologists study ecosystems to protect biodiversity, manage resources, and address environmental challenges.	t
512	171	Weather Systems	\N	2	https://www.khanacademy.org/science/earth-science	Khan Academy: Earth Science	10-15 min	\N	\N	t	2026-06-23 11:23:04.694527	Explain the key scientific concepts of Weather Systems.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Weather Systems to real-world applications.	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	[{"title": "The Water Cycle", "content": "Sun heats a lake → water evaporates into vapor → vapor rises and cools → condensation forms clouds → clouds produce precipitation (rain) → rain flows back into the lake.", "solution": "Evaporation → Condensation → Precipitation → Collection"}]	[{"hint": "One is short-term, the other is long-term.", "answer": "Weather is daily atmospheric conditions; climate is the average conditions over decades.", "question": "Explain the difference between weather and climate."}, {"hint": "What happens when water vapor cools?", "answer": "Water vapor cools and changes from gas to liquid, forming clouds.", "question": "Describe what happens during condensation in the water cycle."}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Weather Systems	Weather is short-term atmospheric conditions. Climate is long-term averages. The water cycle: evaporation → condensation → precipitation → collection. Cloud types indicate weather: cumulus (fair), stratus (steady rain), cumulonimbus (storms).	\N	\N	\N	["glass jar", "hot water", "ice", "plate", "food coloring (optional)"]	\N	[{"step": "Create a mini water cycle: pour hot water into a jar, place a plate with ice on top.", "detail": "Observe condensation forming on the plate. Watch droplets fall back into the jar."}]	["Where did you see evaporation?", "Where did condensation occur?", "What represented precipitation?"]	Explain how your model demonstrates the water cycle. How does this compare to what happens in nature?	\N	\N	\N	\N	\N	\N	Meteorologists use water cycle knowledge to predict weather. Climate scientists study long-term patterns.	t
514	172	Stars and Stellar Evolution	\N	1	https://www.khanacademy.org/science/biology	Khan Academy: Biology	10-15 min	\N	\N	t	2026-06-23 11:23:04.69658	Explain the key scientific concepts of Stars and Stellar Evolution.\nUse scientific vocabulary accurately.\nApply the scientific method to investigate questions.\nAnalyze data and draw evidence-based conclusions.\nConnect Stars and Stellar Evolution to real-world applications.	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	[{"title": "Why Seasons Occur", "content": "In June, the Northern Hemisphere tilts toward the Sun → longer days, more direct sunlight → summer. In December, it tilts away → shorter days, less direct sunlight → winter. The Southern Hemisphere has opposite seasons.", "solution": "Seasons are caused by Earth's axial tilt, not distance from the Sun."}]	[{"hint": "My Very Educated Mother Just Served Us Nachos.", "answer": "Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune", "question": "List the eight planets in order from the Sun."}, {"hint": "One is spinning, the other is orbiting.", "answer": "Rotation is spinning on an axis (day/night). Revolution is orbiting around another object (year).", "question": "What is the difference between rotation and revolution?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Stars and Stellar Evolution	Our solar system has 8 planets orbiting the Sun. Inner planets (Mercury-Mars) are rocky. Outer planets (Jupiter-Neptune) are gas/ice giants. Earth's rotation causes day/night. Its revolution causes years. The 23.5° axial tilt causes seasons. Stars produce energy through nuclear fusion.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	Space science enables satellite communication, GPS navigation, weather forecasting, and exploration.	t
517	173	Globalization	\N	1	https://www.khanacademy.org/humanities/world-history	Khan Academy: World History	10-15 min	\N	\N	t	2026-06-23 11:23:04.699862	Explain key concepts related to Globalization.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Globalization. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Globalization, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Globalization and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Globalization connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Globalization	This lesson examines important social studies concepts related to Globalization. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Globalization. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Globalization develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
518	173	International Organizations	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.700777	Explain key concepts related to International Organizations.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to International Organizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying International Organizations, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to International Organizations and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does International Organizations connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	International Organizations	This lesson examines important social studies concepts related to International Organizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to International Organizations. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying International Organizations develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
522	174	Diplomacy	\N	3	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.704689	Explain key concepts related to Diplomacy.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Diplomacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Diplomacy, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Diplomacy and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Diplomacy connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Diplomacy	This lesson examines important social studies concepts related to Diplomacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Diplomacy. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Diplomacy develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
524	175	Social Institutions	\N	2	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.706854	Explain key concepts related to Social Institutions.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Social Institutions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Social Institutions, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Social Institutions and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Social Institutions connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Social Institutions	This lesson examines important social studies concepts related to Social Institutions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Social Institutions. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Social Institutions develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
526	176	Analyzing News	\N	1	https://www.khanacademy.org/humanities/us-history	Khan Academy: US History	10-15 min	\N	\N	t	2026-06-23 11:23:04.708981	Explain key concepts related to Analyzing News.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	This lesson examines important social studies concepts related to Analyzing News. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	[{"title": "Analyzing a Source", "content": "When studying Analyzing News, ask: Who created this source? When? Why? What perspective does it represent? What might be missing?", "solution": "Critical analysis reveals more than surface-level reading."}]	[{"hint": "Choose something that had a lasting impact.", "answer": null, "question": "Identify one key event, person, or concept related to Analyzing News and explain its significance."}, {"hint": "Think about lasting impacts on laws, culture, or geography.", "answer": null, "question": "How does Analyzing News connect to or affect the present day?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Analyzing News	This lesson examines important social studies concepts related to Analyzing News. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	This lesson examines important social studies concepts related to Analyzing News. Social studies encompasses history, geography, government, economics, and culture. Understanding the past helps us make informed decisions about the present and future.	\N	\N	Studying Analyzing News develops critical thinking, civic awareness, and understanding of diverse perspectives.	t
528	176	Civic Engagement	\N	3	https://www.khanacademy.org/humanities/us-government-and-civics	Khan Academy: US Government & Civics	10-15 min	\N	\N	t	2026-06-23 11:23:04.710803	Explain key concepts related to Civic Engagement.\nUse historical vocabulary accurately.\nAnalyze causes, effects, and perspectives.\nSupport claims with evidence from sources.\nConnect historical events to the present day.	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	[{"title": "Checks and Balances", "content": "Congress passes a law → President can veto it → Congress can override with 2/3 vote → Supreme Court can declare it unconstitutional. Each branch checks the others.", "solution": "No single branch can act without oversight from the others."}]	[{"hint": "Think: make laws, enforce laws, interpret laws.", "answer": "Legislative (makes laws), Executive (enforces laws), Judicial (interprets laws).", "question": "Name the three branches of government and the main function of each."}, {"hint": "What would happen if one branch had unlimited power?", "answer": "It prevents any one branch from becoming too powerful, protecting citizens' rights.", "question": "Why is the system of checks and balances important?"}]	Khan Academy	\N	\N	\N	\N	Grade 12	High School	\N	\N	f	Civic Engagement	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	\N	\N	\N	\N	\N	\N	Excerpt: The Preamble to the Constitution	primary_source	"We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America."	The United States Constitution, ratified in 1788, established a federal system with three branches: legislative (Congress makes laws), executive (President enforces laws), and judicial (courts interpret laws). The Bill of Rights (first 10 amendments) protects individual freedoms. Checks and balances prevent any branch from becoming too powerful.	\N	\N	Understanding government helps citizens participate in democracy through voting, civic engagement, and understanding their rights.	t
\.


--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notifications (id, user_id, student_id, notification_type, title, message, is_read, is_emailed, priority, link, created_at) FROM stdin;
\.


--
-- Data for Name: period_grades; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.period_grades (id, student_id, course_id, assessment_period_id, homework_avg, quiz_avg, test_avg, weighted_average, letter_grade, teacher_comments, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: retakes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.retakes (id, assignment_id, student_id, original_grade_id, new_grade_id, retake_number, reason, approved_by, submitted_date, status, created_at) FROM stdin;
\.


--
-- Data for Name: students; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.students (id, user_id, school_id, first_name, last_name, email, password_hash, date_of_birth, grade_level, profile_image, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: submissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.submissions (id, assignment_id, student_id, submission_date, submission_text, submission_file_url, submission_file_name, hours_spent, status, is_retake, retake_number, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: units; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.units (id, course_id, title, description, unit_number, is_active, created_at) FROM stdin;
1	1	Counting and Numbers	Unit 1: Counting and Numbers	1	t	2026-06-23 11:23:04.120843
2	1	Addition Basics	Unit 2: Addition Basics	2	t	2026-06-23 11:23:04.133769
3	1	Subtraction Basics	Unit 3: Subtraction Basics	3	t	2026-06-23 11:23:04.137834
4	1	Shapes and Measurement	Unit 4: Shapes and Measurement	4	t	2026-06-23 11:23:04.141682
5	2	Phonics and Letter Sounds	Unit 1: Phonics and Letter Sounds	1	t	2026-06-23 11:23:04.145826
6	2	Sight Words and Reading	Unit 2: Sight Words and Reading	2	t	2026-06-23 11:23:04.149594
7	2	Writing Basics	Unit 3: Writing Basics	3	t	2026-06-23 11:23:04.153295
8	2	Grammar Foundations	Unit 4: Grammar Foundations	4	t	2026-06-23 11:23:04.158467
9	3	Living Things	Unit 1: Living Things	1	t	2026-06-23 11:23:04.16307
10	3	Weather and Seasons	Unit 2: Weather and Seasons	2	t	2026-06-23 11:23:04.16648
11	3	Earth and Space	Unit 3: Earth and Space	3	t	2026-06-23 11:23:04.170091
12	4	My Community	Unit 1: My Community	1	t	2026-06-23 11:23:04.174029
13	4	Maps and Geography	Unit 2: Maps and Geography	2	t	2026-06-23 11:23:04.177323
14	4	American Symbols	Unit 3: American Symbols	3	t	2026-06-23 11:23:04.181199
15	5	Place Value	Unit 1: Place Value	1	t	2026-06-23 11:23:04.18522
16	5	Addition and Subtraction	Unit 2: Addition and Subtraction	2	t	2026-06-23 11:23:04.188842
17	5	Measurement	Unit 3: Measurement	3	t	2026-06-23 11:23:04.192887
18	5	Money and Data	Unit 4: Money and Data	4	t	2026-06-23 11:23:04.197086
19	6	Reading Fluency	Unit 1: Reading Fluency	1	t	2026-06-23 11:23:04.201012
20	6	Writing Paragraphs	Unit 2: Writing Paragraphs	2	t	2026-06-23 11:23:04.204592
21	6	Grammar	Unit 3: Grammar	3	t	2026-06-23 11:23:04.208177
22	6	Spelling and Vocabulary	Unit 4: Spelling and Vocabulary	4	t	2026-06-23 11:23:04.211417
23	7	Matter	Unit 1: Matter	1	t	2026-06-23 11:23:04.215011
24	7	Force and Motion	Unit 2: Force and Motion	2	t	2026-06-23 11:23:04.218256
25	7	Life Cycles	Unit 3: Life Cycles	3	t	2026-06-23 11:23:04.22191
26	8	Geography	Unit 1: Geography	1	t	2026-06-23 11:23:04.225819
27	8	History	Unit 2: History	2	t	2026-06-23 11:23:04.228796
28	8	Economics	Unit 3: Economics	3	t	2026-06-23 11:23:04.231996
29	9	Multiplication	Unit 1: Multiplication	1	t	2026-06-23 11:23:04.235594
30	9	Division	Unit 2: Division	2	t	2026-06-23 11:23:04.23907
31	9	Fractions	Unit 3: Fractions	3	t	2026-06-23 11:23:04.242274
32	9	Geometry	Unit 4: Geometry	4	t	2026-06-23 11:23:04.245365
33	10	Reading Comprehension	Unit 1: Reading Comprehension	1	t	2026-06-23 11:23:04.248845
34	10	Writing	Unit 2: Writing	2	t	2026-06-23 11:23:04.252243
35	10	Grammar	Unit 3: Grammar	3	t	2026-06-23 11:23:04.255598
36	10	Research Skills	Unit 4: Research Skills	4	t	2026-06-23 11:23:04.258856
37	11	Forces and Motion	Unit 1: Forces and Motion	1	t	2026-06-23 11:23:04.262333
38	11	Ecosystems	Unit 2: Ecosystems	2	t	2026-06-23 11:23:04.265594
39	11	Weather	Unit 3: Weather	3	t	2026-06-23 11:23:04.268826
40	12	Communities	Unit 1: Communities	1	t	2026-06-23 11:23:04.272909
41	12	Geography	Unit 2: Geography	2	t	2026-06-23 11:23:04.276118
42	12	Economics	Unit 3: Economics	3	t	2026-06-23 11:23:04.279338
43	13	Multi-Digit Operations	Unit 1: Multi-Digit Operations	1	t	2026-06-23 11:23:04.282855
44	13	Fractions and Decimals	Unit 2: Fractions and Decimals	2	t	2026-06-23 11:23:04.285999
45	13	Measurement	Unit 3: Measurement	3	t	2026-06-23 11:23:04.289694
46	13	Patterns and Algebra	Unit 4: Patterns and Algebra	4	t	2026-06-23 11:23:04.292867
47	14	Literature	Unit 1: Literature	1	t	2026-06-23 11:23:04.296272
48	14	Writing	Unit 2: Writing	2	t	2026-06-23 11:23:04.29945
49	14	Grammar	Unit 3: Grammar	3	t	2026-06-23 11:23:04.302762
50	14	Speaking	Unit 4: Speaking	4	t	2026-06-23 11:23:04.306225
51	15	Energy	Unit 1: Energy	1	t	2026-06-23 11:23:04.312018
52	15	Earth Science	Unit 2: Earth Science	2	t	2026-06-23 11:23:04.315753
53	15	Life Science	Unit 3: Life Science	3	t	2026-06-23 11:23:04.318874
54	16	Nevada History	Unit 1: Nevada History	1	t	2026-06-23 11:23:04.322481
55	16	US Regions	Unit 2: US Regions	2	t	2026-06-23 11:23:04.325454
56	16	Exploration	Unit 3: Exploration	3	t	2026-06-23 11:23:04.328438
57	17	Decimals	Unit 1: Decimals	1	t	2026-06-23 11:23:04.331957
58	17	Fractions	Unit 2: Fractions	2	t	2026-06-23 11:23:04.334952
59	17	Volume and Measurement	Unit 3: Volume and Measurement	3	t	2026-06-23 11:23:04.338323
60	17	Coordinate Planes	Unit 4: Coordinate Planes	4	t	2026-06-23 11:23:04.341481
61	18	Literature Analysis	Unit 1: Literature Analysis	1	t	2026-06-23 11:23:04.344935
62	18	Writing	Unit 2: Writing	2	t	2026-06-23 11:23:04.347768
63	18	Grammar	Unit 3: Grammar	3	t	2026-06-23 11:23:04.350685
64	18	Vocabulary	Unit 4: Vocabulary	4	t	2026-06-23 11:23:04.353588
65	19	Matter	Unit 1: Matter	1	t	2026-06-23 11:23:04.357249
66	19	Earth Systems	Unit 2: Earth Systems	2	t	2026-06-23 11:23:04.360353
67	19	Space Science	Unit 3: Space Science	3	t	2026-06-23 11:23:04.363325
68	20	Colonial America	Unit 1: Colonial America	1	t	2026-06-23 11:23:04.366669
69	20	American Revolution	Unit 2: American Revolution	2	t	2026-06-23 11:23:04.370022
70	20	New Nation	Unit 3: New Nation	3	t	2026-06-23 11:23:04.373271
71	21	Ratios and Proportions	Unit 1: Ratios and Proportions	1	t	2026-06-23 11:23:04.37672
72	21	Integers	Unit 2: Integers	2	t	2026-06-23 11:23:04.379668
73	21	Expressions and Equations	Unit 3: Expressions and Equations	3	t	2026-06-23 11:23:04.38292
74	21	Statistics	Unit 4: Statistics	4	t	2026-06-23 11:23:04.385896
75	22	Literary Analysis	Unit 1: Literary Analysis	1	t	2026-06-23 11:23:04.389635
76	22	Argumentative Writing	Unit 2: Argumentative Writing	2	t	2026-06-23 11:23:04.392524
77	22	Research	Unit 3: Research	3	t	2026-06-23 11:23:04.395977
78	22	Speaking and Listening	Unit 4: Speaking and Listening	4	t	2026-06-23 11:23:04.398961
79	23	Cells	Unit 1: Cells	1	t	2026-06-23 11:23:04.402313
80	23	Body Systems	Unit 2: Body Systems	2	t	2026-06-23 11:23:04.405536
81	23	Ecology	Unit 3: Ecology	3	t	2026-06-23 11:23:04.408664
82	24	Ancient Civilizations	Unit 1: Ancient Civilizations	1	t	2026-06-23 11:23:04.412044
83	24	World Geography	Unit 2: World Geography	2	t	2026-06-23 11:23:04.415007
84	24	Ancient Rome	Unit 3: Ancient Rome	3	t	2026-06-23 11:23:04.417954
85	25	Proportional Relationships	Unit 1: Proportional Relationships	1	t	2026-06-23 11:23:04.421595
86	25	Operations with Rational Numbers	Unit 2: Operations with Rational Numbers	2	t	2026-06-23 11:23:04.4247
87	25	Geometry	Unit 3: Geometry	3	t	2026-06-23 11:23:04.427584
88	25	Probability and Statistics	Unit 4: Probability and Statistics	4	t	2026-06-23 11:23:04.430483
89	26	Literature	Unit 1: Literature	1	t	2026-06-23 11:23:04.43378
90	26	Writing	Unit 2: Writing	2	t	2026-06-23 11:23:04.437583
91	26	Grammar	Unit 3: Grammar	3	t	2026-06-23 11:23:04.440797
92	26	Vocabulary	Unit 4: Vocabulary	4	t	2026-06-23 11:23:04.443932
93	27	Life Science	Unit 1: Life Science	1	t	2026-06-23 11:23:04.447207
94	27	Human Body	Unit 2: Human Body	2	t	2026-06-23 11:23:04.450213
95	27	Ecology	Unit 3: Ecology	3	t	2026-06-23 11:23:04.453145
96	28	Medieval World	Unit 1: Medieval World	1	t	2026-06-23 11:23:04.456761
97	28	Renaissance and Reformation	Unit 2: Renaissance and Reformation	2	t	2026-06-23 11:23:04.459776
98	28	Civics	Unit 3: Civics	3	t	2026-06-23 11:23:04.462655
99	29	Linear Equations	Unit 1: Linear Equations	1	t	2026-06-23 11:23:04.466028
100	29	Systems of Equations	Unit 2: Systems of Equations	2	t	2026-06-23 11:23:04.469047
101	29	Functions	Unit 3: Functions	3	t	2026-06-23 11:23:04.472136
102	29	Geometry	Unit 4: Geometry	4	t	2026-06-23 11:23:04.475223
103	30	Critical Reading	Unit 1: Critical Reading	1	t	2026-06-23 11:23:04.478435
104	30	Research Writing	Unit 2: Research Writing	2	t	2026-06-23 11:23:04.481372
105	30	Literary Criticism	Unit 3: Literary Criticism	3	t	2026-06-23 11:23:04.484296
106	30	Communication	Unit 4: Communication	4	t	2026-06-23 11:23:04.487362
107	31	Physical Science	Unit 1: Physical Science	1	t	2026-06-23 11:23:04.490725
108	31	Physics Basics	Unit 2: Physics Basics	2	t	2026-06-23 11:23:04.493746
109	31	Earth and Space	Unit 3: Earth and Space	3	t	2026-06-23 11:23:04.49668
110	32	US Constitution	Unit 1: US Constitution	1	t	2026-06-23 11:23:04.499707
111	32	Civil War Era	Unit 2: Civil War Era	2	t	2026-06-23 11:23:04.502527
112	32	Industrialization	Unit 3: Industrialization	3	t	2026-06-23 11:23:04.505859
113	33	Foundations of Algebra	Unit 1: Foundations of Algebra	1	t	2026-06-23 11:23:04.509449
114	33	Linear Equations and Inequalities	Unit 2: Linear Equations and Inequalities	2	t	2026-06-23 11:23:04.512447
115	33	Polynomials	Unit 3: Polynomials	3	t	2026-06-23 11:23:04.515399
116	33	Quadratic Functions	Unit 4: Quadratic Functions	4	t	2026-06-23 11:23:04.518287
117	34	Literature Survey	Unit 1: Literature Survey	1	t	2026-06-23 11:23:04.5218
118	34	Analytical Writing	Unit 2: Analytical Writing	2	t	2026-06-23 11:23:04.52483
119	34	Grammar and Style	Unit 3: Grammar and Style	3	t	2026-06-23 11:23:04.527792
120	34	Rhetoric	Unit 4: Rhetoric	4	t	2026-06-23 11:23:04.53101
121	35	Cell Biology	Unit 1: Cell Biology	1	t	2026-06-23 11:23:04.534349
122	35	Genetics	Unit 2: Genetics	2	t	2026-06-23 11:23:04.537807
123	35	Evolution	Unit 3: Evolution	3	t	2026-06-23 11:23:04.541388
124	35	Ecology	Unit 4: Ecology	4	t	2026-06-23 11:23:04.544746
125	36	Ancient World	Unit 1: Ancient World	1	t	2026-06-23 11:23:04.547893
126	36	Medieval to Early Modern	Unit 2: Medieval to Early Modern	2	t	2026-06-23 11:23:04.550785
127	36	Age of Revolution	Unit 3: Age of Revolution	3	t	2026-06-23 11:23:04.5538
128	36	Modern World	Unit 4: Modern World	4	t	2026-06-23 11:23:04.55768
129	37	Foundations of Geometry	Unit 1: Foundations of Geometry	1	t	2026-06-23 11:23:04.560967
130	37	Triangles	Unit 2: Triangles	2	t	2026-06-23 11:23:04.564134
131	37	Circles	Unit 3: Circles	3	t	2026-06-23 11:23:04.567018
132	37	Area Volume and Transformations	Unit 4: Area Volume and Transformations	4	t	2026-06-23 11:23:04.569875
133	38	World Literature	Unit 1: World Literature	1	t	2026-06-23 11:23:04.57342
134	38	Research and Rhetoric	Unit 2: Research and Rhetoric	2	t	2026-06-23 11:23:04.576387
135	38	Critical Analysis	Unit 3: Critical Analysis	3	t	2026-06-23 11:23:04.57948
136	38	Creative Writing	Unit 4: Creative Writing	4	t	2026-06-23 11:23:04.582372
137	39	Atomic Structure	Unit 1: Atomic Structure	1	t	2026-06-23 11:23:04.585717
138	39	Chemical Bonding	Unit 2: Chemical Bonding	2	t	2026-06-23 11:23:04.588985
139	39	Chemical Reactions	Unit 3: Chemical Reactions	3	t	2026-06-23 11:23:04.592088
140	39	Solutions and Acids	Unit 4: Solutions and Acids	4	t	2026-06-23 11:23:04.59511
141	40	Colonial and Revolutionary Era	Unit 1: Colonial and Revolutionary Era	1	t	2026-06-23 11:23:04.598459
142	40	Growth of the Nation	Unit 2: Growth of the Nation	2	t	2026-06-23 11:23:04.602028
143	40	Civil War and Reconstruction	Unit 3: Civil War and Reconstruction	3	t	2026-06-23 11:23:04.605215
144	40	Modern America	Unit 4: Modern America	4	t	2026-06-23 11:23:04.608361
145	41	Polynomial Functions	Unit 1: Polynomial Functions	1	t	2026-06-23 11:23:04.612005
146	41	Rational and Radical Functions	Unit 2: Rational and Radical Functions	2	t	2026-06-23 11:23:04.615006
147	41	Exponential and Logarithmic	Unit 3: Exponential and Logarithmic	3	t	2026-06-23 11:23:04.617822
148	41	Sequences and Series	Unit 4: Sequences and Series	4	t	2026-06-23 11:23:04.620917
149	42	American Literature	Unit 1: American Literature	1	t	2026-06-23 11:23:04.624482
150	42	Modern American Literature	Unit 2: Modern American Literature	2	t	2026-06-23 11:23:04.627288
151	42	College-Prep Writing	Unit 3: College-Prep Writing	3	t	2026-06-23 11:23:04.630348
152	42	SAT/ACT Prep	Unit 4: SAT/ACT Prep	4	t	2026-06-23 11:23:04.633464
153	43	Mechanics	Unit 1: Mechanics	1	t	2026-06-23 11:23:04.636886
154	43	Waves and Sound	Unit 2: Waves and Sound	2	t	2026-06-23 11:23:04.64014
155	43	Electricity	Unit 3: Electricity	3	t	2026-06-23 11:23:04.643044
156	43	Modern Physics	Unit 4: Modern Physics	4	t	2026-06-23 11:23:04.646062
157	44	US Government	Unit 1: US Government	1	t	2026-06-23 11:23:04.649284
158	44	Civil Liberties	Unit 2: Civil Liberties	2	t	2026-06-23 11:23:04.652344
159	44	Economics	Unit 3: Economics	3	t	2026-06-23 11:23:04.655575
160	44	Personal Finance	Unit 4: Personal Finance	4	t	2026-06-23 11:23:04.658596
161	45	Functions and Graphs	Unit 1: Functions and Graphs	1	t	2026-06-23 11:23:04.662202
162	45	Trigonometry	Unit 2: Trigonometry	2	t	2026-06-23 11:23:04.665097
163	45	Limits and Continuity	Unit 3: Limits and Continuity	3	t	2026-06-23 11:23:04.668062
164	45	Introduction to Calculus	Unit 4: Introduction to Calculus	4	t	2026-06-23 11:23:04.670894
165	46	British Literature	Unit 1: British Literature	1	t	2026-06-23 11:23:04.674387
166	46	Modern British Literature	Unit 2: Modern British Literature	2	t	2026-06-23 11:23:04.677901
167	46	College Writing	Unit 3: College Writing	3	t	2026-06-23 11:23:04.680838
168	46	Senior Capstone	Unit 4: Senior Capstone	4	t	2026-06-23 11:23:04.683672
169	47	Geology	Unit 1: Geology	1	t	2026-06-23 11:23:04.686842
170	47	Oceanography	Unit 2: Oceanography	2	t	2026-06-23 11:23:04.690168
171	47	Meteorology	Unit 3: Meteorology	3	t	2026-06-23 11:23:04.69327
172	47	Astronomy	Unit 4: Astronomy	4	t	2026-06-23 11:23:04.696296
173	48	Global Issues	Unit 1: Global Issues	1	t	2026-06-23 11:23:04.699518
174	48	Geopolitics	Unit 2: Geopolitics	2	t	2026-06-23 11:23:04.702483
175	48	Sociology	Unit 3: Sociology	3	t	2026-06-23 11:23:04.705665
176	48	Current Events	Unit 4: Current Events	4	t	2026-06-23 11:23:04.708687
\.


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.users (id, email, password_hash, first_name, last_name, role, phone, notification_email, created_at, updated_at) FROM stdin;
1	admin@jnmhomeschool.com	$2a$10$f4ZZBVudCHmD86kUhVg4zuQhxlNpfJTVxipZpRQEwJqdOk8QEyrIO	Admin	User	parent	\N	t	2026-06-23 09:51:03.891491	2026-06-23 09:51:03.891491
\.


--
-- Name: assessment_periods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assessment_periods_id_seq', 6, true);


--
-- Name: assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assignments_id_seq', 1232, true);


--
-- Name: attendance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attendance_id_seq', 1, false);


--
-- Name: calendar_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.calendar_events_id_seq', 10, true);


--
-- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.comments_id_seq', 1, false);


--
-- Name: courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.courses_id_seq', 92, true);


--
-- Name: daily_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.daily_logs_id_seq', 1, false);


--
-- Name: enrollments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.enrollments_id_seq', 1, false);


--
-- Name: grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.grades_id_seq', 1, false);


--
-- Name: lessons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.lessons_id_seq', 528, true);


--
-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notifications_id_seq', 1, false);


--
-- Name: period_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.period_grades_id_seq', 1, false);


--
-- Name: retakes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.retakes_id_seq', 1, false);


--
-- Name: students_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.students_id_seq', 1, false);


--
-- Name: submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.submissions_id_seq', 1, false);


--
-- Name: units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.units_id_seq', 176, true);


--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.users_id_seq', 2, true);


--
-- Name: assessment_periods assessment_periods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assessment_periods
    ADD CONSTRAINT assessment_periods_pkey PRIMARY KEY (id);


--
-- Name: assignments assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assignments
    ADD CONSTRAINT assignments_pkey PRIMARY KEY (id);


--
-- Name: attendance attendance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance
    ADD CONSTRAINT attendance_pkey PRIMARY KEY (id);


--
-- Name: attendance attendance_student_id_attendance_date_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance
    ADD CONSTRAINT attendance_student_id_attendance_date_key UNIQUE (student_id, attendance_date);


--
-- Name: calendar_events calendar_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.calendar_events
    ADD CONSTRAINT calendar_events_pkey PRIMARY KEY (id);


--
-- Name: comments comments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_pkey PRIMARY KEY (id);


--
-- Name: courses courses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses
    ADD CONSTRAINT courses_pkey PRIMARY KEY (id);


--
-- Name: daily_logs daily_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.daily_logs
    ADD CONSTRAINT daily_logs_pkey PRIMARY KEY (id);


--
-- Name: daily_logs daily_logs_student_id_log_date_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.daily_logs
    ADD CONSTRAINT daily_logs_student_id_log_date_key UNIQUE (student_id, log_date);


--
-- Name: enrollments enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_pkey PRIMARY KEY (id);


--
-- Name: enrollments enrollments_student_id_course_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_student_id_course_id_key UNIQUE (student_id, course_id);


--
-- Name: grades grades_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_pkey PRIMARY KEY (id);


--
-- Name: lessons lessons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.lessons
    ADD CONSTRAINT lessons_pkey PRIMARY KEY (id);


--
-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_pkey PRIMARY KEY (id);


--
-- Name: period_grades period_grades_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.period_grades
    ADD CONSTRAINT period_grades_pkey PRIMARY KEY (id);


--
-- Name: retakes retakes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_pkey PRIMARY KEY (id);


--
-- Name: students students_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_pkey PRIMARY KEY (id);


--
-- Name: students students_school_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_school_id_key UNIQUE (school_id);


--
-- Name: submissions submissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.submissions
    ADD CONSTRAINT submissions_pkey PRIMARY KEY (id);


--
-- Name: units units_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.units
    ADD CONSTRAINT units_pkey PRIMARY KEY (id);


--
-- Name: users users_email_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_email_key UNIQUE (email);


--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: idx_assignments_lesson; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_assignments_lesson ON public.assignments USING btree (lesson_id);


--
-- Name: idx_attendance_student_date; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_attendance_student_date ON public.attendance USING btree (student_id, attendance_date);


--
-- Name: idx_calendar_date; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_calendar_date ON public.calendar_events USING btree (event_date);


--
-- Name: idx_comments_student; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_comments_student ON public.comments USING btree (student_id);


--
-- Name: idx_daily_logs_student_date; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_daily_logs_student_date ON public.daily_logs USING btree (student_id, log_date);


--
-- Name: idx_enrollments_course; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_enrollments_course ON public.enrollments USING btree (course_id);


--
-- Name: idx_enrollments_student; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_enrollments_student ON public.enrollments USING btree (student_id);


--
-- Name: idx_grades_assignment; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_grades_assignment ON public.grades USING btree (assignment_id);


--
-- Name: idx_grades_student; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_grades_student ON public.grades USING btree (student_id);


--
-- Name: idx_lessons_unit; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_lessons_unit ON public.lessons USING btree (unit_id);


--
-- Name: idx_notifications_user; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_notifications_user ON public.notifications USING btree (user_id);


--
-- Name: idx_period_grades_student; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_period_grades_student ON public.period_grades USING btree (student_id);


--
-- Name: idx_students_grade_level; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_students_grade_level ON public.students USING btree (grade_level);


--
-- Name: idx_students_school_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_students_school_id ON public.students USING btree (school_id);


--
-- Name: idx_students_user_id; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_students_user_id ON public.students USING btree (user_id);


--
-- Name: idx_submissions_assignment; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_submissions_assignment ON public.submissions USING btree (assignment_id);


--
-- Name: idx_submissions_student; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_submissions_student ON public.submissions USING btree (student_id);


--
-- Name: idx_units_course; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_units_course ON public.units USING btree (course_id);


--
-- Name: assignments assignments_created_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assignments
    ADD CONSTRAINT assignments_created_by_fkey FOREIGN KEY (created_by) REFERENCES public.users(id);


--
-- Name: assignments assignments_lesson_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assignments
    ADD CONSTRAINT assignments_lesson_id_fkey FOREIGN KEY (lesson_id) REFERENCES public.lessons(id) ON DELETE CASCADE;


--
-- Name: attendance attendance_recorded_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance
    ADD CONSTRAINT attendance_recorded_by_fkey FOREIGN KEY (recorded_by) REFERENCES public.users(id);


--
-- Name: attendance attendance_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance
    ADD CONSTRAINT attendance_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: comments comments_assignment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES public.assignments(id);


--
-- Name: comments comments_course_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_course_id_fkey FOREIGN KEY (course_id) REFERENCES public.courses(id);


--
-- Name: comments comments_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: comments comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);


--
-- Name: courses courses_created_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses
    ADD CONSTRAINT courses_created_by_fkey FOREIGN KEY (created_by) REFERENCES public.users(id);


--
-- Name: daily_logs daily_logs_logged_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.daily_logs
    ADD CONSTRAINT daily_logs_logged_by_fkey FOREIGN KEY (logged_by) REFERENCES public.users(id);


--
-- Name: daily_logs daily_logs_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.daily_logs
    ADD CONSTRAINT daily_logs_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: enrollments enrollments_course_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_course_id_fkey FOREIGN KEY (course_id) REFERENCES public.courses(id) ON DELETE CASCADE;


--
-- Name: enrollments enrollments_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: grades grades_assignment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES public.assignments(id);


--
-- Name: grades grades_graded_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_graded_by_fkey FOREIGN KEY (graded_by) REFERENCES public.users(id);


--
-- Name: grades grades_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: grades grades_submission_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_submission_id_fkey FOREIGN KEY (submission_id) REFERENCES public.submissions(id) ON DELETE CASCADE;


--
-- Name: lessons lessons_unit_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.lessons
    ADD CONSTRAINT lessons_unit_id_fkey FOREIGN KEY (unit_id) REFERENCES public.units(id) ON DELETE CASCADE;


--
-- Name: notifications notifications_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id);


--
-- Name: notifications notifications_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: period_grades period_grades_assessment_period_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.period_grades
    ADD CONSTRAINT period_grades_assessment_period_id_fkey FOREIGN KEY (assessment_period_id) REFERENCES public.assessment_periods(id);


--
-- Name: period_grades period_grades_course_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.period_grades
    ADD CONSTRAINT period_grades_course_id_fkey FOREIGN KEY (course_id) REFERENCES public.courses(id);


--
-- Name: period_grades period_grades_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.period_grades
    ADD CONSTRAINT period_grades_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: retakes retakes_approved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_approved_by_fkey FOREIGN KEY (approved_by) REFERENCES public.users(id);


--
-- Name: retakes retakes_assignment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES public.assignments(id) ON DELETE CASCADE;


--
-- Name: retakes retakes_new_grade_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_new_grade_id_fkey FOREIGN KEY (new_grade_id) REFERENCES public.grades(id);


--
-- Name: retakes retakes_original_grade_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_original_grade_id_fkey FOREIGN KEY (original_grade_id) REFERENCES public.grades(id);


--
-- Name: retakes retakes_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.retakes
    ADD CONSTRAINT retakes_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: students students_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: submissions submissions_assignment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.submissions
    ADD CONSTRAINT submissions_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES public.assignments(id) ON DELETE CASCADE;


--
-- Name: submissions submissions_student_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.submissions
    ADD CONSTRAINT submissions_student_id_fkey FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: units units_course_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.units
    ADD CONSTRAINT units_course_id_fkey FOREIGN KEY (course_id) REFERENCES public.courses(id) ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

\unrestrict jB9GM3HrkezWkl2zsuA7jpAtem7PR9AWRBd4EGR9Nt5EkXs61y3wthdocd55mn0

