Skip to content

一年级上学期

sql
INSERT INTO questions (subject, grade, category_id, type, content, options, correct_answer, explanation)
VALUES
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'They ____ at home.(不在)',
    NULL,
    "aren't",
    '复数用are,否定是aren\'t'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'She ____ swim.(不会)',
    NULL,
    "can't",
    '情态动词否定用can\'t'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'We ____ that hat.(不想要)',
    NULL,
    "don't want",
    '第一人称否定用don\'t加动词原形'
),
-- 表达需求与愿望填空题
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'I ____ a cake.(想要)',
    NULL,
    'want',
    '表达想要用want'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'She ____ to play.(希望)',
    NULL,
    'wishes',
    '第三人称用wishes'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'We ____ some milk.(需要)',
    NULL,
    'need',
    '表达需要用need'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'He ____ to sing.(希望)',
    NULL,
    'hopes',
    '第三人称用hopes'
),
(
    'english',
    2,
    223,
    'fill_in_the_blank',
    'They ____ a party.(渴望)',
    NULL,
    'desire',
    '表达渴望用desire'
),
-- 否定句选择题
(
    'english',
    2,
    223,
    'single_choice',
    '我不看电视,选:',
    '{"A": "I not watch TV.", "B": "I don\'t watch TV.", "C": "I doesn\'t watch TV."}',
    'B',
    '第一人称否定用don\'t'
),
(
    'english',
    2,
    223,
    'single_choice',
    '她没有书,选:',
    '{"A": "She haven\'t books.", "B": "She doesn\'t have books.", "C": "She don\'t have books."}',
    'B',
    '第三人称否定用doesn\'t'
),
(
    'english',
    2,
    223,
    'single_choice',
    '它不是狗,选:',
    '{"A": "It not is a dog.", "B": "It isn\'t a dog.", "C": "It doesn\'t a dog."}',
    'B',
    '用is的否定isn\'t'
),
(
    'english',
    2,
    223,
    'single_choice',
    '我们不会跑步,选:',
    '{"A": "We can\'t run.", "B": "We don\'t can run.", "C": "We aren\'t run."}',
    'A',
    '情态动词否定用can\'t'
),
(
    'english',
    2,
    223,
    'single_choice',
    '你不跳舞,选:',
    '{"A": "You not dance.", "B": "You don\'t dance.", "C": "You doesn\'t dance."}',
    'B',
    '第二人称否定用don\'t'
),
-- 表达需求与愿望选择题
(
    'english',
    2,
    223,
    'single_choice',
    '我想要玩具,选:',
    '{"A": "I wants a toy.", "B": "I want a toy.", "C": "I am want a toy."}',
    'B',
    '第一人称用want原形'
),
(
    'english',
    2,
    223,
    'single_choice',
    '他希望睡觉,选:',
    '{"A": "He hope to sleep.", "B": "He hopes to sleep.", "C": "He is hope to sleep."}',
    'B',
    '第三人称用hopes'
),
(
    'english',
    2,
    223,
    'single_choice',
    '我们需要水,选:',
    '{"A": "We needs water.", "B": "We need water.", "C": "We are need water."}',
    'B',
    '第一人称用need原形'
),
(
    'english',
    2,
    223,
    'single_choice',
    '她渴望礼物,选:',
    '{"A": "She desire a gift.", "B": "She desires a gift.", "C": "She is desire a gift."}',
    'B',
    '第三人称用desires'
),
(
    'english',
    2,
    223,
    'single_choice',
    '他们希望玩,选:',
    '{"A": "They wish to play.", "B": "They wishes to play.", "C": "They are wish to play."}',
    'A',
    '复数用wish原形'
);
sql
INSERT INTO questions (subject, grade, category_id, type, content, options, correct_answer, explanation)
VALUES
-- have/has句型填空题
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'I ______ a new book.(用have/has填空)',
    NULL,
    'have',
    '主语I是第一人称,用have。'
),



INSERT INTO questions (subject, grade, category_id, type, content, options, correct_answer, explanation)
VALUES
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'She ______ a cute cat.(用have/has填空)',
    NULL,
    'has',
    '主语She是第三人称单数,用has。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'They ______ some toys.(用have/has填空)',
    NULL,
    'have',
    '主语They是复数,用have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'He ______ a basketball.(用have/has填空)',
    NULL,
    'has',
    '主语He是第三人称单数,用has。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'We ______ many friends.(用have/has填空)',
    NULL,
    'have',
    '主语We是复数,用have。'
),
-- have/has句型否定句填空题


INSERT INTO questions (subject, grade, category_id, type, content, options, correct_answer, explanation)
VALUES
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'I ______ ______ a ruler.(用否定形式填空)',
    NULL,
    "don't have",
    '主语I是第一人称,变否定句用助动词don''t + have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'They ______ ______ any pens.(用否定形式填空)',
    NULL,
    "don't have",
    '主语They是复数,变否定句用助动词don''t + have,否定句中some变any。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    'We ______ ______ a kite.(用否定形式填空)',
    NULL,
    "don't have",
    '主语We是复数,变否定句用助动词don''t + have。'
),
-- have/has句型疑问句填空题
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    '______ you ______ a pencil?(变一般疑问句)',
    NULL,
    "Do have",
    '主语you是第二人称,变一般疑问句用助动词Do + 主语 + have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    '______ she ______ a doll?(变一般疑问句)',
    NULL,
    "Does have",
    '主语she是第三人称单数,变一般疑问句用助动词Does + 主语 + have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    '______ they ______ a ball?(变一般疑问句)',
    NULL,
    "Do have",
    '主语they是复数,变一般疑问句用助动词Do + 主语 + have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    '______ he ______ a pen?(变一般疑问句)',
    NULL,
    "Does have",
    '主语he是第三人称单数,变一般疑问句用助动词Does + 主语 + have。'
),
(
    'english',
    3,
    227,
    'fill_in_the_blank',
    '______ we ______ a map?(变一般疑问句)',
    NULL,
    "Do have",
    '主语we是复数,变一般疑问句用助动词Do + 主语 + have。'
),
-- have/has句型选择题
(
    'english',
    3,
    227,
   'single_choice',
    '下列句子正确的是:',
    '{"A": "He have a toy.", "B": "He has a toy.", "C": "He haves a toy."}',
    'B',
    '主语He是第三人称单数,用has,B选项正确。'
),
(
    'english',
    3,
    227,
   'single_choice',
    '“我没有橡皮”的英文是:',
    '{"A": "I not have an eraser.", "B": "I don''t have an eraser.", "C": "I doesn''t have an eraser."}',
    'B',
    '主语I是第一人称,变否定用don''t + have,B选项正确。'
),
(
    'english',
    3,
    227,
   'single_choice',
    '一般疑问句“她有铅笔吗?”正确表达是:',
    '{"A": "Does she have a pencil?", "B": "Do she have a pencil?", "C": "Is she have a pencil?"}',
    'A',
    '主语she是第三人称单数,一般疑问句用Does + 主语 + have,A选项正确。'
),
(
    'english',
    3,
    227,
   'single_choice',
    '“他们有书”的英文是:',
    '{"A": "They has books.", "B": "They have books.", "C": "They haves books."}',
    'B',
    '主语They是复数,用have,B选项正确。'
),
(
    'english',
    3,
    227,
   'single_choice',
    '否定句“我们没有风筝”正确的是:',
    '{"A": "We don''t have kites.", "B": "We doesn''t have kites.", "C": "We not have kites."}',
    'A',
    '主语We是复数,变否定用don''t + have,A选项正确。'
);