18 lines
2.3 KiB
JavaScript
18 lines
2.3 KiB
JavaScript
const questionChoicesDataSql = `
|
||
INSERT INTO question_choices (id,question_id,choice_description,choice_type,choice_options,correct_answers,score,created_at,updated_at) VALUES
|
||
(1,7,'建立产量对单位成本的线性回归方程( )。','single','["y=76.86+0.93x","y=76.86-0.93x","y=76.86+1.64x","y=76.86-1.64x"]','["y=76.86-1.64x"]',6.0,'2025-08-08 21:40:36','2025-08-08 23:06:32'),
|
||
(2,7,'如果2026年产量为7千件,则单位成本为( )元/件。','single','["65.38","63.34","83.37","70.35"]','["65.38"]',4.0,'2025-08-08 21:50:14','2025-08-08 23:06:38'),
|
||
(3,8,'该公司全年销量最大的产品是( )。','single','["甲产品","乙产品","丙产品","丁产品"]','["丙产品"]',5.0,'2025-08-08 21:52:21','2025-08-08 23:06:03'),
|
||
(4,8,'对于丁产品,季度销售额占全年销售额比重最大的是( )。','single','["第一季度","第二季度","第三季度","第四季度"]','["第二季度"]',5.0,'2025-08-08 21:53:11','2025-08-08 23:06:12'),
|
||
(5,9,'2014年全国棉花单位面积产量比上年 ( )。','single','["提高了5.1%","提高了0.7%","降低了5.1%","降低了0.7%"]','["提高了0.7%"]',5.0,'2025-08-08 21:54:58','2025-08-08 23:05:40'),
|
||
(6,9,'2014年棉花产量最高的省(区)播种面积占全国的比重为( )。','single','["52%","60%","40%","46%"]','["46%"]',5.0,'2025-08-08 21:56:08','2025-08-08 23:05:45'),
|
||
(7,10,'2019年煤炭产量比2018年同比增长速度为( )。','single','["8.03%","8.65%","9.14%","10.02%"]','["8.65%"]',5.0,'2025-08-08 21:57:59','2025-08-08 23:05:17'),
|
||
(8,10,'2015年-2019煤炭产量年平均增长速度为( )。','single','["8.33%","8.05%","8.86%","9.22%"]','["8.86%"]',5.0,'2025-08-08 21:58:50','2025-08-08 23:05:24'),
|
||
(9,11,'税收收入占一般公共预算收入比重最大的是( )。','single','["上海","江苏","浙江","福建"]','["上海"]',3.0,'2025-08-08 22:00:11','2025-08-08 23:04:09'),
|
||
(10,11,'一般公共预算收入占GDP比重大于10%的省(市)有( )。','single','["4个","5个","6个","7个"]','["5个"]',3.0,'2025-08-08 22:00:51','2025-08-08 23:04:19'),
|
||
(11,11,'江苏、浙江、江西三省的税收收入平均增速是( )。','single','["8.01%","8.15%","9.38%","10.02%"]','["9.38%"]',4.0,'2025-08-08 22:01:41','2025-08-08 23:04:59');
|
||
`;
|
||
|
||
module.exports = {
|
||
questionChoicesDataSql
|
||
}; |