commit c3034268584cab5db89b916b79d1ba2ec6334f43 Author: abigwc Date: Fri Aug 14 08:13:11 2026 +0800 feat: 初始化 bigdata 题库与 quiz-app 刷题系统 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e1dd8e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Dependencies +node_modules/ +**/node_modules/ + +# Production build +dist/ +**/dist/ +build/ +**/build/ + +# Archives & Temp +*.zip +*.tar.gz +*.tar +*.log + +# Python cache +__pycache__/ +*.py[cod] +*$py.class +.venv/ +venv/ +env/ + +# IDE & OS +.DS_Store +Thumbs.db +.vscode/ +.idea/ diff --git a/extract.py b/extract.py new file mode 100644 index 0000000..00b990b --- /dev/null +++ b/extract.py @@ -0,0 +1,87 @@ +import json +import re +import fitz + +def extract_questions_from_pdf(pdf_path, output_json_path): + doc = fitz.open(pdf_path) + text_content = "" + for page in doc: + text_content += page.get_text("text") + + lines = [line.strip() for line in text_content.split('\n') if line.strip()] + + questions = [] + + current_q = None + + option_pattern = re.compile(r'^[A-H][\.、]\s*(.*)$') + answer_pattern = re.compile(r'^[A-H]+$') + + ignore_keywords = { + "序", "号", "序号", "题目", "可选项", "题型", "答案", "来源文件", + "文件内", "文件内具体", "具体出处", "出处", "难度等级", "(1-5 分)", "(1-5分)", "文件内具体出处" + } + + # 因为页码可能干扰,我们要确保 current_id 是递增的 + expected_id = 1 + state = "WAIT_FOR_ID" + + i = 0 + while i < len(lines): + line = lines[i] + + if line in ignore_keywords: + i += 1 + continue + + if state == "WAIT_FOR_ID": + if line == str(expected_id): + current_q = {"id": expected_id, "title": "", "options": [], "type": "", "answer": ""} + state = "READING_TITLE" + + elif state == "READING_TITLE": + if option_pattern.match(line) or line.startswith('A.') or line.startswith('A、'): + state = "READING_OPTIONS" + current_q["options"].append(line) + elif line.isdigit(): + # 忽略多余的数字(如页码、难度等级、重复的题号) + pass + else: + if current_q["title"]: + current_q["title"] += " " + line + else: + current_q["title"] = line + + elif state == "READING_OPTIONS": + if line in ['单选', '多选']: + current_q["type"] = line + state = "WAIT_FOR_ANSWER" + elif option_pattern.match(line) or line.startswith('B.') or line.startswith('C.') or line.startswith('D.') or line.startswith('E.') or line.startswith('F.'): + current_q["options"].append(line) + elif line.isdigit(): + pass + else: + if len(current_q["options"]) > 0: + current_q["options"][-1] += " " + line + + elif state == "WAIT_FOR_ANSWER": + if answer_pattern.match(line) or line in ['A', 'B', 'C', 'D', 'AB', 'ABC', 'ABCD', 'ABD', 'ACD', 'BCD', 'AC', 'AD', 'BC', 'BD', 'CD']: + current_q["answer"] = line + questions.append(current_q) + expected_id += 1 + state = "IGNORE_REST" + + elif state == "IGNORE_REST": + if line == str(expected_id): + current_q = {"id": expected_id, "title": "", "options": [], "type": "", "answer": ""} + state = "READING_TITLE" + + i += 1 + + print(f"Extracted {len(questions)} questions.") + + with open(output_json_path, 'w', encoding='utf-8') as f: + json.dump(questions, f, ensure_ascii=False, indent=2) + +if __name__ == "__main__": + extract_questions_from_pdf("d:/code/bigdata/题库.pdf", "d:/code/bigdata/questions.json") diff --git a/extract_table.py b/extract_table.py new file mode 100644 index 0000000..165b4c0 --- /dev/null +++ b/extract_table.py @@ -0,0 +1,76 @@ +import json +import pdfplumber +import re + +def extract_from_pdf(pdf_path, output_json_path): + questions = [] + current_q = None + global_id = 1 + + with pdfplumber.open(pdf_path) as pdf: + for page_num, page in enumerate(pdf.pages): + tables = page.extract_tables() + for table in tables: + for row in table: + if not row or len(row) < 5: + continue + + col0 = str(row[0]).strip() if row[0] is not None else "" + if col0 in ["序号", "序\n号", "序", "号", "题目", "可选项"]: + continue + + is_new_q = False + if col0.isdigit(): + is_new_q = True + # q_id = int(col0) + + title = row[1] if row[1] else "" + options_raw = row[2] if row[2] else "" + q_type = row[3] if row[3] else "" + q_answer = row[4] if row[4] else "" + source_file = row[5] if len(row) > 5 and row[5] else "" + + # Split options + opts = re.split(r'(?=[A-H][\.、])', options_raw) + parsed_options = [opt.strip().replace('\n', '') for opt in opts if opt.strip()] + + if is_new_q: + if current_q: + current_q["id"] = global_id + questions.append(current_q) + global_id += 1 + current_q = { + "title": title.replace('\n', ''), + "options": parsed_options, + "type": q_type.replace('\n', '').strip(), + "answer": q_answer.replace('\n', '').strip(), + "source_id": col0, # keeping original id for reference + "page_number": page_num + 1, + "source_file": source_file.replace('\n', '').strip() + } + elif current_q: + if title: + current_q["title"] += title.replace('\n', '') + if parsed_options: + current_q["options"].extend(parsed_options) + if q_type: + current_q["type"] += q_type.replace('\n', '').strip() + if q_answer: + current_q["answer"] += q_answer.replace('\n', '').strip() + if source_file: + current_q["source_file"] += source_file.replace('\n', '').strip() + + if current_q: + current_q["id"] = global_id + questions.append(current_q) + + print(f"Extracted {len(questions)} questions via table parsing.") + + bad = [x for x in questions if len(x['options']) < 2] + print(f"Questions with <2 options: {len(bad)}") + + with open(output_json_path, 'w', encoding='utf-8') as f: + json.dump(questions, f, ensure_ascii=False, indent=2) + +if __name__ == "__main__": + extract_from_pdf("d:/code/bigdata/题库.pdf", "d:/code/bigdata/questions.json") diff --git a/questions.json b/questions.json new file mode 100644 index 0000000..5d3e754 --- /dev/null +++ b/questions.json @@ -0,0 +1,11465 @@ +[ + { + "title": "到______年底,我国数据流通服务机构能力将实现显著提升,全社会数据流通利用水平明显提高", + "options": [ + "A.2027", + "B.2028", + "C.2029", + "D.2030" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 1 + }, + { + "title": "下列不属于数据流通服务机构范畴的是", + "options": [ + "A.数据交易所(中心)", + "B.数据流通服务平台企业", + "C.数据商", + "D.数据安全执法机构" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 2 + }, + { + "title": "数据交易所(中心)应强化合规保障、供需匹配等______服务功能", + "options": [ + "A.综合", + "B.基础", + "C.核心", + "D.增值" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 3 + }, + { + "title": "鼓励云服务平台企业强化数据汇聚、生态链接功能,探索______数据流通利用新模式", + "options": [ + "A.一站式", + "B.全链条", + "C.场景化", + "D.专业化" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 4 + }, + { + "title": "支持符合条件的数据商参与______资源开发利用,提升公共数据产品化服务化开发能力", + "options": [ + "A.公共数据", + "B.企业数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 5 + }, + { + "title": "鼓励各类主体拓展数据交换方式,下列不属于文件明确支持的是", + "options": [ + "A.数据换数据", + "B.数据换模型", + "C.数据换股权", + "D.数据换场景" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 6 + }, + { + "title": "探索数据______等数据价值实现新路径", + "options": [ + "A.自由转让", + "B.作价出资", + "C.证券化", + "D.质押融资" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 7 + }, + { + "title": "下列属于资源型数据产品和服务的是", + "options": [ + "A.数据分析报告", + "B.高质量数据集", + "C.数据指数", + "D.数据可视化" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 8 + }, + { + "title": "支持数据流通服务机构强化______协同,结合产业需求建设数据领域科技创新平台基地", + "options": [ + "A.政企", + "B.校企", + "C.产学研用", + "D.政产学研" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 9 + }, + { + "title": "支持各类数据流通服务机构加强与______企业合作,依托数据基础设施提供模型训练等服务", + "options": [ + "A.工业", + "B.金融", + "C.人工智能", + "D.互联网" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 10 + }, + { + "title": "推动数据交易所建立完善数据流通交易合同______规程和标准", + "options": [ + "A.签订", + "B.履行", + "C.备案", + "D.解除" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 11 + }, + { + "title": "鼓励企业单列______科目,支持数据交易所提升服务各类主体数据采购能力", + "options": [ + "A.数据资产", + "B.数据采购", + "C.研发支出", + "D.管理费用" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 12 + }, + { + "title": "探索符合数据要素特性的______机制,鼓励披露数据交易价格信息", + "options": [ + "A.政府定价", + "B.价格形成", + "C.市场调节", + "D.协商定价" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 13 + }, + { + "title": "下列不属于第三方专业服务机构可提供的服务是", + "options": [ + "A.合规审计", + "B.数据保险", + "C.数据采集", + "D.争议仲裁" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 14 + }, + { + "title": "支持有条件的数据流通服务机构利用______等先行先试政策,探索数据跨境新型业务模式", + "options": [ + "A.经济技术开发区", + "B.自由贸易试验区", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 15 + }, + { + "title": "______要充分发挥统筹协调作用,会同相关部门建立健全数据流通服务机构管理体系", + "options": [ + "A.工业和信息化部", + "B.国家数据局", + "C.公安部", + "D.中国证监会" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 16 + }, + { + "title": "严格规范数据交易所(中心)设立审批,统筹优化布局,______数量,适时开展整合优化", + "options": [ + "A.适度增加", + "B.严控", + "C.逐步放开", + "D.不限" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 17 + }, + { + "title": "建立健全______机制,探索建立试错容错机制,鼓励在风险可控前提下开展创新探索", + "options": [ + "A.终身追责", + "B.尽职免责", + "C.一票否决", + "D.连带责任" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 18 + }, + { + "title": "下列关于数据流通服务机构功能定位的表述,正确的是", + "options": [ + "A.数据商主要负责制定数据流通交易规则和标准", + "B.数据流通服务平台企业应发挥引领带动作用", + "C.数据交易所(中心)应构建全链条数据流通交易服务体系", + "D.云服务平台企业主要负责数据资产入表服务" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 19 + }, + { + "title": "某数据流通服务机构拟开展数据跨境业务,根据本意见,其可探索的新型业务模式是", + "options": [ + "A.数据自由出境", + "B.数据跨境合规咨询", + "C.数据跨境证券化", + "D.数据跨境质押融资" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 20 + }, + { + "title": "数据流通服务机构是链接数据供需双方的重要主体,主要包括", + "options": [ + "A.数据交易所(中心)", + "B.数据流通服务平台企业", + "C.数据商", + "D.数据安全执法机构" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 21 + }, + { + "title": "数据交易所(中心)应强化的综合服务功能包括", + "options": [ + "A.价格发现", + "B.产品开发", + "C.生态培育", + "D.合规保障" + ], + "type": "多选", + "answer": "ABC", + "source_id": "22", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 22 + }, + { + "title": "支持各类数据流通服务平台企业围绕______,促进数据流通利用和价值共创", + "options": [ + "A.产业链", + "B.供应链", + "C.平台生态", + "D.政府治理" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 23 + }, + { + "title": "鼓励各类主体拓展的数据交换方式包括", + "options": [ + "A.数据换数据", + "B.数据换订单", + "C.数据换服务", + "D.数据换股权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 24 + }, + { + "title": "下列属于分析决策型数据产品和服务的有", + "options": [ + "A.核验查询", + "B.数据分析报告", + "C.数据指数", + "D.高质量数据集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 25 + }, + { + "title": "支持数据流通服务机构提供数据资产______服务,积极推进数据资产入表", + "options": [ + "A.合规化", + "B.标准化", + "C.增值化", + "D.证券化" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 26 + }, + { + "title": "第三方专业服务机构可拓展的专业服务包括", + "options": [ + "A.合规审计", + "B.数据保险", + "C.资产评估", + "D.数据采集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 27 + }, + { + "title": "各地不得对数据开发利用和流通交易设置不合理的______,限制数据跨区域流动", + "options": [ + "A.要求", + "B.审批条件", + "C.流程", + "D.收费标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "28", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 28 + }, + { + "title": "建立跨部门协同监管机制,严厉打击______等违法违规行为", + "options": [ + "A.虚构交易", + "B.市场操纵", + "C.数据黑产", + "D.数据共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 29 + }, + { + "title": "某数据商在开展业务过程中,下列行为符合本意见要求的有", + "options": [ + "A.通过自采销售方式拓展数据获取渠道", + "B.深入行业场景开发数据产品", + "C.参与公共数据资源开发利用", + "D.自行制定数据流通交易规则" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 8, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 30 + }, + { + "title": "《政务数据共享条例》的施行日期是", + "options": [ + "A.2025年5月9日", + "B.2025年5月28日", + "C.2025年8月1日", + "D.2025年6月3日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 31 + }, + { + "title": "《政务数据共享条例》对应的国务院令号是", + "options": [ + "A.第 807 号", + "B.第808 号", + "C.第 809 号", + "D.第810号" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 32 + }, + { + "title": "本条例所称政务数据不包括", + "options": [ + "A.政府部门依法履职收集的数据", + "B.政府部门依法履职产生的数据", + "C.国家秘密和工作秘密", + "D.公共事务管理组织履职产生的数据" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 33 + }, + { + "title": "下列不属于政务数据共享工作基本原则的是", + "options": [ + "A.统筹协调", + "B.标准统一", + "C.有偿使用", + "D.安全可控" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 34 + }, + { + "title": "负责统筹推进全国政务数据共享工作的部门是", + "options": [ + "A.国家发展和改革委员会", + "B.国务院政务数据共享主管部门", + "C.工业和信息化部", + "D.国家互联网信息办公室" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 35 + }, + { + "title": "政府部门因职责变化需更新政务数据目录的,一般应在变化发生之日起______个工作日内完成更新", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 36 + }, + { + "title": "政务数据共享主管部门收到更新后的政务数据目录,应当在______个工作日内完成审核并发布", + "options": [ + "A.2", + "B.5", + "C.10", + "D.15" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 37 + }, + { + "title": "政务数据按照共享属性分为______类", + "options": [ + "A.二", + "B.三", + "C.四", + "D.五" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 38 + }, + { + "title": "对于无条件共享类政务数据,提供部门应当自收到申请之日起______个工作日内作出答复", + "options": [ + "A.1", + "B.3", + "C.5", + "D.10" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 39 + }, + { + "title": "对于有条件共享类政务数据,提供部门一般应当自收到申请之日起______个工作日内作出答复", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 40 + }, + { + "title": "政务数据提供部门作出同意共享的答复后,应当在______个工作日内完成数据共享", + "options": [ + "A.10", + "B.15", + "C.20", + "D.30" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 41 + }, + { + "title": "政务数据需求部门发现数据不准确提出校核申请的,提供部门应当在______个工作日内核实更正并反馈", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 42 + }, + { + "title": "政务数据共享使用记录的保存期限不少于", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 43 + }, + { + "title": "统筹构建国家政务大数据平台的部门是", + "options": [ + "A.国务院办公厅", + "B.国务院政务数据共享主管部门", + "C.国家数据局", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 44 + }, + { + "title": "政务数据共享安全管理遵循的原则是", + "options": [ + "A.谁收集谁负责、谁存储谁负责", + "B.谁管理谁负责、谁使用谁负责", + "C.谁提供谁负责、谁接收谁负责", + "D.谁审批谁负责、谁执行谁负责" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 45 + }, + { + "title": "政务数据共享工作所需经费应当列入", + "options": [ + "A.部门专项经费", + "B.本级预算", + "C.上级转移支付", + "D.信息化项目经费" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 46 + }, + { + "title": "下列属于政务数据需求部门法律责任的是", + "options": [ + "A.未按时更新政务数据目录", + "B.擅自增设共享条件", + "C.重复收集可通过共享获取的数据", + "D.未按时回流下级政务数据" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 47 + }, + { + "title": "政府部门委托他人处理政务数据时,受托方可以实施的行为是", + "options": [ + "A.擅自访问政务数据", + "B.按照合同约定加工政务数据", + "C.留存政务数据", + "D.向他人提供政务数据" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 48 + }, + { + "title": "下列关于政务数据共享争议解决的表述,正确的是", + "options": [ + "A.同级部门争议直接由本级人民政府决定", + "B.跨层级争议由上级政务数据共享主管部门协调", + "C.跨地域争议由共同的上级人民政府协调", + "D.协商不成的可直接向人民法院起诉" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 49 + }, + { + "title": "某政府部门申请共享有条件共享类政务数据,提供部门经批准最长可将答复期限延长至", + "options": [ + "A.15个工作日", + "B.20个工作日", + "C.25个工作日", + "D.30个工作日" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 50 + }, + { + "title": "政务数据共享工作应当遵循的原则包括", + "options": [ + "A.统筹协调", + "B.标准统一", + "C.依法共享", + "D.有偿使用" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 51 + }, + { + "title": "下列属于政府部门政务数据共享工作机构职责的有", + "options": [ + "A.编制本部门政务数据目录", + "B.审核针对本部门的共享申请", + "C.制定全国政务数据共享标准", + "D.统筹全国政务数据平台建设" + ], + "type": "多选", + "answer": "AB", + "source_id": "22", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 52 + }, + { + "title": "政务数据目录应当明确的信息包括", + "options": [ + "A.数据项", + "B.提供单位", + "C.更新频率", + "D.商业价值" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 53 + }, + { + "title": "政务数据提供部门可以通过哪些方式共享政务数据", + "options": [ + "A.服务接口", + "B.批量交换", + "C.文件下载", + "D.公开售卖" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 54 + }, + { + "title": "下列属于政务数据需求部门违法违规行为的有", + "options": [ + "A.重复收集可通过共享获取的数据", + "B.擅自扩大共享数据使用范围", + "C.未按时答复共享申请", + "D.未按规定保存数据使用记录" + ], + "type": "多选", + "answer": "ABD", + "source_id": "25", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 55 + }, + { + "title": "国家鼓励在政务数据共享中应用的新技术包括", + "options": [ + "A.大数据", + "B.云计算", + "C.人工智能", + "D.量子计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 56 + }, + { + "title": "政务数据共享主管部门应当会同哪些部门推进安全管理制度建设", + "options": [ + "A.网信部门", + "B.公安部门", + "C.市场监管部门", + "D.保密行政管理部门" + ], + "type": "多选", + "answer": "ABD", + "source_id": "27", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 57 + }, + { + "title": "下列关于政务数据使用的表述,正确的有", + "options": [ + "A.不得擅自将共享数据提供给第三方", + "B.确需扩大使用范围需经提供部门同意", + "C.共享目的实现后可自行销毁数据", + "D.可将共享数据用于商业用途" + ], + "type": "多选", + "answer": "AB", + "source_id": "28", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 58 + }, + { + "title": "全国一体化政务大数据体系的建设要求包括", + "options": [ + "A.标准统一", + "B.布局合理", + "C.管理协同", + "D.开放共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 59 + }, + { + "title": "某政府部门在政务数据共享工作中,下列行为违反本条例规定的有", + "options": [ + "A.擅自增设共享条件阻碍数据共享", + "B.无正当理由未按时答复共享申请", + "C.将共享数据用于履行职责以外的目的", + "D.建立政务数据全过程质量管理体系" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 60 + }, + { + "title": "数据产权不包含下列哪项财产性权利", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据所有权", + "D.数据经营权" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 61 + }, + { + "title": "数据产权登记机构审核的核心内容不包括", + "options": [ + "A.数据来源真实性", + "B.数据商业价值", + "C.数据内容准确性", + "D.数据合规性" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 62 + }, + { + "title": "数据持有权的核心设立目的是", + "options": [ + "A.对外提供数据获取收益", + "B.防范他人非法窃取、篡改、泄露数据", + "C.加工数据形成衍生产品", + "D.转让数据权利获取对价" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 63 + }, + { + "title": "数据使用权一般是指权利人在什么前提下的内部使用权利", + "options": [ + "A.不对外提供数据", + "B.不加工处理数据", + "C.不存储备份数据", + "D.不分析挖掘数据" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 64 + }, + { + "title": "权利人通过转让、许可、出资等方式对外提供数据的权利是", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据经营权", + "D.数据收益权" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 65 + }, + { + "title": "衍生数据的核心形成条件是对原始数据进行", + "options": [ + "A.简单复制备份", + "B.内容、形式、结构的实质改变", + "C.格式转换", + "D.批量下载整理" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 66 + }, + { + "title": "企业数据是指企业在什么过程中形成或合法获取持有的数据", + "options": [ + "A.政府监管执法", + "B.生产经营活动", + "C.公益服务提供", + "D.行业自律管理" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 67 + }, + { + "title": "专门为数据供方、需方提供数据交易服务的专业机构是", + "options": [ + "A.数据第三方专业服务机构", + "B.数据交易机构", + "C.数据标注企业", + "D.算力服务提供商" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 68 + }, + { + "title": "数据场内交易的核心特征是", + "options": [ + "A.通过数据交易机构达成交易", + "B.交易价格公开透明", + "C.交易数据全部为公共数据", + "D.交易流程由政府监管" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 69 + }, + { + "title": "数据场外交易的核心定义是", + "options": [ + "A.交易价格不公开的交易", + "B.不通过数据交易机构达成的交易", + "C.交易数据不合法的交易", + "D.跨区域进行的交易" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 70 + }, + { + "title": "帮助数据供方和需方达成数据交易的行为被称为", + "options": [ + "A.数据交易撮合", + "B.数据合规认证", + "C.数据资产评估", + "D.数据安全审计" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 71 + }, + { + "title": "下列不属于数据第三方专业服务机构提供的服务是", + "options": [ + "A.数据经纪", + "B.合规认证", + "C.原始数据采集", + "D.争议调解" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 72 + }, + { + "title": "数据产业不包含下列哪个环节", + "options": [ + "A.数据采集汇聚", + "B.计算存储", + "C.通用硬件制造", + "D.安全治理" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 73 + }, + { + "title": "数据标注产业主要从事的数据加工处理工作是", + "options": [ + "A.建模分析", + "B.筛选、清洗、分类、注释、标记", + "C.流通交易", + "D.价值评估" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 74 + }, + { + "title": "数字产业集群的核心驱动因素是", + "options": [ + "A.资本投入", + "B.数据要素", + "C.政策支持", + "D.技术引进" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 75 + }, + { + "title": "可信数据空间不具备的核心能力是", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "16", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 76 + }, + { + "title": "数据使用控制可通过什么技术将数据使用意愿转化为可机读条款", + "options": [ + "A.区块链技术", + "B.智能合约技术", + "C.人工智能技术", + "D.云计算技术" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 77 + }, + { + "title": "数据基础设施是面向社会提供什么服务的新型基础设施", + "options": [ + "A.数据全生命周期", + "B.仅数据存储服务", + "C.仅数据计算服务", + "D.仅数据安全服务" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 78 + }, + { + "title": "算力调度的本质是", + "options": [ + "A.存储资源调度", + "B.计算任务调度", + "C.网络资源调度", + "D.数据资源调度" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 79 + }, + { + "title": "算力池化主要通过什么技术实现异构、异地算力资源的统一管理", + "options": [ + "A.算力虚拟化和应用容器化", + "B.分布式存储技术", + "C.边缘计算技术", + "D.量子计算技术" + ], + "type": "单选", + "answer": "A", + "source_id": "20", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 80 + }, + { + "title": "数据产权包含的财产性权利有", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据经营权", + "D.数据所有权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 81 + }, + { + "title": "衍生数据的形成方式包括", + "options": [ + "A.专业知识加工", + "B.建模分析", + "C.关键信息提取", + "D.简单复制粘贴" + ], + "type": "多选", + "answer": "ABC", + "source_id": "22", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 82 + }, + { + "title": "数据第三方专业服务机构可提供的服务有", + "options": [ + "A.质量评价", + "B.合规认证", + "C.原始数据采集", + "D.数据保险" + ], + "type": "多选", + "answer": "ABD", + "source_id": "23", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 83 + }, + { + "title": "数据产业涵盖的核心环节包括", + "options": [ + "A.流通交易", + "B.开发利用", + "C.安全治理", + "D.数据基础设施建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "24", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 84 + }, + { + "title": "可信数据空间的核心能力包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 85 + }, + { + "title": "数据使用控制可以对数据资产使用的哪些因素进行管控", + "options": [ + "A.时间和地点", + "B.主体和行为", + "C.客体", + "D.商业价值" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 86 + }, + { + "title": "数据基础设施集成的核心要素包括", + "options": [ + "A.硬件和软件", + "B.模型算法", + "C.标准规范", + "D.机制设计" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 87 + }, + { + "title": "下列关于数据场内交易与场外交易的表述,正确的有", + "options": [ + "A.场内交易通过数据交易机构达成", + "B.场外交易不通过数据交易机构达成", + "C.场内交易一定比场外交易合规", + "D.场外交易均属于非法交易" + ], + "type": "多选", + "answer": "AB", + "source_id": "28", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 88 + }, + { + "title": "下列关于数据使用权与数据经营权的区别,表述正确的有", + "options": [ + "A.使用权主要用于权利人内部使用", + "B.经营权是对外提供数据的权利", + "C.使用权可以自由转让给第三方", + "D.经营权包括许可他人使用数据的权利" + ], + "type": "多选", + "answer": "ABD", + "source_id": "29", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 89 + }, + { + "title": "某企业拟开展数据相关业务,下列行为符合名词定义规范的有", + "options": [ + "A.通过加工自有使用权数据形成衍生数据并对外提供", + "B.作为数据交易撮合方帮助供需双方达成交易", + "C.自行开展数据产权登记并出具登记凭证", + "D.通过算力池化技术统一管理企业内部异构算力资源" + ], + "type": "多选", + "answer": "ABD", + "source_id": "30", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 90 + }, + { + "title": "《国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知》的施行日期是", + "options": [ + "A.2025年1月16日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 91 + }, + { + "title": "公共数据运营服务费实行的价格管理方式是", + "options": [ + "A.市场调节价", + "B.政府定价", + "C.政府指导价", + "D.协商定价" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 92 + }, + { + "title": "公共数据资源授权运营中,用于______的数据产品和服务应当免费提供", + "options": [ + "A.产业发展", + "B.行业发展", + "C.商业经营", + "D.公共治理" + ], + "type": "单选", + "answer": "D", + "source_id": "3", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 93 + }, + { + "title": "地方定价目录内的公共数据运营服务费标准,原则上由______制定", + "options": [ + "A.县级发展改革部门", + "B.地级发展改革部门", + "C.省级发展改革部门会同数据管理等部门", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 94 + }, + { + "title": "核定公共数据运营最高准许收入遵循的原则是", + "options": [ + "A.保本微利", + "B.补偿成本、合理盈利", + "C.市场导向、自主定价", + "D.政府补贴、免费提供" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 95 + }, + { + "title": "最高准许收入的构成不包括", + "options": [ + "A.经营成本", + "B.准许利润", + "C.税金", + "D.政府补助" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 96 + }, + { + "title": "准许利润的计算基础是", + "options": [ + "A.营业收入", + "B.经营成本", + "C.净利润", + "D.总资产" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 97 + }, + { + "title": "准许利润率按照成本调查前一年10年期国债平均收益率加不超过______个百分点确定", + "options": [ + "A.3", + "B.4", + "C.5", + "D.6" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 98 + }, + { + "title": "公共数据运营服务费的定期评估周期原则上不超过", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 99 + }, + { + "title": "当年实际收入偏离最高准许收入______以上时,由授权主体调整上限收费标准", + "options": [ + "A.5%", + "B.10%", + "C.15%", + "D.20%" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 100 + }, + { + "title": "授权主体应当在每年______前报送上一年度运营机构经营情况报告", + "options": [ + "A.1月底", + "B.2月底", + "C.3月底", + "D.4月底" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 101 + }, + { + "title": "下列不属于公共数据运营服务费可采用的收费形式是", + "options": [ + "A.产品数量", + "B.服务次数", + "C.数据所有权转让", + "D.数据调用量" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 102 + }, + { + "title": "尚无完整年度运营情况的公共数据授权运营项目,应当制定", + "options": [ + "A.正式收费标准", + "B.试行收费标准", + "C.临时收费标准", + "D.市场调节价" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 103 + }, + { + "title": "上一评估周期内运营机构实际收入超过最高准许收入的部分,应当", + "options": [ + "A.全额上缴财政", + "B.在核定下一周期最高准许收入时予以扣减", + "C.作为运营机构超额利润留存", + "D.用于补贴公益类数据产品" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 104 + }, + { + "title": "下列关于公共数据运营服务费定价程序的表述,正确的是", + "options": [ + "A.运营机构直接制定具体收费标准", + "B.授权主体核定最高准许收入", + "C.发展改革部门会同数据管理部门核定最高准许收入", + "D.发展改革部门制定各类产品的上限收费标准" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 105 + }, + { + "title": "最高准许收入的构成包括", + "options": [ + "A.经营成本", + "B.准许利润", + "C.税金", + "D.政府补助" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 106 + }, + { + "title": "公共数据授权运营的经营成本主要包括", + "options": [ + "A.平台建设和运维成本", + "B.数据传输、汇聚、存储、治理成本", + "C.人力资源成本", + "D.获取公共数据资源的相关支出" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 107 + }, + { + "title": "制定公共数据运营服务费上限收费标准应统筹考虑的因素有", + "options": [ + "A.数据、算力、存储等资源使用", + "B.人力资源投入", + "C.销售规模", + "D.市场竞争程度" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 108 + }, + { + "title": "下列关于公共数据运营价格调整机制的表述,正确的有", + "options": [ + "A.评估周期原则上不超过3年", + "B.当年实际收入偏离10%及以下的,调整具体收费标准", + "C.当年实际收入偏离超过 10%的,调整上限收费标准", + "D.上一周期超额收入全部上缴财政" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 21, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 109 + }, + { + "title": "某运营机构获得公共数据资源授权运营资质,下列行为符合本通知规定的有", + "options": [ + "A.对用于公益事业的数据产品免费提供", + "B.在不高于上限标准的范围内确定具体收费标准", + "C.单独核算公共数据授权运营的成本和收入", + "D.自行制定并发布公共数据产品的上限收费标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 21, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 110 + }, + { + "title": "《公共数据资源授权运营实施规范(试行)》的施行日期是", + "options": [ + "A.2025年1月1日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 111 + }, + { + "title": "本规范所称授权运营,是指将______持有的公共数据资源授权符合条件的运营机构开发运营的活动", + "options": [ + "A.仅县级以上地方各级人民政府", + "B.仅国家行业主管部门", + "C.县级以上地方各级人民政府或国家行业主管部门", + "D.仅省级以上人民政府" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 112 + }, + { + "title": "下列不属于公共数据资源授权运营基本原则的是", + "options": [ + "A.依法合规", + "B.公益优先", + "C.市场主导", + "D.安全可控" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 113 + }, + { + "title": "负责全国公共数据资源授权运营工作统筹协调管理的部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.工业和信息化部", + "D.国务院办公厅" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 114 + }, + { + "title": "公共数据资源授权运营实施方案的牵头编制部门是", + "options": [ + "A.县级以上地方各级数据管理部门", + "B.县级以上地方各级人民政府", + "C.省级数据管理部门", + "D.国家行业主管部门" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 115 + }, + { + "title": "公共数据资源授权运营实施方案应按照______决策机制要求审议通过后实施", + "options": [ + "A.集体讨论", + "B.一把手负责制", + "C.三重一大", + "D.专家评审" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 116 + }, + { + "title": "实施机构选择运营机构应当采用的方式是", + "options": [ + "A.直接指定", + "B.公平竞争方式", + "C.内部推荐", + "D.协议转让" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 117 + }, + { + "title": "公共数据资源授权运营协议约定的运营期限原则上最长不超过", + "options": [ + "A.3年", + "B.5年", + "C.8年", + "D.10年" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 118 + }, + { + "title": "公共数据产品和服务价格应当按照______执行", + "options": [ + "A.市场调节价", + "B.政府定价", + "C.国家有关价格政策", + "D.运营机构自主定价" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 119 + }, + { + "title": "实施机构应当定期向社会披露的内容不包括", + "options": [ + "A.授权对象", + "B.授权内容", + "C.运营机构财务明细", + "D.授权时限" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 120 + }, + { + "title": "公共数据资源授权运营中,履行数据安全主体责任的是", + "options": [ + "A.实施机构", + "B.运营机构", + "C.数据管理部门", + "D.行业主管部门" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 121 + }, + { + "title": "本规范的解释部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.国务院办公厅", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 122 + }, + { + "title": "以政务数据共享方式获得的其他地区或部门的公共数据用于授权运营的,应当", + "options": [ + "A.直接使用", + "B.征得共享数据提供单位同意", + "C.报本级人民政府批准", + "D.报国家数据局备案" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 123 + }, + { + "title": "运营机构在授权范围内开展业务时,禁止实施的行为是", + "options": [ + "A.面向市场提供数据产品和服务", + "B.对原始公共数据进行治理加工", + "C.直接或间接参与已交付公共数据产品的再开发", + "D.公开数据产品和服务清单" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 124 + }, + { + "title": "下列关于公用企业公共数据资源开发利用的表述,正确的是", + "options": [ + "A.完全不适用本规范", + "B.必须严格按照本规范执行", + "C.可参考本规范有关程序要求授权使用", + "D.由企业自主决定无需政府监督" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 125 + }, + { + "title": "公共数据资源授权运营应当遵循的原则有", + "options": [ + "A.依法合规", + "B.公平公正", + "C.公益优先", + "D.合理收益" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 126 + }, + { + "title": "公共数据资源授权运营实施方案应当包括的内容有", + "options": [ + "A.授权运营模式", + "B.数据资源目录", + "C.收益分配机制", + "D.退出机制" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 127 + }, + { + "title": "公共数据资源授权运营协议应当明确的内容有", + "options": [ + "A.运营期限", + "B.资产权属", + "C.违约责任", + "D.争议解决方式" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 128 + }, + { + "title": "运营机构在运营过程中应当履行的义务有", + "options": [ + "A.公开公共数据产品和服务清单", + "B.履行数据安全主体责任", + "C.超授权范围使用数据提升价值", + "D.单独核算公共数据运营相关财务收支" + ], + "type": "多选", + "answer": "ABD", + "source_id": "19", + "page_number": 25, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 129 + }, + { + "title": "某省级数据管理部门组织开展公共数据授权运营,下列行为符合本规范要求的有", + "options": [ + "A.通过公开招标方式选择运营机构", + "B.授权运营期限约定为4年", + "C.要求运营机构不得参与已交付产品的再开发", + "D.允许运营机构自行决定公共数据产品价格" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 25, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 130 + }, + { + "title": "《公共数据资源登记管理暂行办法》的施行日期是", + "options": [ + "A.2025年1月1日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 131 + }, + { + "title": "本办法的解释部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.工业和信息化部", + "D.国务院办公厅" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 132 + }, + { + "title": "本办法所称登记机构是指由国家和地方数据管理部门设立或指定的提供登记服务的", + "options": [ + "A.企业法人", + "B.事业单位", + "C.社会团体", + "D.政府机关" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 133 + }, + { + "title": "下列不属于公共数据资源登记应当遵循的原则是", + "options": [ + "A.依法合规", + "B.公开透明", + "C.有偿服务", + "D.安全高效" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 134 + }, + { + "title": "中央和国家机关及其直属机构、中央企业的公共数据资源登记,由______指定所属事业单位负责办理", + "options": [ + "A.国务院办公厅", + "B.国家发展改革委", + "C.国家数据局", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 135 + }, + { + "title": "登记主体开展授权运营活动并交付数据产品和服务后,应当在______个工作日内提交首次登记申请", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 136 + }, + { + "title": "本办法施行前已开展授权运营的,登记主体应当在施行后______个工作日内按首次登记程序进行登记", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 137 + }, + { + "title": "登记机构应当自收到登记申请之日起______个工作日内予以受理", + "options": [ + "A.3", + "B.5", + "C.10", + "D.20" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 138 + }, + { + "title": "登记机构对登记材料进行形式审核的时限是自受理之日起______个工作日内", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 139 + }, + { + "title": "公共数据资源登记信息的公示期为______个工作日", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 140 + }, + { + "title": "登记机构应当自受理注销登记申请之日起______个工作日内完成注销", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 141 + }, + { + "title": "公共数据资源登记结果有效期原则上为", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 142 + }, + { + "title": "登记结果有效期届满需要续展的,登记主体应当在期满前______日内按照规定办理", + "options": [ + "A.30", + "B.60", + "C.90", + "D.120" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 143 + }, + { + "title": "利害关系人申请更正登记的,应当满足的条件是", + "options": [ + "A.自行提供更正内容", + "B.经登记主体书面同意或有证据证明登记信息确有错误", + "C.向数据管理部门提出申请", + "D.公示期内提出异议" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 144 + }, + { + "title": "下列关于公共数据资源登记程序的表述,正确的是", + "options": [ + "A.登记程序为申请、受理、实质审核、公示、赋码", + "B.公示期内提出异议的,登记机构应当直接终止登记", + "C.公示期满无异议的,登记机构发放统一编码的登记结果查询码", + "D.变更登记无需重新进行公示和赋码" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 145 + }, + { + "title": "公共数据资源登记应当遵循的原则有", + "options": [ + "A.依法合规", + "B.公开透明", + "C.标准规范", + "D.安全高效" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 146 + }, + { + "title": "公共数据资源登记申请类型主要包括", + "options": [ + "A.首次登记", + "B.变更登记", + "C.更正登记", + "D.注销登记" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 147 + }, + { + "title": "登记主体应当申请办理注销登记的情形有", + "options": [ + "A.公共数据资源不可复原或灭失的", + "B.登记主体放弃相关权益的", + "C.登记主体被依法撤销的", + "D.登记结果有效期届满未续展的" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 148 + }, + { + "title": "登记机构存在下列哪些行为的,将被数据管理部门采取管理措施", + "options": [ + "A.开展虚假登记", + "B.擅自篡改登记结果", + "C.私自泄露登记信息", + "D.优化登记服务流程" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 149 + }, + { + "title": "某市属事业单位获得公共数据授权运营资质,下列行为符合本办法要求的有", + "options": [ + "A.在交付数据产品后 20 个工作日内提交首次登记申请", + "B.对登记材料内容的真实性、完整性负责", + "C.登记结果有效期届满前 60日申请续展", + "D.自行修改已登记的公共数据资源信息" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 150 + }, + { + "title": "我国数据流通安全治理体系基本构建的目标时间是______年底", + "options": [ + "A.2025", + "B.2026", + "C.2027", + "D.2028" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 151 + }, + { + "title": "政务数据共享过程中,数据提供方应当遵循的安全责任原则是", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁负责", + "C.谁管理、谁负责", + "D.谁所有、谁负责" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 152 + }, + { + "title": "政务数据共享过程中,数据接收方应当遵循的安全责任原则是", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁管理、谁负责", + "C.谁所有、谁负责", + "D.谁审批、谁负责" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 153 + }, + { + "title": "为加强数据治理和数据开发利用,鼓励企事业单位设立的岗位是", + "options": [ + "A.首席信息官", + "B.首席数据官", + "C.首席安全官", + "D.首席技术官" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 154 + }, + { + "title": "经脱敏等技术处理后,依据行业分类分级标准重新识别为一般数据的,应当按照______开展流通交易", + "options": [ + "A.重要数据", + "B.敏感数据", + "C.一般数据", + "D.公共数据" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 155 + }, + { + "title": "个人数据流通应当依法依规取得个人同意,或者经过______处理", + "options": [ + "A.脱敏", + "B.加密", + "C.匿名化", + "D.去标识化" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 156 + }, + { + "title": "对于重要数据的价值开发,鼓励采用的流通方式是", + "options": [ + "A.原始数据自由流通", + "B.原始数据不出域、数据可用不可见、数据可控可计量", + "C.数据所有权转让", + "D.数据批量下载" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 157 + }, + { + "title": "下列技术手段中,不属于数据流通安全审计和溯源可应用的是", + "options": [ + "A.数字水印", + "B.数据指纹", + "C.区块链", + "D.量子计算" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 158 + }, + { + "title": "我国支持在______等区域开展数据流通安全治理先行先试", + "options": [ + "A.经济技术开发区", + "B.自由贸易试验区(港)", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 159 + }, + { + "title": "数据处理者对外提供重要数据时,应当采取必要的______措施", + "options": [ + "A.安全保护", + "B.商业加密", + "C.价值评估", + "D.收益分成" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 160 + }, + { + "title": "为确保政务数据安全共享,应当探索建立数据接收方数据安全管理______制度", + "options": [ + "A.备案", + "B.风险评估", + "C.审批", + "D.审计" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 161 + }, + { + "title": "为降低中小企业数据安全成本,鼓励有条件的企业拓展面向______的数据安全托管服务", + "options": [ + "A.大型企业", + "B.中小企业", + "C.政府部门", + "D.事业单位" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 162 + }, + { + "title": "数据流通安全治理工作应当将安全贯穿数据______全过程", + "options": [ + "A.供给、流通、使用", + "B.采集、存储、加工", + "C.传输、共享、销毁", + "D.全生命周期" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 163 + }, + { + "title": "下列关于公共数据授权运营安全管理的表述,正确的是", + "options": [ + "A.授权运营机构无需承担安全管理责任", + "B.应当明确授权运营机构的安全管理责任", + "C.无需加强关联风险识别和管控", + "D.公共数据授权运营无需建立安全管理制度" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 164 + }, + { + "title": "下列关于不同类型数据流通要求的表述,正确的是", + "options": [ + "A.一般数据必须通过数据交易所流通", + "B.重要数据可自由对外提供", + "C.未认定为重要数据的企业经营信息鼓励接入数据流通基础设施", + "D.个人数据无需取得同意即可流通" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 165 + }, + { + "title": "完善个人数据流通保障机制的措施包括", + "options": [ + "A.依法依规取得个人同意或经过匿名化处理", + "B.制定个人信息匿名化相关标准规范", + "C.鼓励采用国家网络身份认证公共服务", + "D.健全个人信息保护投诉举报渠道" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 166 + }, + { + "title": "政务数据共享过程中应当遵循的安全责任原则包括", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁管理、谁负责", + "C.谁所有、谁负责", + "D.谁审批、谁负责" + ], + "type": "多选", + "answer": "AB", + "source_id": "17", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 167 + }, + { + "title": "丰富数据流通安全服务供给的措施包括", + "options": [ + "A.培育数据流通安全检测评估、安全审计等服务", + "B.研究探索为数据安全提供保险保障的可行方案", + "C.鼓励拓展面向中小企业的数据安全托管服务", + "D.由政府统一提供所有数据安全服务" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 168 + }, + { + "title": "完善数据流通安全责任界定机制的措施包括", + "options": [ + "A.明确数据提供方确保数据来源合法的责任", + "B.明确数据接收方严格按要求使用数据的责任", + "C.鼓励在交易合同中约定双方权责范围", + "D.由政府统一承担所有安全责任" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 169 + }, + { + "title": "下列数据流通业务行为中,符合我国数据流通安全治理规定的有", + "options": [ + "A.通过强迫、欺诈方式取得个人同意后流通个人数据", + "B.按照规定识别、申报重要数据并接受监管检查", + "C.对外提供重要数据时采取必要的安全保护措施", + "D.通过原始数据不出域方式实现重要数据价值开发" + ], + "type": "多选", + "answer": "BCD", + "source_id": "20", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 170 + }, + { + "title": "我国基本建成国家数据基础设施主体结构的目标时间是______年", + "options": [ + "A.2026", + "B.2028", + "C.2029", + "D.2030" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 171 + }, + { + "title": "国家数据基础设施是面向社会提供______全生命周期服务的新型基础设施", + "options": [ + "A.数据采集、汇聚、传输、加工、流通、利用、运营、安全", + "B.数据采集、存储、计算、分析、应用、销毁", + "C.数据交易、结算、交付、运维、监管", + "D.算力调度、网络传输、应用开发、安全防护" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 172 + }, + { + "title": "国家数据基础设施具备的核心能力数量是", + "options": [ + "A.六大能力", + "B.八大能力", + "C.十大能力", + "D.十二大能力" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 173 + }, + { + "title": "2024-2026 年国家数据基础设施建设的核心任务是", + "options": [ + "A.基本建成主体结构", + "B.开展技术路线试点试验,制定统一标准规范", + "C.实现全国大中型城市基本覆盖", + "D.建成全国一体化算力网" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 174 + }, + { + "title": "下列不属于数据流通利用设施组成部分的是", + "options": [ + "A.可信数据空间", + "B.数场", + "C.数据元件", + "D.超级计算机" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 175 + }, + { + "title": "可信数据空间必须具备的三类核心能力不包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 176 + }, + { + "title": "依托开放性网络、算力和隐私保护计算等技术,提供线上线下全流程数据流通服务的综合性设施是", + "options": [ + "A.数场", + "B.数联网", + "C.数据元件", + "D.可信数据空间" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 177 + }, + { + "title": "算力底座建设重点推进的多元异构算力类型不包括", + "options": [ + "A.通用算力", + "B.智能算力", + "C.超级算力", + "D.边缘算力" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 178 + }, + { + "title": "推动国家枢纽节点和需求地之间应建设______高带宽全光连接", + "options": [ + "A.100G/200G", + "B.200G/400G", + "C.400G/800G", + "D.800G/1.6T" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 179 + }, + { + "title": "能够实现数据“可用不可见”的核心数据安全技术是", + "options": [ + "A.数据脱敏", + "B.隐私保护计算", + "C.数据水印", + "D.区块链" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 180 + }, + { + "title": "国家数据基础设施的主体构成是", + "options": [ + "A.企业数据基础设施", + "B.行业和区域数据基础设施", + "C.国家统一建设的核心设施", + "D.第三方服务机构建设的设施" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 181 + }, + { + "title": "建设数据流通利用设施底座必须遵循的“三个统一”要求不包括", + "options": [ + "A.统一目录标识", + "B.统一身份登记", + "C.统一接口要求", + "D.统一收费标准" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 182 + }, + { + "title": "算力与绿色电力融合的核心目标是", + "options": [ + "A.降低算力建设成本", + "B.把绿色电力转换成绿色算力", + "C.提高算力运行速度", + "D.扩大算力建设规模" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 183 + }, + { + "title": "国家数据基础设施安全防护体系的发展方向不包括", + "options": [ + "A.由静态保护向动态保护转变", + "B.由边界安全向内生安全转变", + "C.由开放环境保护向封闭环境保护转变", + "D.贯穿数据全生命周期各环节" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 184 + }, + { + "title": "下列关于国家数据基础设施建设的表述,正确的是", + "options": [ + "A.完全由政府投资建设运营", + "B.仅服务于政府部门和国有企业", + "C.由区域、行业、企业等各类数据基础设施共同构成", + "D.网络设施和算力设施不属于其相关范畴" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 185 + }, + { + "title": "国家数据基础设施的总体功能包括", + "options": [ + "A.数据可信流通", + "B.高效算力供给", + "C.数据高速传输", + "D.全程安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 186 + }, + { + "title": "数据流通利用核心技术主要包括", + "options": [ + "A.隐私保护计算", + "B.区块链", + "C.数据使用控制", + "D.量子计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 187 + }, + { + "title": "算力底座建设的重点方向包括", + "options": [ + "A.推进算力资源科学布局", + "B.推进东中西部算力协同", + "C.推进算力与数据、算法融合创新", + "D.推进算力与绿色电力融合" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 188 + }, + { + "title": "数据流通利用主流实践方案包括", + "options": [ + "A.可信数据空间", + "B.数场", + "C.数联网", + "D.数据元件" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 37, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 189 + }, + { + "title": "下列关于国家数据基础设施安全防护的表述,正确的有", + "options": [ + "A.构建多层次、全方位、立体化的安全保障框架", + "B.贯穿数据全生命周期各环节", + "C.综合利用隐私保护计算、区块链等技术手段", + "D.仅需保障数据安全,无需关注网络和算力安全" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 37, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 190 + }, + { + "title": "任何以电子或其他方式对信息的记录被称为", + "options": [ + "A.数据", + "B.数据资源", + "C.数据要素", + "D.数据资产" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 191 + }, + { + "title": "初次产生或源头收集、未经加工处理的数据是", + "options": [ + "A.衍生数据", + "B.原始数据", + "C.数据产品", + "D.数据资源" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 192 + }, + { + "title": "投入到生产经营活动、参与价值创造的数据资源是", + "options": [ + "A.数据产品", + "B.数据资产", + "C.数据要素", + "D.数据资源" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 193 + }, + { + "title": "特定主体合法拥有或控制、能进行货币计量且带来经济利益的数据资源是", + "options": [ + "A.数据要素", + "B.数据资产", + "C.数据产品", + "D.数据资源" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 194 + }, + { + "title": "在数据处理活动中自主决定处理目的和处理方式的个人或组织是", + "options": [ + "A.受托数据处理者", + "B.数据所有者", + "C.数据处理者", + "D.数据使用者" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 195 + }, + { + "title": "数据在不同主体之间流动的过程不包括", + "options": [ + "A.数据开放", + "B.数据共享", + "C.数据交易", + "D.数据存储" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 196 + }, + { + "title": "提升数据质量、安全、合规性,推动数据有效利用的过程是", + "options": [ + "A.数据治理", + "B.数据安全", + "C.数据处理", + "D.数据流通" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 197 + }, + { + "title": "各级党政机关、企事业单位依法履职或提供公共服务过程中产生的数据是", + "options": [ + "A.企业数据", + "B.公共数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 198 + }, + { + "title": "传统农业、工业、服务业应用数字技术、挖掘数据价值、提升全要素生产率的过程是", + "options": [ + "A.数字产业化", + "B.产业数字化", + "C.数字经济", + "D.数字消费" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 199 + }, + { + "title": "“东数西算”工程的核心是", + "options": [ + "A.在东部建设更多数据中心", + "B.将东部数据和需求放到西部计算处理", + "C.在西部建设更多算力需求", + "D.实现东西部算力平均分配" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 200 + }, + { + "title": "定义和描述特定数据的数据是", + "options": [ + "A.元数据", + "B.结构化数据", + "C.半结构化数据", + "D.非结构化数据" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 201 + }, + { + "title": "不具有预定义模型或未以预定义方式组织的数据是", + "options": [ + "A.结构化数据", + "B.半结构化数据", + "C.非结构化数据", + "D.元数据" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 202 + }, + { + "title": "专门用于存储大量原始数据和衍生数据,支持多种格式的高度可扩展存储架构是", + "options": [ + "A.数据仓库", + "B.数据湖", + "C.湖仓一体", + "D.数据库" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 203 + }, + { + "title": "多个参与方在保证原始私有数据不出可信域的前提下,协作完成机器学习任务的模式是", + "options": [ + "A.安全多方计算", + "B.联邦学习", + "C.可信执行环境", + "D.密态计算" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 204 + }, + { + "title": "下列关于区块链技术核心特性的表述,错误的是", + "options": [ + "A.多中心化", + "B.共识可信", + "C.可篡改", + "D.可追溯" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 205 + }, + { + "title": "数据处理的核心环节包括", + "options": [ + "A.收集", + "B.存储", + "C.使用", + "D.加工" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 206 + }, + { + "title": "结构化数据的主要特点包括", + "options": [ + "A.每个记录结构一致", + "B.可用关系模型有效描述", + "C.包含语义标记分隔字段", + "D.预定义组织方式" + ], + "type": "多选", + "answer": "AB", + "source_id": "17", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 207 + }, + { + "title": "隐私保护计算的常用技术方案包括", + "options": [ + "A.安全多方计算", + "B.联邦学习", + "C.可信执行环境", + "D.区块链" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 208 + }, + { + "title": "全国一体化算力网的典型特征包括", + "options": [ + "A.集约化", + "B.一体化", + "C.协同化", + "D.价值化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 41, + "source_file": "数据领域常用名词解释(第一批)", + "id": 209 + }, + { + "title": "下列关于湖仓一体存储架构的表述,正确的有", + "options": [ + "A.打通数据仓库和数据湖的技术壁垒", + "B.融合数据仓库的高性能与数据湖的灵活性", + "C.底层支持结构化、半结构化和非结构化数据并存", + "D.可同时支持实时查询和离线分析" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 41, + "source_file": "数据领域常用名词解释(第一批)", + "id": 210 + }, + { + "title": "数据采集技术创新主要依托的基础技术是", + "options": [ + "A.5", + "G、物联网", + "B.区块链、人工智能", + "C.云计算、边缘计算", + "D.大数据、量子计算" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 211 + }, + { + "title": "下列不属于数据存储技术创新方向的是", + "options": [ + "A.湖仓池一体", + "B.数据编织", + "C.数据压缩", + "D.联邦学习" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 212 + }, + { + "title": "数据治理领域创新的核心模式是", + "options": [ + "A.数据交易托管一体化", + "B.数据开发治理一体化", + "C.数据安全防护一体化", + "D.数据采集存储一体化" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 213 + }, + { + "title": "数据分析领域需要加速突破的实时检索分析技术是", + "options": [ + "A.关系型数据库", + "B.向量数据库", + "C.分布式数据库", + "D.时序数据库" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 214 + }, + { + "title": "数据交易领域重点培育的新业态不包括", + "options": [ + "A.数据经纪", + "B.数据托管", + "C.数据标注", + "D.数据资产评估" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 215 + }, + { + "title": "数据应用领域重点培育的新型服务模式是", + "options": [ + "A.软件即服务", + "B.平台即服务", + "C.数据即服务", + "D.基础设施即服务" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 216 + }, + { + "title": "下列属于数据安全领域可信流通技术的是", + "options": [ + "A.量子加密", + "B.多因子身份认证", + "C.隐私计算", + "D.容灾备份" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 217 + }, + { + "title": "数据治理领域支持人工智能技术应用的场景不包括", + "options": [ + "A.自动化数据处理", + "B.自动化数据标注", + "C.自动化模型构建", + "D.自动化数据交易" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 218 + }, + { + "title": "数据分析领域重点推进迭代创新的算法类型是", + "options": [ + "A.传统统计算法", + "B.预训练大模型算法", + "C.规则匹配算法", + "D.简单分类算法" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 219 + }, + { + "title": "数据安全领域重点推广应用的基础技术产品不包括", + "options": [ + "A.数据加密", + "B.防勒索", + "C.容灾备份", + "D.区块链" + ], + "type": "单选", + "answer": "D", + "source_id": "10", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 220 + }, + { + "title": "数据存储领域应面向什么需求提供全栈产品和解决方案", + "options": [ + "A.数据分类分级管理使用", + "B.数据交易流通", + "C.人工智能训练", + "D.边缘计算" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 221 + }, + { + "title": "下列属于数据安全领域服务业态的是", + "options": [ + "A.端到端加密", + "B.零信任安全", + "C.数据合规检测", + "D.量子加密" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 222 + }, + { + "title": "数据应用领域大力支持建设的核心资源是", + "options": [ + "A.通用计算平台", + "B.重点行业高质量数据集", + "C.分布式存储系统", + "D.区块链网络" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 223 + }, + { + "title": "下列关于数据技术和产业发展方向的表述,正确的是", + "options": [ + "A.数据采集应重点发展人工采集方式", + "B.数据分析应限制预训练大模型应用", + "C.数据安全应加快突破可信流通技术", + "D.数据交易应禁止第三方服务机构参与" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 224 + }, + { + "title": "下列技术中,同时属于数据分析和数据安全领域发展方向的是", + "options": [ + "A.边缘计算", + "B.区块链", + "C.人工智能", + "D.隐私计算" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 225 + }, + { + "title": "数据采集技术创新的重点方向包括", + "options": [ + "A.高精度采集", + "B.合规采集", + "C.自动识别采集", + "D.批量下载采集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 226 + }, + { + "title": "数据治理领域重点发展的技术和业态包括", + "options": [ + "A.数据清洗", + "B.质量检测", + "C.数据标注", + "D.数据交易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 227 + }, + { + "title": "数据分析领域重点发展的技术和应用包括", + "options": [ + "A.商业智能", + "B.数据可视化", + "C.多模态数据分析", + "D.预训练大模型" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 228 + }, + { + "title": "数据安全领域重点创新的技术包括", + "options": [ + "A.量子加密", + "B.多因子身份认证", + "C.零信任安全", + "D.数据冗余" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 45, + "source_file": "数据技术和产业重点发展方向", + "id": 229 + }, + { + "title": "下列关于数据技术和产业发展的表述,正确的有", + "options": [ + "A.深化产业发展、社会治理、公共服务等领域数据应用", + "B.支持大模型应用创新发展", + "C.提高第三方数据交易服务机构专业能力", + "D.限制人工智能技术在数据治理中的应用" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 45, + "source_file": "数据技术和产业重点发展方向", + "id": 230 + }, + { + "title": "到 2027 年,我国数据标注产业年均复合增长率目标是超过", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 231 + }, + { + "title": "数据标注产业的核心加工处理环节不包括", + "options": [ + "A.数据筛选", + "B.数据清洗", + "C.数据交易", + "D.质量检验" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 232 + }, + { + "title": "数据标注产业高质量发展坚持的工作原则不包括", + "options": [ + "A.有效市场和有为政府相结合", + "B.系统谋划和重点突破相结合", + "C.开放协作和安全发展相结合", + "D.政府主导和市场补充相结合" + ], + "type": "单选", + "answer": "D", + "source_id": "3", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 233 + }, + { + "title": "应当推动纳入政府采购范畴的数据服务是", + "options": [ + "A.数据存储服务", + "B.数据标注服务", + "C.数据计算服务", + "D.数据传输服务" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 234 + }, + { + "title": "实施“国有企业数据效能提升行动”的核心目的是", + "options": [ + "A.提升国有企业数据安全水平", + "B.释放企业数据标注需求", + "C.推动国有企业数字化转型", + "D.建立国有企业数据共享机制" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 235 + }, + { + "title": "数据标注领域关键技术攻关不包括", + "options": [ + "A.跨领域跨模态语义对齐", + "B.4D 标注", + "C.大模型标注", + "D.量子计算" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 236 + }, + { + "title": "数据标注标准体系建设的核心依据不包括", + "options": [ + "A.文本数据标注需求", + "B.图像数据标注需求", + "C.视频数据标注需求", + "D.区块链数据标注需求" + ], + "type": "单选", + "answer": "D", + "source_id": "7", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 237 + }, + { + "title": "数据标注产业应当着力培育壮大的经营主体类型不包括", + "options": [ + "A.龙头企业", + "B.科技创新型企业", + "C.瞪羚企业", + "D.数据交易中介机构" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 238 + }, + { + "title": "为降低数据标注企业成本,各地可充分利用的政策工具不包括", + "options": [ + "A.数据券", + "B.算法券", + "C.算力券", + "D.消费券" + ], + "type": "单选", + "answer": "D", + "source_id": "9", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 239 + }, + { + "title": "全国数据标注公共服务体系的建设目标是打造", + "options": [ + "A.全国数据标注公共服务“一张网”", + "B.全国统一数据标注交易平台", + "C.国家数据标注创新中心", + "D.国家数据标注产业基地" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 240 + }, + { + "title": "数据标注产业人才队 伍 建 设 应 当 制(修)定的核心标准是", + "options": [ + "A.数据标注相关职业国家职业标准", + "B.数据标注企业资质标准", + "C.数据标注产品质量标准", + "D.数据标注服务收费标准" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 241 + }, + { + "title": "统筹推进全国数据标注产业发展工作的牵头部门数量是", + "options": [ + "A.2个", + "B.3个", + "C.4个", + "D.5个" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 242 + }, + { + "title": "下列关于公共数据标注需求释放的表述,正确的是", + "options": [ + "A.禁止政府部门参与政务大模型数据标注", + "B.应当编制公共数据标注目录", + "C.公共数据标注需求仅面向政府内部", + "D.公共数据标注不得纳入政府采购" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 243 + }, + { + "title": "下列关于数据标注产业国际合作的表述,错误的是", + "options": [ + "A.开展数据标注科技人才国际交流", + "B.支持企事业单位牵头制定国际标准", + "C.禁止国内企业承接国际数据标注业务", + "D.深化技术及产业国际合作" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 244 + }, + { + "title": "下列关于数据标注产业安全发展的表述,正确的是", + "options": [ + "A.无需建立风险识别和监测预警机制", + "B.仅需落实数据提供方的安全责任", + "C.应当加强隐私保护和人工智能对齐能力建设", + "D.数据标注企业的相关权益不受法律保护" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 245 + }, + { + "title": "数据标注产业高质量发展坚持的工作原则包括", + "options": [ + "A.有效市场和有为政府相结合", + "B.系统谋划和重点突破相结合", + "C.开放协作和安全发展相结合", + "D.政府主导和市场补充相结合" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 246 + }, + { + "title": "数据标注领域智能化工具研发的重点方向包括", + "options": [ + "A.多模态标注", + "B.标注审查", + "C.质量评估", + "D.基于思维链的专家标注" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 247 + }, + { + "title": "加大数据标注产业财税金融支持力度的措施包括", + "options": [ + "A.落实研发费用加计扣除政策", + "B.利用数据券、算法券和算力券降低企业成本", + "C.引导社会资本有序参与产业投资", + "D.对所有数据标注企业免征企业所得税" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 248 + }, + { + "title": "加强数据标注人才队伍建设的措施包括", + "options": [ + "A.制(修)定相关职业国家职业标准", + "B.深化产学研融合建立长期合作机制", + "C.开展相关职业技能等级认定", + "D.支持分层次建设数据标注人才库" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 49, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 249 + }, + { + "title": "下列关于数据标注产业发展的表述,正确的有", + "options": [ + "A.培育壮大数据标注产业对人工智能创新发展具有重要支撑作用", + "B.应当支持跨部门跨地区跨层级公共数据融合应用", + "C.鼓励数据标注企业联合上下游建立协同创新基地", + "D.数据标注产业发展无需考虑安全问题" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 49, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 250 + }, + { + "title": "到 2028 年,我国计划建成______个以上可信数据空间", + "options": [ + "A.50", + "B.100", + "C.150", + "D.200" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 251 + }, + { + "title": "可信数据空间必须具备的三类核心能力不包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 252 + }, + { + "title": "负责可信数据空间日常运营和管理的主体是", + "options": [ + "A.数据提供方", + "B.数据使用方", + "C.可信数据空间运营者", + "D.数据服务方" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 253 + }, + { + "title": "下列不属于可信数据空间培育推广行动重点建设类型的是", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.国际可信数据空间", + "D.个人可信数据空间" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 254 + }, + { + "title": "服务领域可信数据空间重点培育的行业不包括", + "options": [ + "A.金融保险", + "B.商贸物流", + "C.医疗健康", + "D.房地产" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 255 + }, + { + "title": "稳慎探索个人可信数据空间建设试点的前提不包括", + "options": [ + "A.符合国家法律法规", + "B.充分尊重个人意愿", + "C.保护个人合法权益", + "D.强制个人数据共享" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 256 + }, + { + "title": "探索构建跨境可信数据空间,支持______出台实施数据出境管理负面清单", + "options": [ + "A.自由贸易试验区", + "B.经济技术开发区", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 257 + }, + { + "title": "可信数据空间标准化工作重点不包括", + "options": [ + "A.参考架构", + "B.功能要求", + "C.运营规范", + "D.收费标准" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 258 + }, + { + "title": "下列不属于可信数据空间核心技术攻关方向的是", + "options": [ + "A.使用控制", + "B.数据沙箱", + "C.量子计算", + "D.隐私计算" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 259 + }, + { + "title": "可信数据空间建设的主线是", + "options": [ + "A.深化数据要素市场化配置改革", + "B.推动数据要素畅通流动", + "C.建设可信可管的数据空间", + "D.释放数据要素价值" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 260 + }, + { + "title": "企业可信数据空间建设重点支持面向______提供普惠便利数据服务", + "options": [ + "A.大型企业", + "B.中小企业", + "C.国有企业", + "D.外资企业" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 261 + }, + { + "title": "工业领域可信数据空间建设的重点行业不包括", + "options": [ + "A.装备", + "B.新能源汽车", + "C.能源", + "D.纺织" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 262 + }, + { + "title": "城市可信数据空间建设鼓励探索的运营模式是", + "options": [ + "A.统一建设统一管理", + "B.分建统管、跨域协同", + "C.各自建设各自管理", + "D.政府全权运营" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 263 + }, + { + "title": "可信数据空间收益分配应当遵循的原则是", + "options": [ + "A.平均分配", + "B.市场评价贡献、贡献决定报酬", + "C.按投入资本分配", + "D.按参与人数分配" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 264 + }, + { + "title": "下列关于可信数据空间备案管理的表述,正确的是", + "options": [ + "A.所有数据空间无需备案", + "B.探索开展备案管理,动态发布备案名录", + "C.强制所有数据空间必须备案", + "D.备案由企业自主决定无需监管" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 265 + }, + { + "title": "可信数据空间国际合作依托的多边框架不包括", + "options": [ + "A.中欧", + "B.二十国集团", + "C.金砖国家", + "D.亚太经合组织" + ], + "type": "单选", + "answer": "D", + "source_id": "16", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 266 + }, + { + "title": "下列关于可信数据空间资金支持的表述,错误的是", + "options": [ + "A.统筹利用各类财政资金", + "B.引导社会资本投早投小", + "C.禁止金融机构参与", + "D.鼓励地方统筹多渠道资金" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 267 + }, + { + "title": "支持对数据流通利用全过程动态管控的可信数据空间核心能力是", + "options": [ + "A.可信管控能力", + "B.资源交互能力", + "C.价值共创能力", + "D.安全保障能力" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 268 + }, + { + "title": "下列关于可信数据空间发展目标的表述,正确的是", + "options": [ + "A.到2026年基本建成可信数据空间网络", + "B.到2028年初步形成与我国经济社会发展水平相适应的数据生态体系", + "C.到2030年建成全球领先的可信数据空间体系", + "D.到2025年建成50个以上可信数据空间" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 269 + }, + { + "title": "下列技术中,同时属于可信管控技术和资源互通支撑技术的是", + "options": [ + "A.区块链", + "B.数据标识", + "C.智能合约", + "D.隐私计算" + ], + "type": "单选", + "answer": "A", + "source_id": "20", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 270 + }, + { + "title": "可信数据空间必须具备的核心能力包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 271 + }, + { + "title": "可信数据空间培育推广行动重点建设的类型包括", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.城市可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 272 + }, + { + "title": "可信管控技术主要包括", + "options": [ + "A.使用控制", + "B.数据沙箱", + "C.智能合约", + "D.隐私计算" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "23", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 273 + }, + { + "title": "资源互通技术主要包括", + "options": [ + "A.数据标识", + "B.语义发现", + "C.元数据智能识别", + "D.密态计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 274 + }, + { + "title": "可信数据空间共性服务包括", + "options": [ + "A.接入认证", + "B.可信存证", + "C.资源目录", + "D.数据交易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 275 + }, + { + "title": "工业领域可信数据空间建设的重点行业包括", + "options": [ + "A.装备", + "B.新能源汽车", + "C.能源", + "D.电子信息" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 276 + }, + { + "title": "可信数据空间筑基行动包括的内容有", + "options": [ + "A.制订推广关键标准", + "B.开展核心技术攻关", + "C.完善基础服务", + "D.强化规范管理" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 277 + }, + { + "title": "可信数据空间保障措施包括", + "options": [ + "A.加强统筹联动", + "B.加大资金支持", + "C.加强人才培养", + "D.加强标杆引领" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 278 + }, + { + "title": "下列关于个人可信数据空间建设的表述,正确的有", + "options": [ + "A.研究制定个人数据开发利用政策文件", + "B.建立健全个人数据确权授权和合规利用机制", + "C.条件成熟时稳慎探索建设试点", + "D.强制所有个人数据纳入数据空间" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 279 + }, + { + "title": "下列关于可信数据空间规范管理的表述,正确的有", + "options": [ + "A.建立健全合规管理指引", + "B.明确参与各方责权边界", + "C.防范利用数据算法从事垄断行为", + "D.引导第三方开展核心能力评估" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "30", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 280 + }, + { + "title": "我国基本建成国家数据标准 体 系 的 目 标 时 间 是______年底", + "options": [ + "A.2025", + "B.2026", + "C.2027", + "D.2028" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 281 + }, + { + "title": "国家数据标准体系建设的主线是促进数据______", + "options": [ + "A.采集、存储、加工、分析", + "B.供得出、流得动、用得好、保安全", + "C.确权、定价、交易、流通", + "D.治理、开发、利用、保护" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 282 + }, + { + "title": "下列不属于国家数据标准体系结构组成部分的是", + "options": [ + "A.基础通用", + "B.数据基础设施", + "C.数据交易", + "D.安全保障" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 283 + }, + { + "title": "位于数据标准体系结构最左侧,支撑其他所有部分的是", + "options": [ + "A.基础通用标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 284 + }, + { + "title": "位于数据标准体系结构最顶端,聚焦重点行业领域的是", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.融合应用标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 285 + }, + { + "title": "位于数据标准体系结构最右端,为体系建设提供合规保障的是", + "options": [ + "A.数据基础设施标准", + "B.数据流通标准", + "C.融合应用标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 286 + }, + { + "title": "下列不属于基础通用标准范畴的是", + "options": [ + "A.术语标准", + "B.参考架构标准", + "C.数据确权标准", + "D.产业标准" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 287 + }, + { + "title": "下列不属于数据基础设施标准范畴的是", + "options": [ + "A.存算设施标准", + "B.网络设施标准", + "C.流通利用设施标准", + "D.数据治理标准" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 288 + }, + { + "title": "下列不属于数据资源标准范畴的是", + "options": [ + "A.基础资源标准", + "B.开发利用标准", + "C.数据流通交易标准", + "D.训练数据集标准" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 289 + }, + { + "title": "下列不属于数据技术标准范畴的是", + "options": [ + "A.数据汇聚技术标准", + "B.数据处理技术标准", + "C.数据资源定价标准", + "D.数据销毁技术标准" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 290 + }, + { + "title": "下列不属于数据流通标准范畴的是", + "options": [ + "A.数据产品标准", + "B.数据确权标准", + "C.数据运营技术标准", + "D.数据流通交易标准" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 291 + }, + { + "title": "下列不属于安全保障标准范畴的是", + "options": [ + "A.数据基础设施安全标准", + "B.数据要素市场安全标准", + "C.数据流通安全标准", + "D.数据应用技术标准" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 292 + }, + { + "title": "训练数据集标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 293 + }, + { + "title": "数据确权标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 294 + }, + { + "title": "数据授权运营标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 295 + }, + { + "title": "隐私计算标准属于国家数据标准体系中的", + "options": [ + "A.数据技术标准", + "B.数据流通标准", + "C.安全保障标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 296 + }, + { + "title": "到 2026 年底,我国计划制修订______项以上数据领域基础通用国家标准", + "options": [ + "A.20", + "B.30", + "C.40", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 297 + }, + { + "title": "下列不属于融合应用标准重点覆盖的行业领域是", + "options": [ + "A.工业制造", + "B.农业农村", + "C.房地产", + "D.绿色低碳" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 298 + }, + { + "title": "数据销毁技术标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 299 + }, + { + "title": "下列关于国家数据标准体系建设的表述,正确的是", + "options": [ + "A.数据标准体系仅包含技术标准,不包含管理和服务标准", + "B.融合应用标准聚焦12个重点行业领域", + "C.安全保障标准仅关注数据流通环节的安全", + "D.到2027年全面建成国家数据标准体系" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 300 + }, + { + "title": "国家数据标准体系建设的基本原则包括", + "options": [ + "A.顶层设计、协同推进", + "B.问题导向、务实有效", + "C.应用牵引、鼓励创新", + "D.立足国内、开放合作" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 301 + }, + { + "title": "国家数据标准体系结构的核心组成部分包括", + "options": [ + "A.基础通用、数据基础设施", + "B.数据资源、数据技术", + "C.数据流通、融合应用", + "D.安全保障" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 302 + }, + { + "title": "基础通用标准主要包括的内容有", + "options": [ + "A.术语、参考架构", + "B.管理、服务", + "C.产业", + "D.数据确权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 303 + }, + { + "title": "数据基础设施标准主要包括的内容有", + "options": [ + "A.存算设施标准", + "B.网络设施标准", + "C.流通利用设施标准", + "D.数据治理标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 304 + }, + { + "title": "数据资源标准主要包括的内容有", + "options": [ + "A.基础资源、开发利用", + "B.数据主体", + "C.数据治理", + "D.训练数据集" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 305 + }, + { + "title": "数据技术标准主要包括的内容有", + "options": [ + "A.数据汇聚、处理技术", + "B.数据流通、应用技术", + "C.数据运营、销毁技术", + "D.数据定价技术" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 306 + }, + { + "title": "数据流通标准主要包括的内容有", + "options": [ + "A.数据产品标准", + "B.数据确权标准", + "C.数据资源定价标准", + "D.数据流通交易标准" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 307 + }, + { + "title": "安全保障标准主要包括的内容有", + "options": [ + "A.数据基础设施安全标准", + "B.数据要素市场安全标准", + "C.数据流通安全标准", + "D.数据应用技术安全标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "28", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 308 + }, + { + "title": "训练数据集标准主要包括的内容有", + "options": [ + "A.采集处理标准", + "B.标注标准", + "C.合成标准", + "D.交易标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 309 + }, + { + "title": "到 2026 年底国家数据标准体系建设的目标包括", + "options": [ + "A.基本建成国家数据标准体系", + "B.制修订30 项以上基础通用国家标准", + "C.建成标准验证和应用服务平台", + "D.培育一批第三方标准化服务机构" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "30", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 310 + }, + { + "title": "公共数据资源开发利用的主线是", + "options": [ + "A.促进公共数据合规高效流通使用", + "B.扩大公共数据资源供给", + "C.推动公共数据授权运营", + "D.保障公共数据安全" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 311 + }, + { + "title": "公共数据资源开发利用到2025年的主要目标是", + "options": [ + "A.制度规则初步建立,要素作用初步显现", + "B.制度规则更加成熟,体系全面建成", + "C.实现全面开放共享,市场化机制完善", + "D.实现全球互联互通,国际规则主导" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 312 + }, + { + "title": "公共数据资源开发利用到2030年的主要目标是", + "options": [ + "A.制度规则初步建立", + "B.体系全面建成,要素作用充分发挥", + "C.完成试点探索", + "D.实现完全免费开放" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 313 + }, + { + "title": "政务数据共享应完善目录、实行统一管理,推动实现", + "options": [ + "A.一数一源", + "B.多源复用", + "C.统一存储", + "D.集中管控" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 314 + }, + { + "title": "公共数据开放应优先开放的类型是", + "options": [ + "A.与民生紧密相关、社会需求迫切的数据", + "B.涉密敏感数据", + "C.企业商业秘密数据", + "D.个人隐私数据" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 315 + }, + { + "title": "公共数据授权运营应落实的核心制度是", + "options": [ + "A.数据产权结构性分置制度", + "B.数据完全私有制度", + "C.政府全权所有制度", + "D.无偿使用制度" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 316 + }, + { + "title": "公共数据授权运营应纳入的决策范围是", + "options": [ + "A.三重一大", + "B.部门例会", + "C.专家评审", + "D.社会公示" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 317 + }, + { + "title": "对纳入授权运营范围的公共数据资源实行的管理制度是", + "options": [ + "A.登记制度", + "B.备案制度", + "C.审批制度", + "D.豁免制度" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 318 + }, + { + "title": "用于公共治理、公益事业的公共数据产品和服务原则上", + "options": [ + "A.有条件无偿使用", + "B.市场化定价", + "C.政府定价", + "D.成本价使用" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 319 + }, + { + "title": "用于产业发展、行业发展的公共数据经营性产品服务确需收费的,实行", + "options": [ + "A.政府指导定价管理", + "B.市场自主定价", + "C.免费提供", + "D.企业协商定价" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 320 + }, + { + "title": "公共数据资源开发利用应支持开发的政务服务模型是", + "options": [ + "A.人工智能政务服务大模型", + "B.传统统计模型", + "C.监管预警模型", + "D.决策分析模型" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 321 + }, + { + "title": "承担数据运营职责的事业单位在符合条件时可推进", + "options": [ + "A.转企改制", + "B.合并重组", + "C.撤销退出", + "D.升格扩编" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 322 + }, + { + "title": "公共数据开发利用全过程中,履行数据安全主体责任的是", + "options": [ + "A.运营机构", + "B.数据提供部门", + "C.监管部门", + "D.使用单位" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 323 + }, + { + "title": "全国公共数据资源开发利用统筹工作由______负责", + "options": [ + "A.国家数据局", + "B.国务院办公厅", + "C.工业和信息化部", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 324 + }, + { + "title": "统筹推进全国政务数据共享工作的部门是", + "options": [ + "A.国家数据局", + "B.国务院办公厅", + "C.财政部", + "D.公安部" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 325 + }, + { + "title": "加快公共数据资源开发利用应当坚持的原则包括", + "options": [ + "A.政府指导、市场驱动", + "B.尊重规律、守正创新", + "C.系统推进、高效协同", + "D.加快发展、维护安全" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 326 + }, + { + "title": "公共数据授权运营可采用的模式包括", + "options": [ + "A.整体授权", + "B.分领域授权", + "C.依场景授权", + "D.随机授权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 327 + }, + { + "title": "运营机构在公共数据授权运营中禁止的行为包括", + "options": [ + "A.达成垄断协议", + "B.滥用市场支配地位", + "C.实施不正当竞争", + "D.超范围使用数据" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 328 + }, + { + "title": "公共数据安全管理应建立健全的工作体系包括", + "options": [ + "A.分类分级", + "B.风险评估", + "C.监测预警", + "D.应急处置" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 63, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 329 + }, + { + "title": "国家支持数据产业发展可适用的优惠政策包括", + "options": [ + "A.研发费用加计扣除", + "B.高新技术企业税收优惠", + "C.免征所有税费", + "D.财政直接补贴" + ], + "type": "多选", + "answer": "AB", + "source_id": "20", + "page_number": 63, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 330 + }, + { + "title": "城市全域数字化转型全面突破的目标时间是______年", + "options": [ + "A.2025", + "B.2027", + "C.2030", + "D.2035" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 331 + }, + { + "title": "城市全域数字化转型建设主线是", + "options": [ + "A.数据融通、开发利用", + "B.平台建设、系统上云", + "C.设备改造、网络升级", + "D.财政投入、项目建设" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 332 + }, + { + "title": "城市数字化转型应构建的城市运行核心中枢是", + "options": [ + "A.城市运行和治理智能中枢", + "B.城市大数据中心", + "C.城市指挥中心", + "D.城市政务服务中心" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 333 + }, + { + "title": "城市治理应深化______建设,实现全过程数据融通", + "options": [ + "A.一网统管", + "B.一网通办", + "C.一网通享", + "D.一网通查" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 334 + }, + { + "title": "城市公共服务普惠化应探索以______为载体建立居民服务“一卡通”", + "options": [ + "A.社会保障卡", + "B.居民身份证", + "C.健康码", + "D.电子居住证" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 335 + }, + { + "title": "城市数字化转型应探索建设基 于 统 一 标 识 体 系 的______,实现“一码互联”", + "options": [ + "A.城市码", + "B.健康码", + "C.出行码", + "D.政务码" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 336 + }, + { + "title": "城市数字基础设施建设应深入实施______行动", + "options": [ + "A.城市云网强基", + "B.城市算力提升", + "C.城市感知覆盖", + "D.城市网络提速" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 337 + }, + { + "title": "城市数据要素赋能体系应加快完善______两级政务数据平台", + "options": [ + "A.省、市", + "B.市、县", + "C.国家、省", + "D.国家、市" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 338 + }, + { + "title": "城市数字化转型应统筹推进______公共数据授权运营", + "options": [ + "A.城市", + "B.省级", + "C.国家级", + "D.区县级" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 339 + }, + { + "title": "城市数字化转型应坚决杜绝______,确保务实见效", + "options": [ + "A.数字“形象工程”", + "B.重复建设工程", + "C.跨部门工程", + "D.市场化工程" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 340 + }, + { + "title": "城市绿色宜居环境建设应探索构建个人与企业的______应用", + "options": [ + "A.碳账户、碳足迹数据空间", + "B.绿色积分账户", + "C.环保信用账户", + "D.能耗监测账户" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 341 + }, + { + "title": "城市安全韧性建设应围绕“______”完善事件分类处置流程", + "options": [ + "A.高效处置一件事", + "B.高效办成一件事", + "C.高效监管一件事", + "D.高效服务一件事" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 342 + }, + { + "title": "城市数字化转型应统筹算力建设,对接______算力资源", + "options": [ + "A.国家枢纽节点", + "B.区域算力中心", + "C.城市算力中心", + "D.企业算力节点" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 343 + }, + { + "title": "城市数字化转型适数化制度创新应重点推进______建设应用", + "options": [ + "A.标准", + "B.立法", + "C.审批", + "D.监管" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 344 + }, + { + "title": "城市群数字一体化发展应优先在______等区域强化数据共享", + "options": [ + "A.长三角、粤港澳大湾区", + "B.京津冀、成渝", + "C.长江中游、山东半岛", + "D.中原、关中平原" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 345 + }, + { + "title": "城市全域数字化转型总体要求包括", + "options": [ + "A.整体性重塑技术架构", + "B.系统性变革管理流程", + "C.一体化推动产城融合", + "D.全流程强化项目建设" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 346 + }, + { + "title": "城市数字化共性基础应坚持“四统一”,包括", + "options": [ + "A.统一规划", + "B.统一架构", + "C.统一标准", + "D.统一运维" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 347 + }, + { + "title": "城市数字经济培育应重点发展的产业方向包括", + "options": [ + "A.智慧农业", + "B.工业互联网", + "C.数字服务业", + "D.新兴数字产业" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 348 + }, + { + "title": "城市安全韧性体系建设应强化的安全能力包括", + "options": [ + "A.物理空间安全管理", + "B.数字空间安全管理", + "C.数据安全体系建设", + "D.应急处置体系建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 67, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 349 + }, + { + "title": "城市数字化转型保障措施包括", + "options": [ + "A.加强组织实施", + "B.强化资金支持", + "C.建设数字人才队伍", + "D.杜绝形象工程" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 67, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 350 + }, + { + "title": "《“数据要素×”三年行动计划》实施周期是", + "options": [ + "A.2023—2025年", + "B.2024—2026年", + "C.2025—2027年", + "D.2026—2028年" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 351 + }, + { + "title": "到2026年底,我国计划打造______个以上数据要素典型应用场景", + "options": [ + "A.100", + "B.200", + "C.300", + "D.500" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 352 + }, + { + "title": "数据要素发挥的核心经济效应是", + "options": [ + "A.倍数效应", + "B.乘数效应", + "C.加法效应", + "D.递减效应" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 353 + }, + { + "title": "下列不属于“数据要素×”行动基本原则的是", + "options": [ + "A.需求牵引、注重实效", + "B.试点先行、重点突破", + "C.政府包办、企业执行", + "D.开放融合、安全有序" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 354 + }, + { + "title": "“数据要素×”行动以推动数据要素______为主线", + "options": [ + "A.高水平应用", + "B.高效率采集", + "C.高强度存储", + "D.低成本交易" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 355 + }, + { + "title": "到2026年底,我国数据产业年均增速目标是超过", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 356 + }, + { + "title": "“数据要素×工业制造”重点推动______标准生态系统建设", + "options": [ + "A.产品主数据", + "B.生产数据", + "C.供应链数据", + "D.质量数据" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 357 + }, + { + "title": "“数据要素×现代农业”核心目标是打造以______为支撑的智慧农业场景", + "options": [ + "A.数据和模型", + "B.资金和技术", + "C.土地和劳动力", + "D.政策和补贴" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 358 + }, + { + "title": "“数据要素×交通运输”重点推进______数据共享互认以提升联运效能", + "options": [ + "A.多式联运", + "B.单一公路", + "C.单一铁路", + "D.单一航空" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 359 + }, + { + "title": "“数据要素×金融服务”依托多源数据依法合规优化______业务", + "options": [ + "A.信贷与保险", + "B.证券与期货", + "C.基金与理财", + "D.信托与租赁" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 360 + }, + { + "title": "“数据要素×科技创新”重点支撑大模型开发所需的______建设", + "options": [ + "A.高质量语料库与科学数据集", + "B.通用数据库", + "C.图像数据库", + "D.语音数据库" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 361 + }, + { + "title": "“数据要素×医疗健康”探索推进______数据共享以提升就医便捷度", + "options": [ + "A.电子病历", + "B.医药采购", + "C.医保支付", + "D.医院管理" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 362 + }, + { + "title": "“数据要素×应急管理”利用多源数据实现对高危行业______精准监管", + "options": [ + "A.私挖盗采、明停暗开", + "B.安全生产标准化", + "C.员工培训", + "D.设备运维" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 363 + }, + { + "title": "“数据要素×绿色低碳”重点提升______精细化治理水平", + "options": [ + "A.生态环境", + "B.城市管理", + "C.产业发展", + "D.交通运行" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 364 + }, + { + "title": "推动数据要素安全流通的核心技术方向不包括", + "options": [ + "A.数据空间、隐私计算", + "B.联邦学习、区块链", + "C.数据沙箱", + "D.明文直传" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 365 + }, + { + "title": "“数据要素×”行动的基本原则包括", + "options": [ + "A.需求牵引、注重实效", + "B.试点先行、重点突破", + "C.有效市场、有为政府", + "D.开放融合、安全有序" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 366 + }, + { + "title": "到2026年底,“数据要素×”行动的总体目标包括", + "options": [ + "A.打造300个以上典型应用场景", + "B.数据产业年均增速超过20%", + "C.数据交易规模倍增", + "D.形成相对完善的数据产业生态" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 367 + }, + { + "title": "“数据要素×”行动强化保障支撑的重点任务包括", + "options": [ + "A.提升数据供给水平", + "B.优化数据流通环境", + "C.加强数据安全保障", + "D.扩大数据中心规模" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 368 + }, + { + "title": "数据要素安全流通重点应用的隐私增强技术包括", + "options": [ + "A.隐私计算、联邦学习", + "B.区块链、数据沙箱", + "C.数据空间", + "D.明文共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 71, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 369 + }, + { + "title": "“数据要素×”行动做好组织实施的举措包括", + "options": [ + "A.加强组织领导", + "B.开展试点工作", + "C.推动以赛促用", + "D.加强资金支持" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 71, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 370 + }, + { + "title": "到 2025 年底,国家枢纽节点新建数据中心绿电占比目标是超过", + "options": [ + "A.60%", + "B.70%", + "C.80%", + "D.90%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 371 + }, + { + "title": "深入实施“东数西算”工程的主线是", + "options": [ + "A.以算力高质量发展赋能经济高质量发展", + "B.以数据中心规模扩张为核心", + "C.以降低用电成本为首要任务", + "D.以扩大网络带宽为唯一目标" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 372 + }, + { + "title": "国家枢纽节点外原则上不得新建", + "options": [ + "A.大型及超大型数据中心", + "B.边缘数据中心", + "C.中小企业服务器", + "D.个人存储设备" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 373 + }, + { + "title": "到 2025 年底,国家枢纽节点地区各类新增算力占全国新增算力比例目标是", + "options": [ + "A.50%以上", + "B.60%以上", + "C.70%以上", + "D.80%以上" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 374 + }, + { + "title": "我国统筹建设的三类算力不包括", + "options": [ + "A.通用算力", + "B.智能算力", + "C.超级算力", + "D.量子算力" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 375 + }, + { + "title": "为降低中小企业算力成本,鼓励发放的政策工具是", + "options": [ + "A.算力券、运力券", + "B.消费券、购物券", + "C.电费券、水费券", + "D.税收减免券" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 376 + }, + { + "title": "算力电力协同重点支持的新型电力系统模式是", + "options": [ + "A.源网荷储", + "B.自发自用", + "C.孤网运行", + "D.直购电" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 377 + }, + { + "title": "构建可信计算网络环境优先应用的技术是", + "options": [ + "A.隐私计算、联邦学习、区块链", + "B.明文传输、共享存储", + "C.集中式数据库", + "D.传统防火墙" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 378 + }, + { + "title": "算力网时延目标中,跨国家枢纽节点算力网时延指标是", + "options": [ + "A.1ms", + "B.5ms", + "C.20ms", + "D.50ms" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 379 + }, + { + "title": "数据中心节能降耗优先推广的先进散热技术是", + "options": [ + "A.液冷技术", + "B.风冷技术", + "C.自然通风", + "D.空调降温" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 380 + }, + { + "title": "支持绿色数据中心等项目可探索发行的资产证券化产品是", + "options": [ + "A.REITs(不动产投资信托基金)", + "B.股票", + "C.债券", + "D.基金" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 381 + }, + { + "title": "提升算力网络传输效能重点部署的网络技术是", + "options": [ + "A.400G/800", + "G、全光网络、SRv6", + "B.百兆以太网", + "C.传统路由器", + "D.拨号网络" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 382 + }, + { + "title": "跨区域算力调度鼓励采用的协同方式是", + "options": [ + "A.点对点“结对子”", + "B.随机分配", + "C.政府指令分配", + "D.企业自由竞争" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 383 + }, + { + "title": "算网安全保障要求实现集群内网络和数据安全管理能力为", + "options": [ + "A.可知、可视、可管、可控、可溯", + "B.可存、可拷、可改、可删", + "C.可共享、可传播", + "D.可集中、可垄断" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 384 + }, + { + "title": "推动东部向西部迁移的业务类型不包括", + "options": [ + "A.低时延在线交易", + "B.人工智能模型训练推理", + "C.离线分析、存储备份", + "D.视频渲染" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 385 + }, + { + "title": "全国一体化算力网建设的基本原则包括", + "options": [ + "A.科学布局、有序发展", + "B.应用为先、提高效能", + "C.东西联动、融合创新", + "D.绿色低碳、安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 386 + }, + { + "title": "到 2025 年底算力网建设目标包括", + "options": [ + "A.多元算力加速向国家枢纽节点集聚", + "B.算力电力双向协同机制初步形成", + "C.枢纽节点间网络传输费用大幅降低", + "D.算力网关键核心技术基本安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 387 + }, + { + "title": "算力与绿色电力融合的主要措施包括", + "options": [ + "A.推进数据中心节能降碳改造", + "B.推广液冷等先进散热技术", + "C.利用源网荷储新型电力模式", + "D.开展绿电交易与碳汇补偿试点" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 388 + }, + { + "title": "算网安全保障体系建设重点包括", + "options": [ + "A.强化自主防护能力", + "B.建设攻防演习靶场", + "C.构建全生命周期安全管控", + "D.建立统一监测与应急处置" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 75, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 389 + }, + { + "title": "创新政策激励方式的举措包括", + "options": [ + "A.支持绿色数据中心发行 REITs", + "B.建立东西部算力对口联建计划", + "C.发放算力券、运力券补贴企业", + "D.打造算力“飞地”" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 75, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 390 + }, + { + "title": "数字经济促进共同富裕实施方案中,2025年发展目标聚焦缩小的四类差距不包括", + "options": [ + "A.区域差距", + "B.城乡差距", + "C.群体差距", + "D.行业差距" + ], + "type": "单选", + "answer": "D", + "source_id": "1", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 391 + }, + { + "title": "推进区域数字协同发展需深入实施的国家级工程是", + "options": [ + "A.东数西算工程", + "B.数字乡村工程", + "C.东数西存工程", + "D.东数西训工程" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 392 + }, + { + "title": "推进产业链数字化发展的核心载体平台是", + "options": [ + "A.工业互联网平台", + "B.电子商务平台", + "C.政务服务平台", + "D.大数据交易平台" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 393 + }, + { + "title": "数字乡村建设中,让手机成为“新农具”、直播带货成为“新农活”的抓手是", + "options": [ + "A.农民数字素养与技能培训", + "B.农村网络建设", + "C.智慧农业设备普及", + "D.农产品冷链建设" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 394 + }, + { + "title": "数字乡村产业发展重点实施的助农行动是", + "options": [ + "A.数商兴农", + "B.电商下乡", + "C.宽带乡村", + "D.智慧广电" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 395 + }, + { + "title": "强化数字素养提升中,面向老年人、残疾人开展的重点工程是", + "options": [ + "A.信息无障碍推广工程", + "B.数字技能普及工程", + "C.数字鸿沟弥合工程", + "D.数字服务普惠工程" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 396 + }, + { + "title": "促进社会服务普惠供给中,推动优质医疗资源下沉建成的五级网络是", + "options": [ + "A.省、市、县、乡、村远程医疗服务网络", + "B.国家、省、市、县、乡医疗网络", + "C.全国、区域、省、市、县医联体网络", + "D.公立、民营、社区、诊所、药店网络" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 397 + }, + { + "title": "数字化社会保障服务重点推进的通办事项是", + "options": [ + "A.社保“跨省通办”", + "B.医保“异地直接结算”", + "C.养老“全国漫游”", + "D.救助“全域通办”" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 398 + }, + { + "title": "数字经济促进共同富裕的组织保障依托的核心制度是", + "options": [ + "A.数字经济发展部际联席会议制度", + "B.数字乡村联席会议制度", + "C.东数西算统筹协调机制", + "D.共同富裕示范区工作机制" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 399 + }, + { + "title": "到 2025年,乡村医疗领域计划统筹建成的平台是", + "options": [ + "A.县域卫生健康综合信息平台", + "B.省级医疗大数据平台", + "C.国家级远程医疗平台", + "D.乡村卫生服务一体化平台" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 400 + }, + { + "title": "数字经济东西部协作的核心内容不包括", + "options": [ + "A.资金无偿划拨", + "B.产业互补", + "C.技术协作", + "D.人员互动" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 401 + }, + { + "title": "支持中小微企业数字化转型依托建设的核心机构是", + "options": [ + "A.数字化转型促进中心", + "B.行业协会", + "C.技术联盟", + "D.产业园区" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 402 + }, + { + "title": "提升乡村数字治理水平重点发展的金融服务是", + "options": [ + "A.农村数字普惠金融", + "B.农村小额信贷", + "C.农业保险", + "D.供应链金融" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 403 + }, + { + "title": "新就业形态劳动者权益保障需指导平台企业做到的核心要求是", + "options": [ + "A.依法合规制定并公开劳动规则", + "B.提高劳动报酬", + "C.统一社保缴纳", + "D.统一工作时长" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 404 + }, + { + "title": "数字经济促进共同富裕评价体系坚持的原则是", + "options": [ + "A.定量与定性、客观与主观相结合", + "B.以政府评价为主", + "C.以群众满意度为主", + "D.以经济效益为主" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 405 + }, + { + "title": "数字经济促进共同富裕需要弥合的核心差距包括", + "options": [ + "A.区域差距", + "B.城乡差距", + "C.群体差距", + "D.基本公共服务差距" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 406 + }, + { + "title": "推进区域数字协同发展的重点任务包括", + "options": [ + "A.推进数字基础设施建设", + "B.推进产业链数字化发展", + "C.加强数字经济东西部协作", + "D.推进跨境数字贸易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 407 + }, + { + "title": "数字乡村建设的重点方向包括", + "options": [ + "A.乡村产业数字化转型", + "B.农村数字人才培养", + "C.乡村数字治理提升", + "D.乡村人居环境整治" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 408 + }, + { + "title": "促进社会服务普惠供给的重点领域包括", + "options": [ + "A.数字教育资源共享", + "B.远程医疗服务供给", + "C.养老服务信息化", + "D.数字化社会保障" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 79, + "source_file": "数字经济促进共同富裕实施方案", + "id": 409 + }, + { + "title": "数字经济促进共同富裕的保障措施包括", + "options": [ + "A.加强组织领导", + "B.强化要素保障", + "C.建立评价体系", + "D.加大宣传力度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 79, + "source_file": "数字经济促进共同富裕实施方案", + "id": 410 + }, + { + "title": "GB/T35295-2017 定义的大数据 4个核心特征不包括", + "options": [ + "A.体量 (Volume)", + "B.多样性 (Variety)", + "C.速度 (Velocity)", + "D.价值 (Value)" + ], + "type": "单选", + "answer": "D", + "source_id": "1", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 411 + }, + { + "title": "大数据参考体系结构包含的逻辑功能构件数量是", + "options": [ + "A.3个", + "B.5个", + "C.7个", + "D.9个" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 412 + }, + { + "title": "负责将新的数据或信息引入大数据系统的角色是", + "options": [ + "A.系统协调者", + "B.数据提供者", + "C.大数据应用提供者", + "D.数据消费者" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 413 + }, + { + "title": "大数据生存周期模型的四个核心阶段不包括", + "options": [ + "A.收集", + "B.准备", + "C.分析", + "D.存储" + ], + "type": "单选", + "answer": "D", + "source_id": "4", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 414 + }, + { + "title": "\"读时模式\" 对应的大数据系统类型是", + "options": [ + "A.大数据卷系统", + "B.大数据动态应用系统", + "C.数据仓库系统", + "D.关系数据库系统" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 415 + }, + { + "title": "为提高性能而提升单节点处理速度、存储和内存等参数的扩展方式是", + "options": [ + "A.水平扩展", + "B.垂直扩展", + "C.分布式扩展", + "D.集群扩展" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 416 + }, + { + "title": "非关系模型也常被简称为", + "options": [ + "A.SQL", + "B.NoSQL", + "C.NewSQL", + "D.OLAP" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 417 + }, + { + "title": "处于网络传输或计算机内存中供读取更新状态的数据称为", + "options": [ + "A.静态数据", + "B.动态数据", + "C.流数据", + "D.元数据" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 418 + }, + { + "title": "对数据集的历史元数据进行讨论和追溯的术语是", + "options": [ + "A.元数据", + "B.数据溯源", + "C.追溯", + "D.数据血缘" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 419 + }, + { + "title": "大数据工程化的核心目标是构建具有什么特性的数据系统", + "options": [ + "A.高可用", + "B.可伸缩", + "C.高安全", + "D.高性能" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 420 + }, + { + "title": "GB/T35589-2017 定义的大数据参考架构围绕的两个核心价值链是", + "options": [ + "A.信息价值链和技术价值链", + "B.数据价值链和业务价值链", + "C.信息价值链和信息技术价值链", + "D.数据价值链和服务价值链" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 81, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 421 + }, + { + "title": "大数据应用提供者执行的核心活动不包括", + "options": [ + "A.收集", + "B.预处理", + "C.资源管理", + "D.访问" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 81, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 422 + }, + { + "title": "大数据框架提供者不包含的活动是", + "options": [ + "A.基础设施", + "B.平台", + "C.分析", + "D.资源管理" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 423 + }, + { + "title": "安全和隐私模块不包含的防护维度是", + "options": [ + "A.网络安全", + "B.主机安全", + "C.供应链安全", + "D.数据安全" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 424 + }, + { + "title": "管理模块提供的核心能力不包括", + "options": [ + "A.安装部署", + "B.监控告警", + "C.算法开发", + "D.权限管理" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 425 + }, + { + "title": "GB/T36073-2025 数据管理能力成熟度评估模型包含的能力域数量是", + "options": [ + "A.7个", + "B.8个", + "C.9个", + "D.10个" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 426 + }, + { + "title": "GB/T36073-2025 相比2018版新增的核心能力域是", + "options": [ + "A.数据战略", + "B.数据资产", + "C.数据安全", + "D.数据应用" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 427 + }, + { + "title": "DCMM 成熟度等级中,\"组织将数据视为实现战略目标的重要资产\" 对应的等级是", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 428 + }, + { + "title": "数据治理域2025 版新增的能力项是", + "options": [ + "A.数据治理组织", + "B.数据制度建设", + "C.数据文化建设", + "D.数据治理沟通" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 429 + }, + { + "title": "数据资产域不包含的能力项是", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据标准" + ], + "type": "单选", + "answer": "D", + "source_id": "20", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 430 + }, + { + "title": "数据应用流通域2025 版新增的能力项是", + "options": [ + "A.数据应用", + "B.外部数据管理", + "C.数据开放", + "D.数据服务" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 431 + }, + { + "title": "DCMM 数据管理能力成熟度的最高等级是", + "options": [ + "A.稳健级", + "B.量化管理级", + "C.优化级", + "D.卓越级" + ], + "type": "单选", + "answer": "C", + "source_id": "22", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 432 + }, + { + "title": "\"建立组织级数据目录\" 属于哪个成熟度等级的典型特征", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级" + ], + "type": "单选", + "answer": "C", + "source_id": "23", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 433 + }, + { + "title": "数据战略域包含的能力项不包括", + "options": [ + "A.数据战略规划", + "B.数据战略实施", + "C.数据战略评估", + "D.数据战略运营" + ], + "type": "单选", + "answer": "D", + "source_id": "24", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 434 + }, + { + "title": "数据安全域的三个核心能力项是", + "options": [ + "A.数据合规管理、数据安全防护、数据安全审计", + "B.数据安全策略、数据安全管理、数据安全审计", + "C.数据加密、数据脱敏、数据备份", + "D.访问控制、身份认证、日志审计" + ], + "type": "单选", + "answer": "A", + "source_id": "25", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 435 + }, + { + "title": "数据生存周期域的最后一个阶段是", + "options": [ + "A.数据运维", + "B.数据设计与开发", + "C.数据退役", + "D.数据销毁" + ], + "type": "单选", + "answer": "C", + "source_id": "26", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 436 + }, + { + "title": "负责明确数据资产持有主体、使用主体和经营主体的能力项是", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据治理" + ], + "type": "单选", + "answer": "A", + "source_id": "27", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 437 + }, + { + "title": "\"将发展数据业务纳入组织业务范畴,培育数据驱动的新产品与服务\" 属于哪个成熟度等级", + "options": [ + "A.受管理级", + "B.稳健级", + "C.量化管理级", + "D.优化级" + ], + "type": "单选", + "answer": "C", + "source_id": "28", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 438 + }, + { + "title": "数据标准域不包含的能力项是", + "options": [ + "A.业务术语", + "B.主数据", + "C.元数据", + "D.指标数据" + ], + "type": "单选", + "answer": "C", + "source_id": "29", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 439 + }, + { + "title": "数据质量域的四个能力项是", + "options": [ + "A.数据质量需求、数据质量检查、数据质量分析、数据质量提升", + "B.数据质量规划、数据质量控制、数据质量改进、数据质量评估", + "C.数据质量标准、数据质量检测、数据质量报告、数据质量整改", + "D.数据质量设计、数据质量实施、数据质量监控、数据质量优化" + ], + "type": "单选", + "answer": "A", + "source_id": "30", + "page_number": 85, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 440 + }, + { + "title": "GB/T37721-2019 定义的大数据分析系统核心模块不包括", + "options": [ + "A.数据准备模块", + "B.分析支撑模块", + "C.资源管理模块", + "D.流程编排模块" + ], + "type": "单选", + "answer": "C", + "source_id": "31", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 441 + }, + { + "title": "数据准备模块的功能不包括", + "options": [ + "A.数据抽取", + "B.数据清洗", + "C.数据建模", + "D.数据加载" + ], + "type": "单选", + "answer": "C", + "source_id": "32", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 442 + }, + { + "title": "分析支撑模块的机器学习功能不要求支持", + "options": [ + "A.回归与分类算法", + "B.聚类算法", + "C.强化学习算法", + "D.降维算法" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 443 + }, + { + "title": "数据分析模块包含的三种核心分析模式不包括", + "options": [ + "A.离线数据分析", + "B.流数据分析", + "C.交互式联机分析", + "D.实时数据分析" + ], + "type": "单选", + "answer": "D", + "source_id": "34", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 444 + }, + { + "title": "流数据分析要求支持的核心窗口方式是", + "options": [ + "A.滑动窗口", + "B.固定窗口", + "C.跳跃窗口", + "D.滚动窗口" + ], + "type": "单选", + "answer": "A", + "source_id": "35", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 445 + }, + { + "title": "预测型分析结果的准确率要求精确到小数点后至少", + "options": [ + "A.1 位", + "B.2 位", + "C.3 位", + "D.4 位" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 446 + }, + { + "title": "流程编排模块的核心功能是", + "options": [ + "A.数据处理流程可视化编排", + "B.算法开发", + "C.数据可视化", + "D.资源调度" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 447 + }, + { + "title": "统计分析功能不要求支持的统计量是", + "options": [ + "A.最大值、最小值", + "B.平均数、中位数", + "C.方差、标准差", + "D.峰度、偏度" + ], + "type": "单选", + "answer": "D", + "source_id": "38", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 448 + }, + { + "title": "GB/T37722-2019 定义的大数据存储子系统不包含的存储类型是", + "options": [ + "A.分布式文件存储", + "B.分布式结构化数据存储", + "C.分布式对象存储", + "D.分布式图数据存储" + ], + "type": "单选", + "answer": "C", + "source_id": "39", + "page_number": 86, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 449 + }, + { + "title": "大数据处理子系统不包含的计算框架是", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.边缘计算框架", + "D.内存计算框架" + ], + "type": "单选", + "answer": "C", + "source_id": "40", + "page_number": 86, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 450 + }, + { + "title": "分布式图数据存储的核心数据模型是", + "options": [ + "A.键值模型", + "B.节点和边模型", + "C.关系模型", + "D.文档模型" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 451 + }, + { + "title": "批处理的核心处理方式是", + "options": [ + "A.分散 - 聚集", + "B.实时计算", + "C.增量计算", + "D.流式计算" + ], + "type": "单选", + "answer": "A", + "source_id": "42", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 452 + }, + { + "title": "能够同时支持批处理和流处理的统一计算框架是", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.批流融合计算框架", + "D.内存计算框架" + ], + "type": "单选", + "answer": "C", + "source_id": "43", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 453 + }, + { + "title": "内存计算的核心特点是", + "options": [ + "A.优先使用内存进行计算", + "B.优先使用磁盘进行计算", + "C.分布式计算", + "D.并行计算" + ], + "type": "单选", + "answer": "A", + "source_id": "44", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 454 + }, + { + "title": "分布式列式数据存储的基本存储形式是", + "options": [ + "A.二维表", + "B.键值对", + "C.文档", + "D.图" + ], + "type": "单选", + "answer": "B", + "source_id": "45", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 455 + }, + { + "title": "GB/T38673-2020 定义的大数据系统划分的功能模块数量是", + "options": [ + "A.7个", + "B.8个", + "C.9个", + "D.10个" + ], + "type": "单选", + "answer": "C", + "source_id": "46", + "page_number": 87, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 456 + }, + { + "title": "大数据系统的非功能要求不包括", + "options": [ + "A.可靠性", + "B.兼容性", + "C.功能性", + "D.可扩展性" + ], + "type": "单选", + "answer": "C", + "source_id": "47", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 457 + }, + { + "title": "可靠性要求中的高可用核心是确保", + "options": [ + "A.系统组件不存在单点故障", + "B.数据多副本存储", + "C.自动备份恢复", + "D.故障自动迁移" + ], + "type": "单选", + "answer": "A", + "source_id": "48", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 458 + }, + { + "title": "安全性要求中的权限管理最小粒度是", + "options": [ + "A.系统级", + "B.数据库级", + "C.数据表级", + "D.数据列级" + ], + "type": "单选", + "answer": "D", + "source_id": "49", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 459 + }, + { + "title": "可扩展性要求的核心是支持", + "options": [ + "A.集群在线扩容和减容", + "B.硬件升级", + "C.软件更新", + "D.功能扩展" + ], + "type": "单选", + "answer": "A", + "source_id": "50", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 460 + }, + { + "title": "大数据的 4V 核心特征包括", + "options": [ + "A.体量 (Volume)", + "B.多样性 (Variety)", + "C.速度 (Velocity)", + "D.多变性 (Variability)" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "51", + "page_number": 88, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 461 + }, + { + "title": "大数据参考体系结构的逻辑功能构件包括", + "options": [ + "A.系统协调者", + "B.数据提供者", + "C.大数据应用提供者", + "D.大数据框架提供者", + "E.数据消费者" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "52", + "page_number": 88, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 462 + }, + { + "title": "大数据框架提供者提供的核心框架类型包括", + "options": [ + "A.基础设施框架", + "B.数据平台框架", + "C.处理框架", + "D.消息/通信框架" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "53", + "page_number": 89, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 463 + }, + { + "title": "大数据参考架构的两个核心价值链是", + "options": [ + "A.信息价值链", + "B.数据价值链", + "C.信息技术价值链", + "D.业务价值链" + ], + "type": "多选", + "answer": "AC", + "source_id": "54", + "page_number": 89, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 464 + }, + { + "title": "大数据应用提供者的核心活动包括", + "options": [ + "A.收集", + "B.预处理", + "C.分析", + "D.可视化", + "E.访问" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "55", + "page_number": 89, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 465 + }, + { + "title": "GB/T36073-2025 包含的核心能力域有", + "options": [ + "A.数据战略、数据治理", + "B.数据架构、数据资产", + "C.数据标准、数据质量", + "D.数据安全、数据生存周期", + "E.数据应用流通" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "56", + "page_number": 89, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 466 + }, + { + "title": "DCMM2025 版相比 2018 版的主要技术变化包括", + "options": [ + "A.新增数据资产能力域", + "B.新增数据文化建设能力项", + "C.新增外部数据管理能力项", + "D.将数据应用能力域更改为数据应用流通能力域" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "57", + "page_number": 89, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 467 + }, + { + "title": "DCMM 数据管理能力成熟度等级包括", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级", + "E.优化级" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "58", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 468 + }, + { + "title": "数据资产域的核心能力项包括", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据服务" + ], + "type": "多选", + "answer": "ABC", + "source_id": "59", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 469 + }, + { + "title": "数据治理域的核心能力项包括", + "options": [ + "A.数据治理组织", + "B.数据制度建设", + "C.数据文化建设", + "D.数据治理沟通" + ], + "type": "多选", + "answer": "ABC", + "source_id": "60", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 470 + }, + { + "title": "大数据分析系统的数据准备模块核心功能包括", + "options": [ + "A.数据抽取", + "B.数据清洗", + "C.数据转换", + "D.数据加载" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 471 + }, + { + "title": "分析支撑模块的核心功能包括", + "options": [ + "A.查询", + "B.机器学习", + "C.统计分析", + "D.可视化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "62", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 472 + }, + { + "title": "数据分析模块的核心分析类型包括", + "options": [ + "A.预测型分析", + "B.描述型分析", + "C.诊断型分析", + "D.prescriptive分析" + ], + "type": "多选", + "answer": "AB", + "source_id": "63", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 473 + }, + { + "title": "大数据存储子系统的核心存储类型包括", + "options": [ + "A.分布式文件存储", + "B.分布式结构化数据存储", + "C.分布式列式数据存储", + "D.分布式图数据存储" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "64", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 474 + }, + { + "title": "大数据处理子系统的核心计算框架包括", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.图计算框架", + "D.内存计算框架", + "E.批流融合计算框架" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "65", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 475 + }, + { + "title": "批流融合计算框架的核心要求包括", + "options": [ + "A.支持批流融合统一查询 SQL 语言", + "B.支持常用时间窗口", + "C.支持事件驱动的流处理", + "D.支持处理乱序事件流" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "66", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 476 + }, + { + "title": "大数据系统的核心功能模块包括", + "options": [ + "A.数据收集、数据预处理", + "B.数据存储、数据处理", + "C.数据分析、数据可视化", + "D.数据访问、资源管理、系统管理" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 91, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 477 + }, + { + "title": "大数据系统的核心非功能要求包括", + "options": [ + "A.可靠性", + "B.兼容性", + "C.安全性", + "D.可扩展性", + "E.维护性、易用性" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "68", + "page_number": 91, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 478 + }, + { + "title": "安全性要求中的用户管理内容包括", + "options": [ + "A.身份标识和鉴别", + "B.密码复杂度要求", + "C.登录失败处理", + "D.权限最小化分配" + ], + "type": "多选", + "answer": "ABC", + "source_id": "69", + "page_number": 92, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 479 + }, + { + "title": "可靠性要求包括的核心方面有", + "options": [ + "A.高可用", + "B.数据冗余存储与分布", + "C.数据备份和恢复", + "D.故障恢复与迁移" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "70", + "page_number": 92, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 480 + }, + { + "title": "到 2026 年,厦门市数字经济增加值占 GDP 比重目标为超过____", + "options": [ + "A.57%", + "B.60%", + "C.65%", + "D.70%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 481 + }, + { + "title": "到 2026 年,厦门市公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.3000", + "B.5000", + "C.8000", + "D.10000" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 482 + }, + { + "title": "厦门市试点建设____,打通公共数据汇聚共享堵点", + "options": [ + "A.数据高铁", + "B.数据高速", + "C.数据快线", + "D.数据通道" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 483 + }, + { + "title": "到 2026 年,厦门市数据交易平台上线数据产品累计目标超过____个", + "options": [ + "A.800", + "B.1000", + "C.1300", + "D.2500" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 484 + }, + { + "title": "到 2026 年,厦门市培育公共数据赋能产业发展典型应用场景目标为____个以上", + "options": [ + "A.20", + "B.30", + "C.50", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 485 + }, + { + "title": "到 2026 年,厦门市关键环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 486 + }, + { + "title": "厦门市将打造____供应链金融创新中心平台", + "options": [ + "A.鹭江", + "B.思明", + "C.湖里", + "D.集美" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 487 + }, + { + "title": "到 2026 年,厦门市累计推出____项“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "C", + "source_id": "8", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 488 + }, + { + "title": "厦门市将加快建设____数字街区", + "options": [ + "A.海丝", + "B.金砖", + "C.两岸", + "D.自贸" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 489 + }, + { + "title": "到 2026 年,厦门市农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 490 + }, + { + "title": "我国将深入实施____行动,全方位赋能千行百业", + "options": [ + "A.数字经济 +", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造 +" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 94, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 491 + }, + { + "title": "我国将建立全国数据资源____管理体系", + "options": [ + "A.一本账", + "B.一张网", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 94, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 492 + }, + { + "title": "我国将实施____发展行动计划", + "options": [ + "A.可信数据空间", + "B.数据要素流通", + "C.人工智能大模型", + "D.工业互联网" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 493 + }, + { + "title": "制造业数字化转型的核心要求是____", + "options": [ + "A.数字化、网络化、智能化", + "B.智改数转网联", + "C.智能制造工程", + "D.工业互联网创新" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 494 + }, + { + "title": "“人工智能 +”行动不包括以下哪个领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.乡村振兴" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 495 + }, + { + "title": "到 2030 年,厦门市人工智能核心产业规模目标达到____亿元", + "options": [ + "A.500", + "B.650", + "C.850", + "D.1000" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 496 + }, + { + "title": "到 2030 年,厦门市智能体应用普及率目标超过____", + "options": [ + "A.70%", + "B.80%", + "C.90%", + "D.95%" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 497 + }, + { + "title": "厦门市将打造全市____物联感知体系", + "options": [ + "A.一张网", + "B.一本账", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 498 + }, + { + "title": "“十五五”期间厦门市新增算力目标为____PFLOPS 以上", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 499 + }, + { + "title": "厦门市将建设国际物流供应链国家人工智能应用____基地", + "options": [ + "A.研发", + "B.中试", + "C.示范", + "D.产业化" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 500 + }, + { + "title": "到 2030 年,厦门市目标培育____个优秀行业模型和智能体", + "options": [ + "A.30", + "B.50", + "C.80", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 501 + }, + { + "title": "“数据要素×”行动的核心是通过数据多场景应用实现对经济发展的____效应", + "options": [ + "A.叠加", + "B.倍增", + "C.乘数", + "D.指数" + ], + "type": "单选", + "answer": "B", + "source_id": "22", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 502 + }, + { + "title": "数字中国建设按照____整体框架进行布局", + "options": [ + "A.2322", + "B.2522", + "C.3522", + "D.2532" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 96, + "source_file": "数字中国建设整体布局规划", + "id": 503 + }, + { + "title": "数字中国建设的“两大基础”是数字基础设施和____", + "options": [ + "A.数据资源体系", + "B.技术创新体系", + "C.安全保障体系", + "D.治理体系" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 96, + "source_file": "数字中国建设整体布局规划", + "id": 504 + }, + { + "title": "到____年,数字化发展水平进入世界前列", + "options": [ + "A.2025", + "B.2030", + "C.2035", + "D.2050" + ], + "type": "单选", + "answer": "C", + "source_id": "25", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 505 + }, + { + "title": "数字中国建设的战略路径不包括____", + "options": [ + "A.夯实基础", + "B.赋能全局", + "C.强化能力", + "D.深化改革" + ], + "type": "单选", + "answer": "D", + "source_id": "26", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 506 + }, + { + "title": "数字中国建设要强化数字技术创新体系和____“两大能力”", + "options": [ + "A.数字治理体系", + "B.数字安全屏障", + "C.数字产业体系", + "D.数字服务体系" + ], + "type": "单选", + "answer": "B", + "source_id": "27", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 507 + }, + { + "title": "要引导通用数据中心、超算中心、智能计算中心、____等合理梯次布局", + "options": [ + "A.边缘数据中心", + "B.分布式数据中心", + "C.绿色数据中心", + "D.算力中心" + ], + "type": "单选", + "answer": "A", + "source_id": "28", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 508 + }, + { + "title": "到 2026 年,福建省数字经济增加值占 GDP 比重目标为____左右", + "options": [ + "A.50%", + "B.57%", + "C.60%", + "D.65%" + ], + "type": "单选", + "answer": "B", + "source_id": "29", + "page_number": 97, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 509 + }, + { + "title": "到 2026 年,福建省公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.5000", + "B.8000", + "C.10000", + "D.15000" + ], + "type": "单选", + "answer": "C", + "source_id": "30", + "page_number": 97, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 510 + }, + { + "title": "到 2026 年,福建省数据中心平均 PUE 值目标低于____", + "options": [ + "A.1.3", + "B.1.35", + "C.1.4", + "D.1.45" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 511 + }, + { + "title": "福建省大数据交易所采用____建设模式", + "options": [ + "A.一所一站", + "B.一所多站", + "C.多所多站", + "D.区域联盟" + ], + "type": "单选", + "answer": "B", + "source_id": "32", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 512 + }, + { + "title": "到 2026 年,福建省大数据交易所拓展数商目标超过____家", + "options": [ + "A.500", + "B.800", + "C.1000", + "D.1500" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 513 + }, + { + "title": "福建省打造____数据可信智能链网平台", + "options": [ + "A.数通八闽", + "B.福数通", + "C.闽数通", + "D.数字福建" + ], + "type": "单选", + "answer": "A", + "source_id": "34", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 514 + }, + { + "title": "到 2026 年,福建省关键业务环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "B", + "source_id": "35", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 515 + }, + { + "title": "福建省推广____公众养老服务品牌", + "options": [ + "A.福见康养", + "B.闽康养", + "C.智慧养老", + "D.数字养老" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 516 + }, + { + "title": "福建省打造____省域治理智能化中枢平台", + "options": [ + "A.闽数治", + "B.福数治", + "C.数字福建", + "D.智慧福建" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 99, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 517 + }, + { + "title": "厦门市将建立____科技攻关新机制", + "options": [ + "A.揭榜挂帅", + "B.企业界出题、科技界答题", + "C.赛马制", + "D.定向委托" + ], + "type": "单选", + "answer": "B", + "source_id": "38", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 518 + }, + { + "title": "厦门市将前瞻部署____网络试点", + "options": [ + "A.5G", + "B.5G-A", + "C.6G", + "D.万兆光网" + ], + "type": "单选", + "answer": "D", + "source_id": "39", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 519 + }, + { + "title": "到 2026 年,厦门市限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.28.5%", + "B.30%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "40", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 520 + }, + { + "title": "厦门市将升级构建企业____事务协调服务平台", + "options": [ + "A.窗内", + "B.窗外", + "C.线上", + "D.线下" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 521 + }, + { + "title": "到 2026 年,厦门市“数据最多采一次”覆盖目标超过____政务服务办件量", + "options": [ + "A.90%", + "B.95%", + "C.98%", + "D.100%" + ], + "type": "单选", + "answer": "B", + "source_id": "42", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 522 + }, + { + "title": "厦门市将实现区级以上公共文化场馆数字化服务____覆盖", + "options": [ + "A.80%", + "B.90%", + "C.95%", + "D.100%" + ], + "type": "单选", + "answer": "D", + "source_id": "43", + "page_number": 100, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 523 + }, + { + "title": "我国将推动____与算力协同布局", + "options": [ + "A.绿色电力", + "B.新能源", + "C.可再生能源", + "D.清洁能源" + ], + "type": "单选", + "answer": "A", + "source_id": "44", + "page_number": 100, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 524 + }, + { + "title": "我国将建立健全模型____评估体系", + "options": [ + "A.性能", + "B.能力", + "C.安全", + "D.质量" + ], + "type": "单选", + "answer": "B", + "source_id": "45", + "page_number": 100, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 525 + }, + { + "title": "厦门市将落实国家城市____创新发展试点任务", + "options": [ + "A.可信数据空间", + "B.数据要素市场", + "C.数据流通交易", + "D.数据产权登记" + ], + "type": "单选", + "answer": "A", + "source_id": "46", + "page_number": 100, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 526 + }, + { + "title": "“智赋百景”行动的核心是以____带动人工智能技术产品落地", + "options": [ + "A.技术研发", + "B.场景建设", + "C.产业培育", + "D.政策支持" + ], + "type": "单选", + "answer": "B", + "source_id": "47", + "page_number": 100, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 527 + }, + { + "title": "数字中国建设要优化数字化发展国内国际____", + "options": [ + "A.两个市场", + "B.两个环境", + "C.两种资源", + "D.两个循环" + ], + "type": "单选", + "answer": "B", + "source_id": "48", + "page_number": 100, + "source_file": "数字中国建设整体布局规划", + "id": 528 + }, + { + "title": "要深入实施国家____数字化战略", + "options": [ + "A.文化", + "B.教育", + "C.医疗", + "D.政务" + ], + "type": "单选", + "answer": "A", + "source_id": "49", + "page_number": 101, + "source_file": "数字中国建设整体布局规划", + "id": 529 + }, + { + "title": "要构建以____为核心的智慧水利体系", + "options": [ + "A.数字孪生流域", + "B.智慧水务", + "C.数字水网", + "D.智慧防汛" + ], + "type": "单选", + "answer": "A", + "source_id": "50", + "page_number": 101, + "source_file": "数字中国建设整体布局规划", + "id": 530 + }, + { + "title": "福建省将实施____和“宽带边疆”行动", + "options": [ + "A.信号升格", + "B.双千兆", + "C.万兆光网", + "D.5G-A" + ], + "type": "单选", + "answer": "A", + "source_id": "51", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 531 + }, + { + "title": "到 2026 年,福建省农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "B", + "source_id": "52", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 532 + }, + { + "title": "到 2026 年,福建省限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.25%", + "B.28.5%", + "C.30%", + "D.35%" + ], + "type": "单选", + "answer": "B", + "source_id": "53", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 533 + }, + { + "title": "福建省将打造____文旅线上服务平台", + "options": [ + "A.畅游八闽", + "B.福游福建", + "C.清新福建", + "D.海丝福建" + ], + "type": "单选", + "answer": "A", + "source_id": "54", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 534 + }, + { + "title": "厦门市将统筹____一体化物联感知体系建设", + "options": [ + "A.城市大脑", + "B.数字政府", + "C.智慧城市", + "D.数字孪生" + ], + "type": "单选", + "answer": "A", + "source_id": "55", + "page_number": 102, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 535 + }, + { + "title": "厦门市将深入开展____行动,打造人工智能创新应用示范区", + "options": [ + "A.智赋百景", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造" + ], + "type": "单选", + "answer": "A", + "source_id": "56", + "page_number": 102, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 536 + }, + { + "title": "我国将推动通用大模型和____同步发展", + "options": [ + "A.专用大模型", + "B.行业专用模型", + "C.多模态大模型", + "D.具身智能模型" + ], + "type": "单选", + "answer": "B", + "source_id": "57", + "page_number": 102, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 537 + }, + { + "title": "厦门市将培育____个以上高质量数据集", + "options": [ + "A.20", + "B.25", + "C.30", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "58", + "page_number": 102, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 538 + }, + { + "title": "要加快推进____“一件事一次办”", + "options": [ + "A.政务服务", + "B.民生服务", + "C.企业服务", + "D.公共服务" + ], + "type": "单选", + "answer": "A", + "source_id": "59", + "page_number": 102, + "source_file": "数字中国建设整体布局规划", + "id": 539 + }, + { + "title": "到 2026 年,福建省累计推出____项左右“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "B", + "source_id": "60", + "page_number": 102, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 540 + }, + { + "title": "数字中国建设“2522”整体框架包括____", + "options": [ + "A.夯实两大基础", + "B.推进五位一体融合", + "C.强化两大能力", + "D.优化两个环境" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 541 + }, + { + "title": "数字中国建设的“两大基础”是____", + "options": [ + "A.数字基础设施", + "B.数据资源体系", + "C.技术创新体系", + "D.安全保障体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "62", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 542 + }, + { + "title": "数字中国建设要推进数字技术与____建设深度融合", + "options": [ + "A.经济", + "B.政治", + "C.文化", + "D.社会", + "E.生态文明" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "63", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 543 + }, + { + "title": "“人工智能 +”行动包括以下哪些领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.民生福祉", + "E.治理能力" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "64", + "page_number": 103, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 544 + }, + { + "title": "厦门市将围绕以下哪些重点行业打造数据流通专区____", + "options": [ + "A.信用科技", + "B.双碳产业", + "C.供应链金融", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABC", + "source_id": "65", + "page_number": 103, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 545 + }, + { + "title": "厦门市数字化全面赋能的重点领域包括____", + "options": [ + "A.党的建设", + "B.经济发展", + "C.政府治理", + "D.文化发展", + "E.社会发展", + "F.生态文明建设" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "66", + "page_number": 104, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 546 + }, + { + "title": "厦门市将建设以下哪些可信数据空间____", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.个人可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 104, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 547 + }, + { + "title": "“数据全生命周期”包括以下哪些过程____", + "options": [ + "A.数据采集", + "B.数据传输", + "C.数据存储", + "D.数据处理", + "E.数据交换", + "F.数据销毁" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "68", + "page_number": 104, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 548 + }, + { + "title": "福建省将建设以下哪些异地灾备节点构成“多地多中心”灾备体系____", + "options": [ + "A.福州", + "B.安溪", + "C.宁夏", + "D.厦门" + ], + "type": "多选", + "answer": "ABC", + "source_id": "69", + "page_number": 104, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 549 + }, + { + "title": "福建省将围绕以下哪些重点行业培育数据流通服务平台____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.金融服务", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "70", + "page_number": 104, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 550 + }, + { + "title": "数字中国建设要强化以下哪些“两大能力”____", + "options": [ + "A.数字技术创新体系", + "B.数字安全屏障", + "C.数字治理体系", + "D.数字产业体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "71", + "page_number": 105, + "source_file": "数字中国建设整体布局规划", + "id": 551 + }, + { + "title": "要引导以下哪些数据中心合理梯次布局____", + "options": [ + "A.通用数据中心", + "B.超算中心", + "C.智能计算中心", + "D.边缘数据中心" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "72", + "page_number": 105, + "source_file": "数字中国建设整体布局规划", + "id": 552 + }, + { + "title": "厦门市将深入开展“数据要素×”行动,每年在以下哪些重点领域推出典型应用场景____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.交通物流", + "D.金融服务" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "73", + "page_number": 105, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 553 + }, + { + "title": "我国算力设施发展的方向包括____", + "options": [ + "A.规模化", + "B.集约化", + "C.绿色化", + "D.普惠化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "74", + "page_number": 105, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 554 + }, + { + "title": "厦门市人工智能发展行动包括____", + "options": [ + "A.行业大模型能力提升行动", + "B.具身智能发展突破行动", + "C.智赋百景行动", + "D.数据要素×行动" + ], + "type": "多选", + "answer": "AB", + "source_id": "75", + "page_number": 105, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 555 + }, + { + "title": "福建省将重点依托以下哪些产业园建设省级高性能数据中心集群____", + "options": [ + "A.数字福建(长乐)产业园", + "B.数字福建(安溪)产业园", + "C.厦门科学城", + "D.泉州半导体高新区" + ], + "type": "多选", + "answer": "AB", + "source_id": "76", + "page_number": 105, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 556 + }, + { + "title": "福建省数字赋能经济发展的重点包括____", + "options": [ + "A.数字新产业", + "B.农业数字化", + "C.工业数字化转型", + "D.服务业数字化提升" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "77", + "page_number": 106, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 557 + }, + { + "title": "优化数字化发展环境包括____", + "options": [ + "A.建设公平规范的数字治理生态", + "B.构建开放共赢的数字领域国际合作格局", + "C.完善数字基础设施", + "D.强化数据要素流通" + ], + "type": "多选", + "answer": "AB", + "source_id": "78", + "page_number": 106, + "source_file": "数字中国建设整体布局规划", + "id": 558 + }, + { + "title": "厦门市试点建设____,打通公共数据汇聚共享堵点", + "options": [ + "A.数据高铁", + "B.数据高速", + "C.数据快线", + "D.数据通道" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 559 + }, + { + "title": "厦门市将打造____供应链金融创新中心平台", + "options": [ + "A.鹭江", + "B.思明", + "C.湖里", + "D.集美" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 560 + }, + { + "title": "厦门市将加快建设____数字街区", + "options": [ + "A.海丝", + "B.金砖", + "C.两岸", + "D.自贸" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 561 + }, + { + "title": "我国将深入实施____行动,全方位赋能千行百业", + "options": [ + "A.数字经济 +", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造 +" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 562 + }, + { + "title": "我国将建立全国数据资源____管理体系", + "options": [ + "A.一本账", + "B.一张网", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 563 + }, + { + "title": "制造业数字化转型的核心要求是____", + "options": [ + "A.数字化、网络化、智能化", + "B.智改数转网联", + "C.智能制造工程", + "D.工业互联网创新" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 564 + }, + { + "title": "厦门市将打造全市____物联感知体系", + "options": [ + "A.一张网", + "B.一本账", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 108, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 565 + }, + { + "title": "数字中国建设按照____整体框架进行布局", + "options": [ + "A.2322", + "B.2522", + "C.3522", + "D.2532" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 566 + }, + { + "title": "数字中国建设的“两大基础”是数字基础设施和____", + "options": [ + "A.数据资源体系", + "B.技术创新体系", + "C.安全保障体系", + "D.治理体系" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 567 + }, + { + "title": "到____年,数字化发展水平进入世界前列", + "options": [ + "A.2025", + "B.2030", + "C.2035", + "D.2050" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 568 + }, + { + "title": "数字中国建设要强化数字技术创新体系和____“两大能力”", + "options": [ + "A.数字治理体系", + "B.数字安全屏障", + "C.数字产业体系", + "D.数字服务体系" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 569 + }, + { + "title": "要引导通用数据中心、超算中心、智能计算中心、____等合理梯次布局", + "options": [ + "A.边缘数据中心", + "B.分布式数据中心", + "C.绿色数据中心", + "D.算力中心" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 570 + }, + { + "title": "福建省大数据交易所采用____建设模式", + "options": [ + "A.一所一站", + "B.一所多站", + "C.多所多站", + "D.区域联盟" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 571 + }, + { + "title": "福建省打造____数据可信智能链网平台", + "options": [ + "A.数通八闽", + "B.福数通", + "C.闽数通", + "D.数字福建" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 572 + }, + { + "title": "福建省推广____公众养老服务品牌", + "options": [ + "A.福见康养", + "B.闽康养", + "C.智慧养老", + "D.数字养老" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 573 + }, + { + "title": "到 2026 年,厦门市数字经济增加值占 GDP 比重目标为超过____", + "options": [ + "A.57%", + "B.60%", + "C.65%", + "D.70%" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 109, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 574 + }, + { + "title": "到 2026 年,厦门市培育公共数据赋能产业发展典型应用场景目标为____个以上", + "options": [ + "A.20", + "B.30", + "C.50", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 109, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 575 + }, + { + "title": "我国将实施____发展行动计划", + "options": [ + "A.可信数据空间", + "B.数据要素流通", + "C.人工智能大模型", + "D.工业互联网" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 109, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 576 + }, + { + "title": "“数据要素×”行动的核心是通过数据多场景应用实现对经济发展的____效应", + "options": [ + "A.叠加", + "B.倍增", + "C.乘数", + "D.指数" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 110, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 577 + }, + { + "title": "厦门市将建立____科技攻关新机制", + "options": [ + "A.揭榜挂帅", + "B.企业界出题、科技界答题", + "C.赛马制", + "D.定向委托" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 110, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 578 + }, + { + "title": "到 2026 年,厦门市“数据最多采一次”覆盖目标超过____政务服务办件量", + "options": [ + "A.90%", + "B.95%", + "C.98%", + "D.100%" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 110, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 579 + }, + { + "title": "我国将推动____与算力协同布局", + "options": [ + "A.绿色电力", + "B.新能源", + "C.可再生能源", + "D.清洁能源" + ], + "type": "单选", + "answer": "A", + "source_id": "22", + "page_number": 110, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 580 + }, + { + "title": "我国将建立健全模型____评估体系", + "options": [ + "A.性能", + "B.能力", + "C.安全", + "D.质量" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 110, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 581 + }, + { + "title": "福建省将实施____和“宽带边疆”行动", + "options": [ + "A.信号升格", + "B.双千兆", + "C.万兆光网", + "D.5G-A" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 110, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 582 + }, + { + "title": "厦门市将统筹____一体化物联感知体系建设", + "options": [ + "A.城市大脑", + "B.数字政府", + "C.智慧城市", + "D.数字孪生" + ], + "type": "单选", + "answer": "A", + "source_id": "25", + "page_number": 111, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 583 + }, + { + "title": "到 2022 年,福建省数字经济增加值目标达到____万亿元以上", + "options": [ + "A.2.0", + "B.2.3", + "C.2.6", + "D.3.0" + ], + "type": "单选", + "answer": "C", + "source_id": "26", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 584 + }, + { + "title": "到 2022 年,福建省目标建成____个以上数字经济领域高水平创新平台", + "options": [ + "A.50", + "B.80", + "C.100", + "D.150" + ], + "type": "单选", + "answer": "C", + "source_id": "27", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 585 + }, + { + "title": "到 2022 年,福建省农产品网络销售额目标突破____亿元", + "options": [ + "A.800", + "B.1000", + "C.1200", + "D.1500" + ], + "type": "单选", + "answer": "B", + "source_id": "28", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 586 + }, + { + "title": "福建省建设____区块链主干网", + "options": [ + "A.数字福建", + "B.闽数链", + "C.福链", + "D.八闽链" + ], + "type": "单选", + "answer": "A", + "source_id": "29", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 587 + }, + { + "title": "国家构建____四合一的数创企业专业化遴选培育机制", + "options": [ + "A.政府 + 企业 + 创新 + 投资", + "B.政府 + 高校 + 企业 + 科研", + "C.政府 + 平台 + 产业 + 资本", + "D.政府 + 人才 + 技术 + 市场" + ], + "type": "单选", + "answer": "A", + "source_id": "30", + "page_number": 111, + "source_file": "关于加强数字经济创新型企业培育的若干措施", + "id": 588 + }, + { + "title": "国家鼓励有条件地区探索发放____,降低企业治数用数成本", + "options": [ + "A.算力券、数据券", + "B.数据券、算法券", + "C.算法券、算力券", + "D.创新券、数据券" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 112, + "source_file": "关于加强数字经济创新型企业培育的若干措施", + "id": 589 + }, + { + "title": "到 2026 年,厦门市公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.3000", + "B.5000", + "C.8000", + "D.10000" + ], + "type": "单选", + "answer": "B", + "source_id": "32", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 590 + }, + { + "title": "到 2026 年,厦门市数据交易平台上线数据产品累计目标超过____个", + "options": [ + "A.800", + "B.1000", + "C.1300", + "D.2500" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 591 + }, + { + "title": "到 2026 年,厦门市关键环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "C", + "source_id": "34", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 592 + }, + { + "title": "到 2026 年,厦门市累计推出____项“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "C", + "source_id": "35", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 593 + }, + { + "title": "到 2026 年,厦门市农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "36", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 594 + }, + { + "title": "“人工智能 +”行动不包括以下哪个领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.乡村振兴" + ], + "type": "单选", + "answer": "D", + "source_id": "37", + "page_number": 113, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 595 + }, + { + "title": "到 2030 年,厦门市人工智能核心产业规模目标达到____亿元", + "options": [ + "A.500", + "B.650", + "C.850", + "D.1000" + ], + "type": "单选", + "answer": "C", + "source_id": "38", + "page_number": 113, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 596 + }, + { + "title": "到 2030 年,厦门市智能体应用普及率目标超过____", + "options": [ + "A.70%", + "B.80%", + "C.90%", + "D.95%" + ], + "type": "单选", + "answer": "C", + "source_id": "39", + "page_number": 113, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 597 + }, + { + "title": "数字中国建设的战略路径不包括____", + "options": [ + "A.夯实基础", + "B.赋能全局", + "C.强化能力", + "D.深化改革" + ], + "type": "单选", + "answer": "D", + "source_id": "40", + "page_number": 113, + "source_file": "数字中国建设整体布局规划", + "id": 598 + }, + { + "title": "到 2026 年,福建省数字经济增加值占 GDP 比重目标为____左右", + "options": [ + "A.50%", + "B.57%", + "C.60%", + "D.65%" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 113, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 599 + }, + { + "title": "到 2026 年,福建省公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.5000", + "B.8000", + "C.10000", + "D.15000" + ], + "type": "单选", + "answer": "C", + "source_id": "42", + "page_number": 113, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 600 + }, + { + "title": "到 2026 年,福建省数据中心平均 PUE 值目标低于____", + "options": [ + "A.1.3", + "B.1.35", + "C.1.4", + "D.1.45" + ], + "type": "单选", + "answer": "B", + "source_id": "43", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 601 + }, + { + "title": "到 2026 年,福建省关键业务环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "B", + "source_id": "44", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 602 + }, + { + "title": "到 2026 年,厦门市限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.28.5%", + "B.30%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "45", + "page_number": 114, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 603 + }, + { + "title": "要构建以____为核心的智慧水利体系", + "options": [ + "A.数字孪生流域", + "B.智慧水务", + "C.数字水网", + "D.智慧防汛" + ], + "type": "单选", + "answer": "A", + "source_id": "46", + "page_number": 114, + "source_file": "数字中国建设整体布局规划", + "id": 604 + }, + { + "title": "到 2026 年,福建省农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "B", + "source_id": "47", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 605 + }, + { + "title": "到 2026 年,福建省限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.25%", + "B.28.5%", + "C.30%", + "D.35%" + ], + "type": "单选", + "answer": "B", + "source_id": "48", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 606 + }, + { + "title": "到 2026 年,福建省累计推出____项左右“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "B", + "source_id": "49", + "page_number": 115, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 607 + }, + { + "title": "到 2022 年,福建省目标培育形成____家以上数字经济领域高新技术企业等创新企业", + "options": [ + "A.2000", + "B.3000", + "C.4000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "50", + "page_number": 115, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 608 + }, + { + "title": "“十五五”期间厦门市新增算力目标为____PFLOPS 以上", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "51", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 609 + }, + { + "title": "厦门市将建设国际物流供应链国家人工智能应用____基地", + "options": [ + "A.研发", + "B.中试", + "C.示范", + "D.产业化" + ], + "type": "单选", + "answer": "B", + "source_id": "52", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 610 + }, + { + "title": "到 2030 年,厦门市目标培育____个优秀行业模型和智能体", + "options": [ + "A.30", + "B.50", + "C.80", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "53", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 611 + }, + { + "title": "到 2026 年,福建省大数据交易所拓展数商目标超过____家", + "options": [ + "A.500", + "B.800", + "C.1000", + "D.1500" + ], + "type": "单选", + "answer": "C", + "source_id": "54", + "page_number": 115, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 612 + }, + { + "title": "福建省打造____省域治理智能化中枢平台", + "options": [ + "A.闽数治", + "B.福数治", + "C.数字福建", + "D.智慧福建" + ], + "type": "单选", + "answer": "A", + "source_id": "55", + "page_number": 116, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 613 + }, + { + "title": "厦门市将升级构建企业____事务协调服务平台", + "options": [ + "A.窗内", + "B.窗外", + "C.线上", + "D.线下" + ], + "type": "单选", + "answer": "B", + "source_id": "56", + "page_number": 116, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 614 + }, + { + "title": "厦门市将落实国家城市____创新发展试点任务", + "options": [ + "A.可信数据空间", + "B.数据要素市场", + "C.数据流通交易", + "D.数据产权登记" + ], + "type": "单选", + "answer": "A", + "source_id": "57", + "page_number": 116, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 615 + }, + { + "title": "我国将推动通用大模型和____同步发展", + "options": [ + "A.专用大模型", + "B.行业专用模型", + "C.多模态大模型", + "D.具身智能模型" + ], + "type": "单选", + "answer": "B", + "source_id": "58", + "page_number": 116, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 616 + }, + { + "title": "厦门市将培育____个以上高质量数据集", + "options": [ + "A.20", + "B.25", + "C.30", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "59", + "page_number": 116, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 617 + }, + { + "title": "福建省省级政府引导基金让利最高不超过政府出资部分收益的____", + "options": [ + "A.30%", + "B.40%", + "C.50%", + "D.60%" + ], + "type": "单选", + "answer": "C", + "source_id": "60", + "page_number": 116, + "source_file": "福建省加强数字经济创新型企业培育十条措施", + "id": 618 + }, + { + "title": "数字中国建设“2522”整体框架包括____", + "options": [ + "A.夯实两大基础", + "B.推进五位一体融合", + "C.强化两大能力", + "D.优化两个环境" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 619 + }, + { + "title": "数字中国建设的“两大基础”是____", + "options": [ + "A.数字基础设施", + "B.数据资源体系", + "C.技术创新体系", + "D.安全保障体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "62", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 620 + }, + { + "title": "数字中国建设要推进数字技术与____建设深度融合", + "options": [ + "A.经济", + "B.政治", + "C.文化", + "D.社会", + "E.生态文明" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "63", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 621 + }, + { + "title": "数字中国建设要强化以下哪些“两大能力”____", + "options": [ + "A.数字技术创新体系", + "B.数字安全屏障", + "C.数字治理体系", + "D.数字产业体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "64", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 622 + }, + { + "title": "“人工智能 +”行动包括以下哪些领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.民生福祉", + "E.治理能力" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "65", + "page_number": 117, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 623 + }, + { + "title": "厦门市数字化全面赋能的重点领域包括____", + "options": [ + "A.党的建设", + "B.经济发展", + "C.政府治理", + "D.文化发展", + "E.社会发展", + "F.生态文明建设" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "66", + "page_number": 118, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 624 + }, + { + "title": "我国算力设施发展的方向包括____", + "options": [ + "A.规模化", + "B.集约化", + "C.绿色化", + "D.普惠化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 118, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 625 + }, + { + "title": "优化数字化发展环境包括____", + "options": [ + "A.建设公平规范的数字治理生态", + "B.构建开放共赢的数字领域国际合作格局", + "C.完善数字基础设施", + "D.强化数据要素流通" + ], + "type": "多选", + "answer": "AB", + "source_id": "68", + "page_number": 118, + "source_file": "数字中国建设整体布局规划", + "id": 626 + }, + { + "title": "国家数字经济创新发展试验区(福建)重点打造的产业集聚区包括____", + "options": [ + "A.数字中国样板区", + "B.数字经济发展新高地", + "C.智慧海洋和卫星应用产业集聚区", + "D.\"数字丝路\" 核心区" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "69", + "page_number": 118, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 627 + }, + { + "title": "厦门市将围绕以下哪些重点行业打造数据流通专区____", + "options": [ + "A.信用科技", + "B.双碳产业", + "C.供应链金融", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABC", + "source_id": "70", + "page_number": 118, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 628 + }, + { + "title": "“数据全生命周期”包括以下哪些过程____", + "options": [ + "A.数据采集", + "B.数据传输", + "C.数据存储", + "D.数据处理", + "E.数据交换", + "F.数据销毁" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "71", + "page_number": 119, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 629 + }, + { + "title": "福建省将围绕以下哪些重点行业培育数据流通服务平台____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.金融服务", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "72", + "page_number": 119, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 630 + }, + { + "title": "厦门市将前瞻部署以下哪些前沿领域科技攻关____", + "options": [ + "A.6G", + "B.具身智能", + "C.量子计算", + "D.元宇宙" + ], + "type": "多选", + "answer": "ABC", + "source_id": "73", + "page_number": 119, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 631 + }, + { + "title": "厦门市将深入开展“数据要素×”行动,每年在以下哪些重点领域推出典型应用场景____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.交通物流", + "D.金融服务" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "74", + "page_number": 119, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 632 + }, + { + "title": "福建省数字赋能经济发展的重点包括____", + "options": [ + "A.数字新产业", + "B.农业数字化", + "C.工业数字化转型", + "D.服务业数字化提升" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "75", + "page_number": 119, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 633 + }, + { + "title": "厦门市将建设以下哪些可信数据空间____", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.个人可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "76", + "page_number": 120, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 634 + }, + { + "title": "福建省将建设以下哪些异地灾备节点构成“多地多中心”灾备体系____", + "options": [ + "A.福州", + "B.安溪", + "C.宁夏", + "D.厦门" + ], + "type": "多选", + "answer": "ABC", + "source_id": "77", + "page_number": 120, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 635 + }, + { + "title": "厦门市人工智能发展行动包括____", + "options": [ + "A.行业大模型能力提升行动", + "B.具身智能发展突破行动", + "C.智赋百景行动", + "D.数据要素×行动" + ], + "type": "多选", + "answer": "AB", + "source_id": "78", + "page_number": 120, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 636 + }, + { + "title": "福建省将重点依托以下哪些产业园建设省级高性能数据中心集群____", + "options": [ + "A.数字福建(长乐)产业园", + "B.数字福建(安溪)产业园", + "C.厦门科学城", + "D.泉州半导体高新区" + ], + "type": "多选", + "answer": "AB", + "source_id": "79", + "page_number": 120, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 637 + }, + { + "title": "厦门市市级政务信息化项目建设应坚持的推进思路是____", + "options": [ + "A.小平台、小数据、小系统", + "B.大平台、大数据、大系统", + "C.统一平台、统一数据、统一系统", + "D.分散建设、集中管理、共享使用" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 638 + }, + { + "title": "厦门市市级政务信息化专项资金的归口管理部门是____", + "options": [ + "A.市财政局", + "B.市发改委", + "C.市工信局(大数据局)", + "D.市信息中心" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 639 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用工作的共同牵头单位是市数据管理局和____", + "options": [ + "A.市工信局", + "B.市财政局", + "C.市发改委", + "D.市信息中心" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 121, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 640 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的来源是____", + "options": [ + "A.部门预算资金", + "B.市级政务信息化专项资金", + "C.财政专项拨款", + "D.社会资本" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 641 + }, + { + "title": "以下哪项内容属于厦门市市级政务信息化项目申报范畴____", + "options": [ + "A.桌面办公设备采购", + "B.智能建筑建设", + "C.政务数据系统建设", + "D.科研类硬件设备采购" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 642 + }, + { + "title": "厦门市市级政务信息化项目立项审批的必备条件是____", + "options": [ + "A.资金落实", + "B.数据登记", + "C.方案编制", + "D.专家评审" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 643 + }, + { + "title": "厦门市惠企政策“免申即享”的核心目标是实现惠企政策“应上尽上”、符合条件的企业“____”、兑现过程“一键直达”", + "options": [ + "A.应上尽上", + "B.应享尽享", + "C.一键直达", + "D.免申即享" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 122, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 644 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费统一由____向市数据管理局提出申请", + "options": [ + "A.项目业主单位", + "B.项目责任单位", + "C.市信息中心", + "D.市财政局" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 645 + }, + { + "title": "厦门市市级政务信息化项目正式上线前,试运行时间应不少于____", + "options": [ + "A.1个月", + "B.2个月", + "C.3个月", + "D.6个月" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 646 + }, + { + "title": "厦门市市级政务信息化项目软硬件免费维护期自竣工验收合格之日起不少于____", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 647 + }, + { + "title": "厦门市惠企政策“免申即享”平台应入驻“i 厦门”移动端和____自助终端", + "options": [ + "A.e 政务", + "B.闽政通", + "C.厦企通", + "D.慧企云" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 122, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 648 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费预算实行____使用机制", + "options": [ + "A.一次性", + "B.滚动", + "C.包干", + "D.专项" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 649 + }, + { + "title": "厦门市惠企政策“免申即享”兑现时间定义为截止申报日期次日至____", + "options": [ + "A.政策审核通过之日", + "B.政策完成资金拨付之日", + "C.企业收到资金之日", + "D.政策归档之日" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 650 + }, + { + "title": "厦门市市级政务信息化项目中,投资____万元以上的项目应按照规定委托工程监理单位进行全过程监理", + "options": [ + "A.100", + "B.200", + "C.500", + "D.1000" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 123, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 651 + }, + { + "title": "厦门市惠企政策发生调整、变更时,政策归口单位应在政策印发后____个工作日内报送,否则总分内扣 1分", + "options": [ + "A.3", + "B.5", + "C.7", + "D.10" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 652 + }, + { + "title": "厦门市力争到2025年,纳入“免申即享”的政策中100%的政策兑现时间压缩至____个月", + "options": [ + "A.1", + "B.2", + "C.3", + "D.4" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 123, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 653 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费首次下达用款计划一般不超过____", + "options": [ + "A.30%", + "B.40%", + "C.50%", + "D.60%" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 123, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 654 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用中,政策归口单位出台政策数量为51 项及以上的,上线“免申即享”“即申即享”比例不得少于____", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "D", + "source_id": "18", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 655 + }, + { + "title": "厦门市投资预算____万元以上的市级政务信息化项目,需报市政府常务会研究同意后予以立项", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 656 + }, + { + "title": "厦门市市级政务信息化项目变更涉及资金调整数额不超过批复预算的____且不超过200 万元的,可由责任单位提交调整方案报主管部门审核", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 657 + }, + { + "title": "厦门市市级政务信息化项目前期工作完成时限超过____年的,原则上不再拨付剩余款项", + "options": [ + "A.1", + "B.2", + "C.3", + "D.5" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 658 + }, + { + "title": "厦门市市级政务信息化项目实行____在线管理", + "options": [ + "A.全流程", + "B.全过程", + "C.全周期", + "D.全要素" + ], + "type": "单选", + "answer": "B", + "source_id": "22", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 659 + }, + { + "title": "厦门市优先支持____的政务信息化项目立项", + "options": [ + "A.部门独立建设", + "B.跨部门跨领域共建共享", + "C.技术先进", + "D.投资规模大" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 660 + }, + { + "title": "厦门市各政务部门应按照“____”的模式策划生成政务信息化项目", + "options": [ + "A.一部门一系统", + "B.一业务一系统", + "C.一领域一系统", + "D.一区域一系统" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 661 + }, + { + "title": "因处置突发事件的政务信息化项目,经报市政府同意后,可____", + "options": [ + "A.简化审批流程", + "B.先建设再补齐审批手续", + "C.直接采购", + "D.免于验收" + ], + "type": "单选", + "answer": "B", + "source_id": "25", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 662 + }, + { + "title": "厦门市政务信息化项目承建单位必须自行组织建设,不得____", + "options": [ + "A.分包", + "B.转包", + "C.委托第三方", + "D.联合建设" + ], + "type": "单选", + "answer": "B", + "source_id": "26", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 663 + }, + { + "title": "厦门市政务信息系统正式上线前,应提交____报告", + "options": [ + "A.试运行", + "B.验收", + "C.安全评估", + "D.绩效评价" + ], + "type": "单选", + "answer": "A", + "source_id": "27", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 664 + }, + { + "title": "厦门市未按要求组织验收的政务信息化项目,项目主管部门原则上不予受理____", + "options": [ + "A.资金拨付申请", + "B.后续项目申报", + "C.运维经费申请", + "D.成果认定申请" + ], + "type": "单选", + "answer": "B", + "source_id": "28", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 665 + }, + { + "title": "厦门市对于未按要求共享数据的政务信息化项目,不支付项目余款和不安排____", + "options": [ + "A.后续项目", + "B.运维经费", + "C.前期经费", + "D.财政补贴" + ], + "type": "单选", + "answer": "B", + "source_id": "29", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 666 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费原则上____安排", + "options": [ + "A.差额", + "B.全额", + "C.按比例", + "D.按需求" + ], + "type": "单选", + "answer": "B", + "source_id": "30", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 667 + }, + { + "title": "厦门市经初审通过的前期工作经费项目,由市数据管理局报____研究批准", + "options": [ + "A.市政府主要领导", + "B.市政府分管领导", + "C.市财政局", + "D.市发改委" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 668 + }, + { + "title": "厦门市前期工作成果经____通过后,即认定为成果达到要求", + "options": [ + "A.专家评审", + "B.主管部门审核", + "C.评审或审批", + "D.业主单位验收" + ], + "type": "单选", + "answer": "C", + "source_id": "32", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 669 + }, + { + "title": "厦门市市数据管理局每年对前期工作经费使用情况进行____", + "options": [ + "A.审计", + "B.绩效评价", + "C.监督检查", + "D.考核评估" + ], + "type": "单选", + "answer": "B", + "source_id": "33", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 670 + }, + { + "title": "厦门市市级政务信息化项目建设管理办法于____年 9月实施", + "options": [ + "A.2021", + "B.2022", + "C.2023", + "D.2024" + ], + "type": "单选", + "answer": "B", + "source_id": "34", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 671 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费管理办法于____年 8月施行", + "options": [ + "A.2023", + "B.2024", + "C.2025", + "D.2026" + ], + "type": "单选", + "answer": "C", + "source_id": "35", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 672 + }, + { + "title": "厦门市投资预算200 万元以下的政务信息化项目,由____审核并报财政部门备案后予以立项", + "options": [ + "A.项目主管部门", + "B.市政府分管领导", + "C.市财政局", + "D.市信息中心" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 673 + }, + { + "title": "厦门市投资预算 200 万元到 1000万元的政务信息化项目,由____审核并商财政部门确认后予以立项", + "options": [ + "A.项目主管部门", + "B.市政府专题会议", + "C.市政府常务会", + "D.市发改委" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 674 + }, + { + "title": "厦门市投资预算 1000 万元到 3000万元的政务信息化项目,报____专题会议研究审定后予以立项", + "options": [ + "A.市政府(数字厦门建设领导小组办公室)", + "B.市发改委", + "C.市工信局", + "D.市财政局" + ], + "type": "单选", + "answer": "A", + "source_id": "38", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 675 + }, + { + "title": "厦门市政务信息化项目批复后逾期____年未实施的,取消立项", + "options": [ + "A.1", + "B.2", + "C.3", + "D.5" + ], + "type": "单选", + "answer": "A", + "source_id": "39", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 676 + }, + { + "title": "厦门市政务信息化项目通过验收并投入运行后____至12个月内,组织对项目进行自评价", + "options": [ + "A.3个月", + "B.6个月", + "C.9个月", + "D.1个月" + ], + "type": "单选", + "answer": "B", + "source_id": "40", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 677 + }, + { + "title": "厦门市对于存在重大安全隐患的政务信息化系统,须____", + "options": [ + "A.限期整改", + "B.暂停运行", + "C.立即拆除", + "D.降级使用" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 678 + }, + { + "title": "以下关于厦门市政务信息化项目变更的说法,正确的是____", + "options": [ + "A.任何变更都需重新履行立项审批手续", + "B.资金调整不超过15%且不超过200 万元的,可由责任单位审核", + "C.资金调整不超过20%且不超过300 万元的,可由责任单位审核", + "D.变更无需报主管部门备案" + ], + "type": "单选", + "answer": "B", + "source_id": "42", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 679 + }, + { + "title": "以下关于厦门市前期工作经费拨付的说法,正确的是____", + "options": [ + "A.一次性全额拨付", + "B.分两次拨付,首次不超过50%", + "C.分三次拨付,首次不超过30%", + "D.按季度拨付" + ], + "type": "单选", + "answer": "B", + "source_id": "43", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 680 + }, + { + "title": "以下关于厦门市政务信息化项目验收的说法,正确的是____", + "options": [ + "A.所有项目验收都需项目主管部门参与", + "B.投资1000 万元以上的项目验收需主管部门参与", + "C.验收只需提交竣工验收申请书", + "D.试运行结束后即可直接验收" + ], + "type": "单选", + "answer": "B", + "source_id": "44", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 681 + }, + { + "title": "厦门市市级政务信息化项目建设应坚持的原则包括____", + "options": [ + "A.改革创新", + "B.统筹集约", + "C.整合协同", + "D.共享开放", + "E.安全可控" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "45", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 682 + }, + { + "title": "以下哪些内容不列入厦门市市级政务信息化项目申报范畴____", + "options": [ + "A.桌面办公设备采购", + "B.智能建筑建设及维护服务", + "C.业务工作所需专业设备采购", + "D.科研类系统及硬件设备采购", + "E.政务数据共享平台建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "46", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 683 + }, + { + "title": "厦门市市级政务信息化项目前期工作包括____", + "options": [ + "A.项目策划研究", + "B.可行性研究", + "C.项目建设方案编制", + "D.项目使用服务方案编制", + "E.项目施工建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "47", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 684 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用的工作目标包括____", + "options": [ + "A.实现惠企政策“应上尽上”", + "B.符合条件的企业“应享尽享”", + "C.兑现过程“一键直达”", + "D.2025年底100%政策兑现时间压缩至2个月", + "E.所有政策实现“零材料”免申模式" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "48", + "page_number": 129, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 685 + }, + { + "title": "厦门市市级政务信息化项目分级审批标准包括____", + "options": [ + "A.200 万元以下:主管部门审核报财政备案", + "B.200-1000 万元:主管部门审核商财政确认", + "C.1000-3000 万元:市政府专题会议审定", + "D.3000 万元以上:市政府常务会研究同意", + "E.5000 万元以上:报省发改委审批" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "49", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 686 + }, + { + "title": "厦门市市级政务信息化项目验收时需提交的材料包括____", + "options": [ + "A.竣工验收申请书", + "B.项目建设总结", + "C.用户使用报告", + "D.项目测评报告", + "E.数据目录登记表" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "50", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 687 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的使用范围包括____", + "options": [ + "A.专业性较强、技术较复杂的项目前期工作", + "B.经市委或市政府研究确定的重大项目相关前期费用", + "C.项目施工建设费用", + "D.项目运维费用", + "E.项目验收费用" + ], + "type": "多选", + "answer": "AB", + "source_id": "51", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 688 + }, + { + "title": "厦门市惠企政策“免申即享”数据共享部门应已实现对接共享的“市场监管、税务、信用、人社”等数据基础上,推动纳入对接范围的数据包括____", + "options": [ + "A.企业资质", + "B.专利", + "C.用电", + "D.用水", + "E.社保" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "52", + "page_number": 130, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 689 + }, + { + "title": "厦门市惠企政策“免申即享”分数评定细则中,针对政策归口单位的评价指标包括____", + "options": [ + "A.政策上线情况", + "B.有效完成兑现情况", + "C.与市免申平台对接情况", + "D.旧政策改造情况", + "E.宣传推广情况" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "53", + "page_number": 130, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 690 + }, + { + "title": "厦门市市级政务信息化项目建设管理办法中,关于信息安全保障的要求包括____", + "options": [ + "A.定期开展网络安全检测与风险评估", + "B.同步规划、同步建设、同步运行密码保障系统", + "C.采用自主可控的软硬件产品", + "D.定期开展密码应用安全性评估", + "E.建立数据备份制度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "54", + "page_number": 130, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 691 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用工作方案的主要内容包括____", + "options": [ + "A.梳理惠企政策清单", + "B.优化平台服务功能", + "C.扩大数据共享范围", + "D.精简审批流程", + "E.健全考评体系" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "55", + "page_number": 130, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 692 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的拨付方式包括____", + "options": [ + "A.一次性全额拨付", + "B.分两次拨付,首次不超过50%", + "C.成果认定后拨付剩余款项", + "D.按季度拨付", + "E.超过2年未完成不再拨付剩余款项" + ], + "type": "多选", + "answer": "BCE", + "source_id": "56", + "page_number": 130, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 693 + }, + { + "title": "厦门市市级政务信息化项目变更的情形包括____", + "options": [ + "A.根据上级工作部署,确需改变建设内容的", + "B.确需对原项目技术方案进行完善优化的", + "C.根据业务发展需要调整相关建设内容及进度的", + "D.因企业要求变更的", + "E.因资金不足变更的" + ], + "type": "多选", + "answer": "ABC", + "source_id": "57", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 694 + }, + { + "title": "厦门市市级政务信息化项目运行管理的要求包括____", + "options": [ + "A.制定系统运维管理制度", + "B.建立安全巡检制度", + "C.建立数据备份制度", + "D.建立应急响应制度", + "E.定期开展绩效评价" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "58", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 695 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的监督管理要求包括____", + "options": [ + "A.确保专款专用", + "B.加强进度和质量管理", + "C.接受主管部门监督检查", + "D.接受审计部门监督", + "E.定期向社会公开使用情况" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "59", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 696 + }, + { + "title": "《厦门经济特区数据条例》的正式施行日期是____", + "options": [ + "A.2022年12月27日", + "B.2023年1月1日", + "C.2023年3月1日", + "D.2023年6月1日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 697 + }, + { + "title": "《厦门经济特区数据条例》是由厦门市____通过的", + "options": [ + "A.人民政府", + "B.人民代表大会", + "C.人民代表大会常务委员会", + "D.大数据主管部门" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 698 + }, + { + "title": "厦门市统筹规划、综合协调全市数据管理和发展工作的主管部门是____", + "options": [ + "A.市网信部门", + "B.市发展改革部门", + "C.市大数据主管部门", + "D.市市场监督管理部门" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 699 + }, + { + "title": "本条例规定,公共数据包括政务数据和____", + "options": [ + "A.企业数据", + "B.公共服务数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 700 + }, + { + "title": "厦门市统一的公共数据汇聚、共享、开放基础设施是____", + "options": [ + "A.公共数据资源平台", + "B.大数据交易中心", + "C.政务云平台", + "D.电子证照库" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 701 + }, + { + "title": "公共数据共享分为无条件共享、有条件共享和____三种类型", + "options": [ + "A.禁止共享", + "B.暂不共享", + "C.依申请共享", + "D.普遍共享" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 702 + }, + { + "title": "公共数据开放分为普遍开放和____两种类型", + "options": [ + "A.无条件开放", + "B.有条件开放", + "C.依申请开放", + "D.暂不开放" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 703 + }, + { + "title": "厦门市探索建立数据资源持有权、数据加工使用权和____分置的产权运行机制", + "options": [ + "A.数据收益权", + "B.数据所有权", + "C.数据产品经营权", + "D.数据处置权" + ], + "type": "单选", + "answer": "C", + "source_id": "8", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 704 + }, + { + "title": "数据处理活动的安全责任主体是____", + "options": [ + "A.市大数据主管部门", + "B.数据处理者", + "C.市网信部门", + "D.市公安部门" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 705 + }, + { + "title": "在公共场所安装图像采集、个人身份识别设备,应当为____所必需", + "options": [ + "A.商业运营", + "B.公共安全", + "C.交通管理", + "D.疫情防控" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 706 + }, + { + "title": "厦门市在____探索建立首席数据官制度", + "options": [ + "A.所有企业", + "B.政务部门和公共服务组织", + "C.事业单位", + "D.国有企业" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 707 + }, + { + "title": "市、区政务部门采购非公共数据,应当由____统筹并统一采购", + "options": [ + "A.本部门自行", + "B.同级财政部门", + "C.同级大数据主管部门", + "D.市公共资源交易中心" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 708 + }, + { + "title": "为应对突发事件获取的数据,在应急处置工作结束后应当____", + "options": [ + "A.永久保留", + "B.立即全部删除", + "C.分类评估并采取安全处理措施", + "D.向社会公开" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 709 + }, + { + "title": "自然人、法人和非法人组织发现与其相关的公共数据不准确、不完整的,可以提出____", + "options": [ + "A.投诉", + "B.举报", + "C.异议申请", + "D.行政复议" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 710 + }, + { + "title": "厦门市人民政府应当推动____建设,培育数据商和数据交易服务机构", + "options": [ + "A.数据交易市场", + "B.大数据产业园", + "C.数字经济示范区", + "D.数据安全实验室" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 711 + }, + { + "title": "政务部门、公共服务组织通过共享获取的公共数据,不得用于____之外的目的", + "options": [ + "A.本单位内部使用", + "B.申请时确定的应用场景", + "C.公共服务", + "D.政府决策" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 712 + }, + { + "title": "厦门市建立公共数据____运营机制,确定相应主体管理社会化增值开发利用的公共数据", + "options": [ + "A.特许", + "B.授权", + "C.委托", + "D.承包" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 713 + }, + { + "title": "违反本条例规定的政务部门、公共服务组织,由____责令限期整改", + "options": [ + "A.市人民政府", + "B.市大数据主管部门", + "C.市网信部门", + "D.市监察机关" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 714 + }, + { + "title": "厦门市探索建立数据要素____制度,推动将数据要素纳入国民经济核算体系", + "options": [ + "A.统计核算", + "B.资产评估", + "C.登记结算", + "D.交易撮合" + ], + "type": "单选", + "answer": "A", + "source_id": "19", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 715 + }, + { + "title": "对于符合改革方向、程序合法依规的工作失误,且未牟取私利、未损害公共利益的,可以____", + "options": [ + "A.从轻追究责任", + "B.不予或者免予追究行政责任", + "C.减轻追究责任", + "D.免予刑事处罚" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 716 + }, + { + "title": "本条例所称的数据处理包括下列哪些活动____", + "options": [ + "A.收集、存储", + "B.使用、加工", + "C.传输、提供", + "D.公开、删除" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 717 + }, + { + "title": "公共数据包括下列哪些类型____", + "options": [ + "A.政务数据", + "B.公共服务数据", + "C.企业经营数据", + "D.个人隐私数据" + ], + "type": "多选", + "answer": "AB", + "source_id": "22", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 718 + }, + { + "title": "厦门市数据管理和发展工作遵循的原则包括____", + "options": [ + "A.开发利用与安全保护并举", + "B.创新引领与依法监管并重", + "C.政府主导与市场参与结合", + "D.统一管理与分级负责" + ], + "type": "多选", + "answer": "AB", + "source_id": "23", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 719 + }, + { + "title": "公共数据共享分为下列哪些类型____", + "options": [ + "A.无条件共享", + "B.有条件共享", + "C.暂不共享", + "D.禁止共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 720 + }, + { + "title": "厦门市培育数据要素市场,探索建立的市场运营体系包括____", + "options": [ + "A.数据确权", + "B.资产评估", + "C.登记结算", + "D.交易撮合" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 721 + }, + { + "title": "下列哪些数据不得进行交易____", + "options": [ + "A.危害国家安全、社会公共利益的", + "B.侵害他人合法权益、个人隐私的", + "C.未经合法权利人授权同意的", + "D.法律、法规禁止交易的其他情形" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "26", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 722 + }, + { + "title": "数据处理者应当建立健全的安全管理制度包括____", + "options": [ + "A.全流程数据安全管理制度", + "B.重要系统容灾备份制度", + "C.核心数据容灾备份制度", + "D.数据交易风险监测制度" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 723 + }, + { + "title": "政务部门、公共服务组织及其工作人员有下列哪些情形的,由市大数据主管部门责令限期整改____", + "options": [ + "A.擅自新建跨部门的共享、开放平台", + "B.未按照规定编制公共数据目录", + "C.未按照规定履行公共数据质量管理义务", + "D.未按照规定汇聚公共数据" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 724 + }, + { + "title": "厦门市统一建设的基础数据库包括____", + "options": [ + "A.人口、法人", + "B.自然资源和空间地理", + "C.信用、电子证照", + "D.医疗健康、教育" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 725 + }, + { + "title": "关于公共场所图像采集设备的规定,下列说法正确的有____", + "options": [ + "A.应当为维护公共安全所必需", + "B.应当设置显著提示标识", + "C.收集的信息只能用于维护公共安全目的", + "D.可以作为出入场所的唯一验证方式" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 726 + }, + { + "title": "《中华人民共和国数据安全法》的正式施行日期是____", + "options": [ + "A.2021年6月10日", + "B.2021年7月1日", + "C.2021年9月1日", + "D.2022年1月1日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 727 + }, + { + "title": "负责国家数据安全工作决策和议事协调的最高机构是____", + "options": [ + "A.国务院", + "B.中央国家安全领导机构", + "C.国家网信部门", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 728 + }, + { + "title": "统筹协调全国网络数据安全和相关监管工作的部门是____", + "options": [ + "A.公安部", + "B.国家安全部", + "C.国家网信部门", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 729 + }, + { + "title": "本法所称数据安全,是指通过采取必要措施,确保数据处于有效保护和合法利用的状态,以及具备保障____的能力", + "options": [ + "A.数据完整性", + "B.数据保密性", + "C.持续安全状态", + "D.数据可用性" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 730 + }, + { + "title": "国家建立数据分类分级保护制度,其中实行最严格管理制度的是____", + "options": [ + "A.重要数据", + "B.国家核心数据", + "C.个人信息", + "D.商业秘密" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 731 + }, + { + "title": "重要数据的处理者应当明确____,落实数据安全保护责任", + "options": [ + "A.数据安全负责人和管理机构", + "B.首席数据官", + "C.数据安全专员", + "D.数据治理委员会" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 732 + }, + { + "title": "国家建立数据安全审查制度,对____的数据处理活动进行国家安全审查", + "options": [ + "A.所有类型", + "B.涉及个人信息", + "C.影响或者可能影响国家安全", + "D.涉及商业秘密" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 733 + }, + { + "title": "从事数据交易中介服务的机构提供服务时,应当要求数据提供方____", + "options": [ + "A.提供数据备份", + "B.说明数据来源", + "C.承诺数据安全", + "D.缴纳交易保证金" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 734 + }, + { + "title": "非经中华人民共和国主管机关批准,境内的组织、个人不得向外国司法或者执法机构提供____", + "options": [ + "A.任何数据", + "B.存储于中华人民共和国境内的数据", + "C.公开数据", + "D.商业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 735 + }, + { + "title": "国家构建的政务数据开放平台应当具备的特点是____", + "options": [ + "A.统一规范、互联互通、安全可控", + "B.集中管理、分级授权、免费开放", + "C.政府主导、市场参与、共建共享", + "D.跨域互通、实时更新、全程追溯" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 736 + }, + { + "title": "省级以上人民政府应当将数字经济发展纳入____", + "options": [ + "A.本级财政预算", + "B.本级国民经济和社会发展规划", + "C.年度工作计划", + "D.政府工作报告" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 737 + }, + { + "title": "提供智能化公共服务时,应当充分考虑____的需求,避免对其日常生活造成障碍", + "options": [ + "A.老年人、残疾人", + "B.未成年人", + "C.农村居民", + "D.低收入群体" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 738 + }, + { + "title": "重要数据的处理者应当按照规定对其数据处理活动定期开展风险评估,并向有关主管部门报送____", + "options": [ + "A.数据安全自查报告", + "B.风险评估报告", + "C.数据使用情况报告", + "D.数据泄露应急预案" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 739 + }, + { + "title": "关键信息基础设施运营者在中华人民共和国境内运营中收集和产生的重要数据的出境安全管理,适用____的规定", + "options": [ + "A.《中华人民共和国数据安全法》", + "B.《中华人民共和国网络安全法》", + "C.《中华人民共和国个人信息保护法》", + "D.《中华人民共和国国家安全法》" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 740 + }, + { + "title": "发生数据安全事件时,有关主管部门应当依法____,防止危害扩大", + "options": [ + "A.立即删除相关数据", + "B.启动应急预案,采取相应应急处置措施", + "C.向社会公开所有事件细节", + "D.暂停所有数据处理活动" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 741 + }, + { + "title": "违反本法规定,不履行数据安全保护义务且拒不改正的,最高可处____罚款", + "options": [ + "A.五十万元", + "B.二百万元", + "C.五百万元", + "D.一千万元" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 742 + }, + { + "title": "违反国家核心数据管理制度,危害国家主权、安全和发展利益的,最高可处____罚款", + "options": [ + "A.二百万元", + "B.五百万元", + "C.一千万元", + "D.二千万元" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 743 + }, + { + "title": "未经主管机关批准向外国司法或者执法机构提供数据,造成严重后果的,最高可处____罚款", + "options": [ + "A.一百万元", + "B.二百万元", + "C.五百万元", + "D.一千万元" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 744 + }, + { + "title": "有关主管部门在履行数据安全监管职责中,发现数据处理活动存在较大安全风险的,可以按照规定权限和程序对有关组织、个人进行____", + "options": [ + "A.行政处罚", + "B.刑事立案", + "C.约谈", + "D.查封扣押" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 745 + }, + { + "title": "开展涉及国家秘密的数据处理活动,适用____的规定", + "options": [ + "A.《中华人民共和国数据安全法》", + "B.《中华人民共和国保守国家秘密法》", + "C.《中华人民共和国国家安全法》", + "D.《中华人民共和国网络安全法》" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 746 + }, + { + "title": "本法所称的数据处理活动包括下列哪些行为____", + "options": [ + "A.收集、存储", + "B.使用、加工", + "C.传输、提供", + "D.公开、删除" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 747 + }, + { + "title": "下列关于数据安全法适用范围的说法,正确的有____", + "options": [ + "A.在中华人民共和国境内开展数据处理活动及其安全监管,适用本法", + "B.在中华人民共和国境外开展数据处理活动,损害中华人民共和国国家安全的,依法追究法律责任", + "C.在中华人民共和国境外开展数据处理活动,损害中华人民共和国公共利益的,依法追究法律责任", + "D.在中华人民共和国境外开展数据处理活动,损害中华人民共和国公民、组织合法权益的,依法追究法律责任" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 748 + }, + { + "title": "承担本行业、本领域数据安全监管职责的部门包括____", + "options": [ + "A.工业、电信主管部门", + "B.交通、金融主管部门", + "C.自然资源、卫生健康主管部门", + "D.教育、科技主管部门" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "23", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 749 + }, + { + "title": "国家建立的数据安全制度体系包括____", + "options": [ + "A.数据分类分级保护制度", + "B.数据安全风险评估、报告、信息共享、监测预警机制", + "C.数据安全应急处置机制", + "D.数据安全审查制度和数据出口管制制度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "24", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 750 + }, + { + "title": "国家核心数据包括关系____等方面的数据", + "options": [ + "A.国家安全", + "B.国民经济命脉", + "C.重要民生", + "D.重大公共利益" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 751 + }, + { + "title": "重要数据的处理者应当履行的义务包括____", + "options": [ + "A.建立健全全流程数据安全管理制度", + "B.组织开展数据安全教育培训", + "C.明确数据安全负责人和管理机构", + "D.定期开展风险评估并报送风险评估报告" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "26", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 752 + }, + { + "title": "从事数据交易中介服务的机构应当履行的义务包括____", + "options": [ + "A.要求数据提供方说明数据来源", + "B.审核交易双方的身份", + "C.留存审核、交易记录", + "D.对交易数据进行加密存储" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 753 + }, + { + "title": "国家机关为履行法定职责收集、使用数据,应当遵守的规定包括____", + "options": [ + "A.在法定职责范围内进行", + "B.依照法律、行政法规规定的条件和程序进行", + "C.对知悉的个人隐私、个人信息、商业秘密依法予以保密", + "D.不得泄露或者非法向他人提供" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 754 + }, + { + "title": "违反本法规定,可能承担的法律责任类型包括____", + "options": [ + "A.行政责任", + "B.民事责任", + "C.刑事责任", + "D.违宪责任" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 755 + }, + { + "title": "下列关于政务数据安全与开放的说法,正确的有____主要内容过车时间、车牌号、车型、车速、方向、卡口编号主要内容断面车流量、平均车速、时间占有率车辆经纬度、线路号、车速;乘客上下车刷卡路段平均速度、拥堵指数(第三方脱敏)天气、降雨量;事故、施工、大型活动plate_no(车牌)", + "options": [ + "A.国家大力推进电子政务建设,提升运用数据服务经济社会发展的能力", + "B.国家机关应当建立健全数据安全管理制度,保障政务数据安全", + "C.国家机关应当按照规定及时、准确地公开所有政务数据", + "D.国家构建统一规范、互联互通、安全可控的政务数据开放平台", + "产生/上报方式", + "逐车产生“过车事件”", + "产生/上报方式", + "周期上报“断面指标”", + "持续上报/刷卡交易", + "第三方接口推送", + "接口/人工录入", + "vehicle_type(车型)" + ], + "type": "多选上报频率逐 条 ( 高频)上报频率每 1 分钟10~30 秒分钟级不定时speed(车速km/h)", + "answer": "ABD时效要求秒级(实时)时效要求分钟级准实时分钟级准实时/离线pass_time(过车时间)", + "source_id": "30", + "page_number": 142, + "source_file": "中华人民共和国数据安全法gantry_id(卡口编号)", + "id": 756 + }, + { + "title": "沪A·O12Z3", + "options": [ + "小型客车" + ], + "type": "45", + "answer": "2026-05-3008:15:03", + "source_id": "1001", + "page_number": 152, + "source_file": "G0207", + "id": 757 + }, + { + "title": "沪A·88K21", + "options": [ + "(空)" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1002", + "page_number": 152, + "source_file": "G0207", + "id": 758 + }, + { + "title": "沪A·88K21", + "options": [ + "小型客车" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1003", + "page_number": 152, + "source_file": "G0207", + "id": 759 + }, + { + "title": "沪A·88K21", + "options": [ + "小型客车" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1004", + "page_number": 152, + "source_file": "G0207", + "id": 760 + }, + { + "title": "沪B·5566F", + "options": [ + "大型货车" + ], + "type": "263", + "answer": "2026-05-3008:14:58", + "source_id": "1005", + "page_number": 152, + "source_file": "G0311", + "id": 761 + }, + { + "title": "(空)含义过车记录流水号车牌号含义车型瞬时车速(km/h)过车时间卡口编号", + "options": [ + "小型客车", + "类型", + "BIGINT", + "STRING", + "类型", + "STRING", + "INT", + "TIMESTAMP", + "STRING" + ], + "type": "38是否可空否否是否可空是是否否", + "answer": "2026-05-3008:16:10备注主键个人信息,需脱敏管控备注小型客车 /大型货车等合理范围 0~200存在乱序关联卡口点位维表", + "source_id": "1006", + "page_number": 152, + "source_file": "G0311", + "id": 762 + } +] \ No newline at end of file diff --git a/quiz-app/.gitignore b/quiz-app/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/quiz-app/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/quiz-app/.oxlintrc.json b/quiz-app/.oxlintrc.json new file mode 100644 index 0000000..6fa991d --- /dev/null +++ b/quiz-app/.oxlintrc.json @@ -0,0 +1,8 @@ +{ + "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": ["react", "typescript", "oxc"], + "rules": { + "react/rules-of-hooks": "error", + "react/only-export-components": ["warn", { "allowConstantExport": true }] + } +} diff --git a/quiz-app/README.md b/quiz-app/README.md new file mode 100644 index 0000000..d6af7e3 --- /dev/null +++ b/quiz-app/README.md @@ -0,0 +1,32 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some Oxlint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs) +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) + +## React Compiler + +The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). + +## Expanding the Oxlint configuration + +If you are developing a production application, we recommend enabling type-aware lint rules by installing `oxlint-tsgolint` and editing `.oxlintrc.json`: + +```json +{ + "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": ["react", "typescript", "oxc"], + "options": { + "typeAware": true + }, + "rules": { + "react/rules-of-hooks": "error", + "react/only-export-components": ["warn", { "allowConstantExport": true }] + } +} +``` + +See the [Oxlint rules documentation](https://oxc.rs/docs/guide/usage/linter/rules) for the full list of rules and categories. diff --git a/quiz-app/index.html b/quiz-app/index.html new file mode 100644 index 0000000..8c763c4 --- /dev/null +++ b/quiz-app/index.html @@ -0,0 +1,13 @@ + + + + + + + 大数据技能竞赛刷题平台 + + +
+ + + diff --git a/quiz-app/package-lock.json b/quiz-app/package-lock.json new file mode 100644 index 0000000..369bcab --- /dev/null +++ b/quiz-app/package-lock.json @@ -0,0 +1,1327 @@ +{ + "name": "quiz-app", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "quiz-app", + "version": "0.0.0", + "dependencies": { + "react": "^19.2.8", + "react-dom": "^19.2.8" + }, + "devDependencies": { + "@types/node": "^24.13.3", + "@types/react": "^19.2.17", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^6.0.4", + "oxlint": "^1.75.0", + "typescript": "~6.0.2", + "vite": "^8.2.0" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.144.0", + "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.144.0.tgz", + "integrity": "sha512-nuhZIOLuI6TFQ32I/WnUx+SCPY7SdSKwgnFHydAuoS1+Z4BRcaP+RRJmGzl9lw+0OFF7UmaESf7KQRXaNLHypg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@oxlint/binding-android-arm-eabi": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.78.0.tgz", + "integrity": "sha512-Bu819lmAfZMUHErrpe0cEWj3iaefuUODHSU8+UbXy67V/r7/7f4K3FL0NmbD85E+wiFLDYuhP8Zlv0XnVeXshw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-android-arm64": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-android-arm64/-/binding-android-arm64-1.78.0.tgz", + "integrity": "sha512-CDfxZgB61B7buRdY2FJoAYYPPXCZ1EoC1LKscnC5dg3kjobdxiconvAvvN1BmHyW4PyFT3jRLDag/BY/roSNBQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-darwin-arm64": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.78.0.tgz", + "integrity": "sha512-2Y2U9Ahrz+OO0Ej88f9SJYq51/jUBp1Mc7iZu0ukrbeeZ3gpRGfzIFnoqfHDY96xr0GEfNrPUBFEy0nN5aD7HA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-darwin-x64": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.78.0.tgz", + "integrity": "sha512-rpych6eJq6m9jDRypTEaPD1xysaEW5h9+xuxhGK/QhOg+/xaqPZrCrTNoIl/f3nEjuJeCEmstNDlrE9rJi/3/g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-freebsd-x64": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.78.0.tgz", + "integrity": "sha512-IcMGrQT3QizkOESUJd5et+rOhVqSkNDfNik1cvrKDqIbzqx9KMtRswpFgkCuNTSwylCFLKhGUu8KmqY1ZnC0Dg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-arm-gnueabihf": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.78.0.tgz", + "integrity": "sha512-/uLdoJ0IXE6vo/0f0LKjinQAp+re+VMaCWaNT8ENIv2EOCkSsc8SGaflXAuW0Jua2dq5+GLVWm1NQK7P3UFSNQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-arm-musleabihf": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.78.0.tgz", + "integrity": "sha512-7xi4Wb/O8NRJhLoUXmDJMUVpNYvB5kefdhFU1Jb8rtae4QoXlTiLwI14X4YvAXVZLNZChP8m5qO9SQAlWQTbkQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-arm64-gnu": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.78.0.tgz", + "integrity": "sha512-4hFW0+fVXa3OIh1Y4A5SPkmvI4wuuBSrCVKzOyE7PTjhc7yEqZ1pmvEEeS5Lj/MaqvegFxXyF33N+6jkehxdyg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-arm64-musl": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.78.0.tgz", + "integrity": "sha512-oC0mvsgBJjlMijSDEhx9KuvR9zYeHXceA9MjbuXB1F8NSR78Yj2unOBrstEvTVaq+pko+kuue6DajC00eqvTdg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-ppc64-gnu": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.78.0.tgz", + "integrity": "sha512-XAllT5SUZS+ohjuZ3/5S0cwe0r7eboiuigeStCZ5DXRYx/2KVM2UvQXvAfyzXEimtQjAB7cDQ2YxDe2Zl2WNQQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-riscv64-gnu": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.78.0.tgz", + "integrity": "sha512-trucMER/0QtecoXvc1y/UVqE3kwJipDwrx4oHfj+nNm3dq2zjP44WT0CfHNDPM3G1DXIkx/gY6lAD21NSCZVhA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-riscv64-musl": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.78.0.tgz", + "integrity": "sha512-cm3O4F/HQbdzOUX5mKHqG5KDL6E5w0pnlZ+fbBy2rmLryPOowkuLagFHTopQsEIpjcaZoPOrL+BmmAytAG9HFg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-s390x-gnu": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.78.0.tgz", + "integrity": "sha512-33wRf6HqGNsybJ3qX4cGaQN2ODPxNmc1rMa0mrTmx3eFq1VzOnvQooi9bIGVYakW8a/wmqVx1mgsUm8R2xfTiw==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-x64-gnu": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.78.0.tgz", + "integrity": "sha512-rRdISSYegj6VganMZ9tjRjijowfHJ09IZU01i0toBAqr6n5LEtwHq2IeS4FjW2RoskOHlb6efB26H5izYb3GEQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-linux-x64-musl": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.78.0.tgz", + "integrity": "sha512-GmsP4rW0xTL6u5CVdcDsaN5Fbc7hBc382Wmar1kttbnwSEviM+rSINKOMQ+UQ6iH+AGwC+8gaAiwu134Tgh6Lg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-openharmony-arm64": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.78.0.tgz", + "integrity": "sha512-sy9yeYuADc8a+n4TLBayzMCZiHPW78DcIFVpOXTmdKHWQeM9xe5uzkqIIZmi326D5hY9XVwacipEB1p7tQjPAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-win32-arm64-msvc": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.78.0.tgz", + "integrity": "sha512-rjc2hF1KfMi8fZj1X/m3AmnHbdsF3rL0v6KQg0Uc880Yb2khjz+3U14sfdZ7jWTpRnN1m1NQa/TT7uU9lJWPrA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-win32-ia32-msvc": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.78.0.tgz", + "integrity": "sha512-zcuXFVrEFHIafRfkCQT8w/Xe41o07ozl/vwHq7p94vB29xVzsB0sZGYORU1jhcYKv3Lr0J3HbJ2T4fHH5rWmvA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxlint/binding-win32-x64-msvc": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.78.0.tgz", + "integrity": "sha512-Sb5ocmLSuYeOuXd+CFOToGKp/gjXUEWDnvIGwhnh8aq8wY4TMmEnKnvbogSW7RdMZv77JSARduS7/gv+khYEjA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.4.tgz", + "integrity": "sha512-jHC2cnyKz5xU2fhECtFl8OZ83cYNt13GZQD+0uMJ/X3o+ijmd56okHhTUwxVSHPx1IRVIJEZ1/1pPzeLCU6XKA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-Dc5mPD8F5F/FS8i01syd7FTF6yB2fVthH/TRkjwJkzUK6EpoxHtqvZQP5Zwq80/5z19TWYHIg1KOHboCgVx/aQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.4.tgz", + "integrity": "sha512-fpDm4oBo6SqLvWUYCmFhdde3U9KH2fRNNMeAnAPAIwxRL345xutL0EtEUcuoxsoazdJGv/MuDBQHlCDrtbvqOg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.4.tgz", + "integrity": "sha512-rSJoreDE/HoIzoaib6MTp5jQtCTdMHKIvItAKT/ImS6Y6Ww76oUaeMyp4Vc/fAgd/ehji068IxetHXAnqUwN9A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.4.tgz", + "integrity": "sha512-/jm8OGHgn7oGaJu3i/qZI9spUGcJ+y/lk43ttQ/iO1tOd9NissG6o97bighBCiL+BKRngmcDuR6ikfwYdJmVuQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.4.tgz", + "integrity": "sha512-tIP06BeD9EqvECBrPZ+sqdPlYrT+aYaAiu1wYziVx5elRK/ftm33JxVDy2bXGbr6J0CrtirCkR87/X5a2euEng==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.4.tgz", + "integrity": "sha512-Ql1Q0EQqVThvn9VAVlwNzsUvbSFtCMGjLpRRi4pk5i7NZZ4n5ISiLMjHYtus4VQ2PvkSw24zyaCVsiS+sXPj1w==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.4.tgz", + "integrity": "sha512-GjbjXD4XXfN19D0LZNbmiCBUoDiRACsYHr0yaIbbn8aFsXjHZifcYqu/W5Er5X2X990WjHXFrxarn5chzItorQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.4.tgz", + "integrity": "sha512-p5WR0NOwaRmJ/B1b6IjEFLLivwEsf3PrdBIhRbhTCQisbo2SvHHpG4ELB/+FgQNnB88LTOF86upmJmbvZdQ2lw==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.4.tgz", + "integrity": "sha512-4/GyVjmhR+Tc6HLJvwc1sOhPqAZtySiSMesOZyX6JQ5XBxoTDEMKQzvo07NIK6nTon/SivlZqvhzvuVBNQhObQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.4.tgz", + "integrity": "sha512-l9eeLsCNvPpmSXUej0etw/J1eqV0Jj1D5G/xG6YTijmE6dkv6E2QezgWbTfQk63v952DPqrjOCoiqxq7Bw0YUQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.4.tgz", + "integrity": "sha512-e0F355MSTMm3+UOqtV3L24gFUp2N5m1f8L/7d56deik6va+AXdrt9F8LbzGpeWGWRbZEDq4m8NVnJDeBtf9DZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.4.tgz", + "integrity": "sha512-AWLi0uBRYh6QlE7OKhiz+phZC0qwtij2QZmhmOdsLdFn64m7oMpooE9ICE3lhm9xMb4SpDo2WbHcxX1iFLFtqw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.4.tgz", + "integrity": "sha512-UwSDJOg3dqCAejWdxclJjCsh3Qq4vLYMDxmyHqo1btz3stK2VqgwNd3mm5tuIwzSlGIQ/1H9Hr+Zn09mrezNqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", + "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.13.3", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.13.3.tgz", + "integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.18", + "resolved": "https://registry.npmmirror.com/@types/react/-/react-19.2.18.tgz", + "integrity": "sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmmirror.com/@types/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-Bsc+QHgp+P/F02XDzNCY9jnZNCUuLki36KT7VKrTXXLdHf+vHMNZnW1rVu5DNW/rCK+fya3DATySbLM4yhtKUw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "6.0.5", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-react/-/plugin-react-6.0.5.tgz", + "integrity": "sha512-BOVzne/NL162sMdResB25mUv+vWMF5NoAjNf09TeGlE7ZpszZWSD3winycicLJw72yeVsoCn/2kOhEuCvEShMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rolldown/pluginutils": "^1.0.1" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0", + "babel-plugin-react-compiler": "^1.0.0", + "vite": "^8.0.0" + }, + "peerDependenciesMeta": { + "@rolldown/plugin-babel": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + } + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/lightningcss": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.33.0.tgz", + "integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.33.0", + "lightningcss-darwin-arm64": "1.33.0", + "lightningcss-darwin-x64": "1.33.0", + "lightningcss-freebsd-x64": "1.33.0", + "lightningcss-linux-arm-gnueabihf": "1.33.0", + "lightningcss-linux-arm64-gnu": "1.33.0", + "lightningcss-linux-arm64-musl": "1.33.0", + "lightningcss-linux-x64-gnu": "1.33.0", + "lightningcss-linux-x64-musl": "1.33.0", + "lightningcss-win32-arm64-msvc": "1.33.0", + "lightningcss-win32-x64-msvc": "1.33.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz", + "integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz", + "integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz", + "integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz", + "integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz", + "integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz", + "integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz", + "integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz", + "integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz", + "integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz", + "integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.33.0", + "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz", + "integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/nanoid": { + "version": "3.3.18", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.18.tgz", + "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/oxlint": { + "version": "1.78.0", + "resolved": "https://registry.npmmirror.com/oxlint/-/oxlint-1.78.0.tgz", + "integrity": "sha512-QgQePuxIqKOzo1KSjG2EnITEeWvWnKAm77eq8nrMtf6AGoA+zyGc4PFYtDNJSD25g/ibOwfQ851hZ4/SPkMVoA==", + "dev": true, + "license": "MIT", + "bin": { + "oxlint": "bin/oxlint" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/sponsors/Boshen" + }, + "optionalDependencies": { + "@oxlint/binding-android-arm-eabi": "1.78.0", + "@oxlint/binding-android-arm64": "1.78.0", + "@oxlint/binding-darwin-arm64": "1.78.0", + "@oxlint/binding-darwin-x64": "1.78.0", + "@oxlint/binding-freebsd-x64": "1.78.0", + "@oxlint/binding-linux-arm-gnueabihf": "1.78.0", + "@oxlint/binding-linux-arm-musleabihf": "1.78.0", + "@oxlint/binding-linux-arm64-gnu": "1.78.0", + "@oxlint/binding-linux-arm64-musl": "1.78.0", + "@oxlint/binding-linux-ppc64-gnu": "1.78.0", + "@oxlint/binding-linux-riscv64-gnu": "1.78.0", + "@oxlint/binding-linux-riscv64-musl": "1.78.0", + "@oxlint/binding-linux-s390x-gnu": "1.78.0", + "@oxlint/binding-linux-x64-gnu": "1.78.0", + "@oxlint/binding-linux-x64-musl": "1.78.0", + "@oxlint/binding-openharmony-arm64": "1.78.0", + "@oxlint/binding-win32-arm64-msvc": "1.78.0", + "@oxlint/binding-win32-ia32-msvc": "1.78.0", + "@oxlint/binding-win32-x64-msvc": "1.78.0" + }, + "peerDependencies": { + "oxlint-tsgolint": ">=7.0.2001", + "vite-plus": "*" + }, + "peerDependenciesMeta": { + "oxlint-tsgolint": { + "optional": true + }, + "vite-plus": { + "optional": true + } + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.5.tgz", + "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.26", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.26.tgz", + "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.17", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/react": { + "version": "19.2.8", + "resolved": "https://registry.npmmirror.com/react/-/react-19.2.8.tgz", + "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.8", + "resolved": "https://registry.npmmirror.com/react-dom/-/react-dom-19.2.8.tgz", + "integrity": "sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.8" + } + }, + "node_modules/rolldown": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.2.4.tgz", + "integrity": "sha512-rSr7irW0K7QRWzjdJXqZowkcRdDtjRduh43rBltnVKd0VFq839l1lJoDvGJb6gl7+4rTTCrPWu+YfujUL8Ug7w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@oxc-project/types": "=0.144.0", + "@rolldown/pluginutils": "^1.0.0" + }, + "bin": { + "rolldown": "bin/cli.mjs" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "optionalDependencies": { + "@rolldown/binding-android-arm64": "1.2.4", + "@rolldown/binding-darwin-arm64": "1.2.4", + "@rolldown/binding-darwin-x64": "1.2.4", + "@rolldown/binding-freebsd-x64": "1.2.4", + "@rolldown/binding-linux-arm-gnueabihf": "1.2.4", + "@rolldown/binding-linux-arm64-gnu": "1.2.4", + "@rolldown/binding-linux-arm64-musl": "1.2.4", + "@rolldown/binding-linux-ppc64-gnu": "1.2.4", + "@rolldown/binding-linux-s390x-gnu": "1.2.4", + "@rolldown/binding-linux-x64-gnu": "1.2.4", + "@rolldown/binding-linux-x64-musl": "1.2.4", + "@rolldown/binding-openharmony-arm64": "1.2.4", + "@rolldown/binding-win32-arm64-msvc": "1.2.4", + "@rolldown/binding-win32-x64-msvc": "1.2.4" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmmirror.com/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.17", + "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/typescript": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.18.2", + "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "8.2.1", + "resolved": "https://registry.npmmirror.com/vite/-/vite-8.2.1.tgz", + "integrity": "sha512-EU/eS7BH3XROHh2YnBefjM6DBKA6ZeMZEYQbj7NLWg5wHYlhB8B/Mayd5XsgWq+NFYccDOTemRpdETWR6Ka/lw==", + "dev": true, + "license": "MIT", + "dependencies": { + "lightningcss": "^1.33.0", + "picomatch": "^4.0.5", + "postcss": "^8.5.25", + "rolldown": "~1.2.1", + "tinyglobby": "^0.2.17" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "@vitejs/devtools": "^0.4.0", + "esbuild": "^0.27.0 || ^0.28.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "@vitejs/devtools": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + } + } +} diff --git a/quiz-app/package.json b/quiz-app/package.json new file mode 100644 index 0000000..7c6cb64 --- /dev/null +++ b/quiz-app/package.json @@ -0,0 +1,25 @@ +{ + "name": "quiz-app", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "oxlint", + "preview": "vite preview" + }, + "dependencies": { + "react": "^19.2.8", + "react-dom": "^19.2.8" + }, + "devDependencies": { + "@types/node": "^24.13.3", + "@types/react": "^19.2.17", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^6.0.4", + "oxlint": "^1.75.0", + "typescript": "~6.0.2", + "vite": "^8.2.0" + } +} diff --git a/quiz-app/public/favicon.svg b/quiz-app/public/favicon.svg new file mode 100644 index 0000000..6893eb1 --- /dev/null +++ b/quiz-app/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/quiz-app/public/icons.svg b/quiz-app/public/icons.svg new file mode 100644 index 0000000..e952219 --- /dev/null +++ b/quiz-app/public/icons.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/quiz-app/src/App.css b/quiz-app/src/App.css new file mode 100644 index 0000000..f90339d --- /dev/null +++ b/quiz-app/src/App.css @@ -0,0 +1,184 @@ +.counter { + font-size: 16px; + padding: 5px 10px; + border-radius: 5px; + color: var(--accent); + background: var(--accent-bg); + border: 2px solid transparent; + transition: border-color 0.3s; + margin-bottom: 24px; + + &:hover { + border-color: var(--accent-border); + } + &:focus-visible { + outline: 2px solid var(--accent); + outline-offset: 2px; + } +} + +.hero { + position: relative; + + .base, + .framework, + .vite { + inset-inline: 0; + margin: 0 auto; + } + + .base { + width: 170px; + position: relative; + z-index: 0; + } + + .framework, + .vite { + position: absolute; + } + + .framework { + z-index: 1; + top: 34px; + height: 28px; + transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg) + scale(1.4); + } + + .vite { + z-index: 0; + top: 107px; + height: 26px; + width: auto; + transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg) + scale(0.8); + } +} + +#center { + display: flex; + flex-direction: column; + gap: 25px; + place-content: center; + place-items: center; + flex-grow: 1; + + @media (max-width: 1024px) { + padding: 32px 20px 24px; + gap: 18px; + } +} + +#next-steps { + display: flex; + border-top: 1px solid var(--border); + text-align: left; + + & > div { + flex: 1 1 0; + padding: 32px; + @media (max-width: 1024px) { + padding: 24px 20px; + } + } + + .icon { + margin-bottom: 16px; + width: 22px; + height: 22px; + } + + @media (max-width: 1024px) { + flex-direction: column; + text-align: center; + } +} + +#docs { + border-right: 1px solid var(--border); + + @media (max-width: 1024px) { + border-right: none; + border-bottom: 1px solid var(--border); + } +} + +#next-steps ul { + list-style: none; + padding: 0; + display: flex; + gap: 8px; + margin: 32px 0 0; + + .logo { + height: 18px; + } + + a { + color: var(--text-h); + font-size: 16px; + border-radius: 6px; + background: var(--social-bg); + display: flex; + padding: 6px 12px; + align-items: center; + gap: 8px; + text-decoration: none; + transition: box-shadow 0.3s; + + &:hover { + box-shadow: var(--shadow); + } + .button-icon { + height: 18px; + width: 18px; + } + } + + @media (max-width: 1024px) { + margin-top: 20px; + flex-wrap: wrap; + justify-content: center; + + li { + flex: 1 1 calc(50% - 8px); + } + + a { + width: 100%; + justify-content: center; + box-sizing: border-box; + } + } +} + +#spacer { + height: 88px; + border-top: 1px solid var(--border); + @media (max-width: 1024px) { + height: 48px; + } +} + +.ticks { + position: relative; + width: 100%; + + &::before, + &::after { + content: ''; + position: absolute; + top: -4.5px; + border: 5px solid transparent; + } + + &::before { + left: 0; + border-left-color: var(--border); + } + &::after { + right: 0; + border-right-color: var(--border); + } +} diff --git a/quiz-app/src/App.tsx b/quiz-app/src/App.tsx new file mode 100644 index 0000000..823c287 --- /dev/null +++ b/quiz-app/src/App.tsx @@ -0,0 +1,229 @@ +import { useState, useEffect } from 'react'; +import questionsData from './questions.json'; +import './index.css'; + +interface Question { + id: number; + source_id?: string; + source_file?: string; + page_number?: number; + title: string; + options: string[]; + type: string; + answer: string; +} + +export default function App() { + const [questions] = useState(questionsData); + const [currentQuestion, setCurrentQuestion] = useState(null); + const [selectedOptions, setSelectedOptions] = useState([]); + const [isSubmitted, setIsSubmitted] = useState(false); + const [weights, setWeights] = useState>({}); + const [history, setHistory] = useState([]); + const [totalAnswered, setTotalAnswered] = useState(0); + + // Load weights from localStorage on init + useEffect(() => { + const savedWeights = localStorage.getItem('quiz_weights'); + if (savedWeights) { + setWeights(JSON.parse(savedWeights)); + } else { + const initialWeights: Record = {}; + questions.forEach(q => { + initialWeights[q.id] = 1; + }); + setWeights(initialWeights); + } + + const savedHistory = localStorage.getItem('quiz_history'); + if (savedHistory) { + setHistory(JSON.parse(savedHistory)); + } + const savedTotal = localStorage.getItem('quiz_total'); + if (savedTotal) { + setTotalAnswered(JSON.parse(savedTotal)); + } + }, [questions]); + + // Pick a random question based on weights + const pickRandomQuestion = (latestWeights?: Record) => { + if (questions.length === 0) return; + + // Calculate total weight + let totalWeight = 0; + const currentWeights = latestWeights || weights; + questions.forEach(q => { + totalWeight += (currentWeights[q.id] || 1); + }); + + let randomNum = Math.random() * totalWeight; + let selectedQ = questions[0]; + + for (const q of questions) { + randomNum -= (currentWeights[q.id] || 1); + if (randomNum <= 0) { + selectedQ = q; + break; + } + } + + setCurrentQuestion(selectedQ); + setSelectedOptions([]); + setIsSubmitted(false); + }; + + // Initial load + useEffect(() => { + if (Object.keys(weights).length > 0 && !currentQuestion) { + pickRandomQuestion(); + } + }, [weights]); + + const handleOptionClick = (optionLabel: string) => { + if (isSubmitted) return; + + // extract letter A, B, C... + const letter = optionLabel.charAt(0); + + if (currentQuestion?.type === '单选') { + setSelectedOptions([letter]); + handleSubmit([letter]); + } else { + // Multi-select + setSelectedOptions(prev => + prev.includes(letter) + ? prev.filter(l => l !== letter) + : [...prev, letter] + ); + } + }; + + const handleSubmit = (autoSubmitOptions?: string[]) => { + const currentSelection = Array.isArray(autoSubmitOptions) ? autoSubmitOptions : selectedOptions; + if (currentSelection.length === 0 || !currentQuestion) return; + + const userAns = [...currentSelection].sort().join(''); + const isCorrect = userAns === currentQuestion.answer; + + setIsSubmitted(true); + + // Update stats (history of last 100) + const newHistory = [...history, isCorrect].slice(-100); + setHistory(newHistory); + localStorage.setItem('quiz_history', JSON.stringify(newHistory)); + + const newTotal = totalAnswered + 1; + setTotalAnswered(newTotal); + localStorage.setItem('quiz_total', JSON.stringify(newTotal)); + + // Update weights + const newWeights = { ...weights }; + const currentWeight = newWeights[currentQuestion.id] || 1; + + if (isCorrect) { + newWeights[currentQuestion.id] = Math.max(1, currentWeight - 1); + } else { + newWeights[currentQuestion.id] = currentWeight + 3; // Increase weight heavily on error + } + + setWeights(newWeights); + localStorage.setItem('quiz_weights', JSON.stringify(newWeights)); + + if (isCorrect) { + setTimeout(() => { + pickRandomQuestion(newWeights); + }, 1000); + } + }; + + if (!currentQuestion) return
Loading...
; + + const userAns = [...selectedOptions].sort().join(''); + const isCorrect = isSubmitted && userAns === currentQuestion.answer; + + return ( +
+
+ {currentQuestion.type} + + Weight: {weights[currentQuestion.id] || 1} + +
+ +
+ {currentQuestion.title} +
+ +
+ {currentQuestion.options.map((opt, i) => { + const letter = opt.charAt(0); + const isSelected = selectedOptions.includes(letter); + + let className = 'option'; + if (isSelected) className += ' selected'; + + if (isSubmitted) { + className += ' disabled'; + const isCorrectOption = currentQuestion.answer.includes(letter); + if (isCorrectOption) { + className += ' correct'; + } else if (isSelected && !isCorrectOption) { + className += ' incorrect'; + } + } + + return ( +
handleOptionClick(opt)} + > + {opt} +
+ ); + })} +
+ + {!isSubmitted ? ( +
+ {currentQuestion.type !== '单选' && ( + + )} +
+ ) : ( + <> +
+

+ {isCorrect ? '✅ 回答正确!' : '❌ 回答错误'} +

+

+ 正确答案是:{currentQuestion.answer} +

+ {!isCorrect && ( +
+
本题出处:题库第 {currentQuestion.source_id || currentQuestion.id} 题
+
来源文件:{currentQuestion.source_file || '未知'}
+
PDF页码:第 {currentQuestion.page_number || '?'} 页
+
+ )} +
+
+ +
+ + )} + +
+ 已刷题:{totalAnswered} 道 + 近100题正确率:{history.length > 0 ? Math.round((history.filter(Boolean).length / history.length) * 100) : 0}% +
+
+ ); +} diff --git a/quiz-app/src/assets/hero.png b/quiz-app/src/assets/hero.png new file mode 100644 index 0000000..02251f4 Binary files /dev/null and b/quiz-app/src/assets/hero.png differ diff --git a/quiz-app/src/assets/react.svg b/quiz-app/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/quiz-app/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/quiz-app/src/assets/vite.svg b/quiz-app/src/assets/vite.svg new file mode 100644 index 0000000..5101b67 --- /dev/null +++ b/quiz-app/src/assets/vite.svg @@ -0,0 +1 @@ +Vite diff --git a/quiz-app/src/index.css b/quiz-app/src/index.css new file mode 100644 index 0000000..31bcff2 --- /dev/null +++ b/quiz-app/src/index.css @@ -0,0 +1,212 @@ +:root { + font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + --bg-color: #0f172a; + --text-color: #f8fafc; + --card-bg: rgba(30, 41, 59, 0.7); + --card-border: rgba(255, 255, 255, 0.1); + --primary-color: #3b82f6; + --primary-hover: #2563eb; + --success-color: #10b981; + --error-color: #ef4444; + --option-bg: rgba(255, 255, 255, 0.05); + --option-hover: rgba(255, 255, 255, 0.1); + --option-selected: rgba(59, 130, 246, 0.2); + --option-border: rgba(255, 255, 255, 0.1); +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; + background-color: var(--bg-color); + color: var(--text-color); + background-image: + radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), + radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), + radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%); + background-attachment: fixed; + background-size: cover; +} + +#root { + max-width: 800px; + margin: 0 auto; + padding: 2rem; + width: 100%; + box-sizing: border-box; +} + +.glass-card { + background: var(--card-bg); + backdrop-filter: blur(16px); + -webkit-backdrop-filter: blur(16px); + border: 1px solid var(--card-border); + border-radius: 24px; + padding: 2.5rem; + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); + animation: slideUp 0.5s ease-out forwards; +} + +@keyframes slideUp { + from { + opacity: 0; + transform: translateY(20px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 2rem; + border-bottom: 1px solid var(--card-border); + padding-bottom: 1rem; +} + +.title-tag { + background: var(--primary-color); + color: white; + padding: 0.25rem 0.75rem; + border-radius: 9999px; + font-size: 0.875rem; + font-weight: 600; + letter-spacing: 0.05em; +} + +.question-title { + font-size: 1.5rem; + font-weight: 600; + margin-bottom: 2rem; + line-height: 1.6; +} + +.options-container { + display: flex; + flex-direction: column; + gap: 1rem; +} + +.option { + display: flex; + align-items: center; + padding: 1rem 1.5rem; + border-radius: 12px; + background: var(--option-bg); + border: 1px solid var(--option-border); + cursor: pointer; + transition: all 0.2s ease; + font-size: 1.1rem; +} + +.option:hover:not(.disabled) { + background: var(--option-hover); + transform: translateY(-2px); +} + +.option.selected { + background: var(--option-selected); + border-color: var(--primary-color); +} + +.option.correct { + background: rgba(16, 185, 129, 0.2); + border-color: var(--success-color); +} + +.option.incorrect { + background: rgba(239, 68, 68, 0.2); + border-color: var(--error-color); +} + +.option.disabled { + cursor: default; + opacity: 0.8; +} + +.action-container { + margin-top: 2.5rem; + display: flex; + justify-content: flex-end; +} + +button { + background: var(--primary-color); + color: white; + border: none; + padding: 0.875rem 2rem; + border-radius: 12px; + font-size: 1.1rem; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +button:hover:not(:disabled) { + background: var(--primary-hover); + transform: translateY(-2px); + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +button:disabled { + opacity: 0.5; + cursor: not-allowed; +} + +.feedback { + margin-top: 2rem; + padding: 1.5rem; + border-radius: 12px; + animation: fadeIn 0.3s ease-out; +} + +.feedback.correct { + background: rgba(16, 185, 129, 0.1); + border-left: 4px solid var(--success-color); +} + +.feedback.incorrect { + background: rgba(239, 68, 68, 0.1); + border-left: 4px solid var(--error-color); +} + +@keyframes fadeIn { + from { opacity: 0; } + to { opacity: 1; } +} + +.stats { + display: flex; + justify-content: space-between; + font-size: 0.875rem; + color: #94a3b8; + margin-top: 1.5rem; + padding-top: 1.5rem; + border-top: 1px solid var(--card-border); +} + +@media (max-width: 600px) { + #root { + padding: 1rem; + } + .glass-card { + padding: 1.5rem; + } + .question-title { + font-size: 1.25rem; + } + .option { + padding: 0.875rem 1rem; + font-size: 1rem; + } +} diff --git a/quiz-app/src/main.tsx b/quiz-app/src/main.tsx new file mode 100644 index 0000000..bef5202 --- /dev/null +++ b/quiz-app/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.tsx' + +createRoot(document.getElementById('root')!).render( + + + , +) diff --git a/quiz-app/src/questions.json b/quiz-app/src/questions.json new file mode 100644 index 0000000..5d3e754 --- /dev/null +++ b/quiz-app/src/questions.json @@ -0,0 +1,11465 @@ +[ + { + "title": "到______年底,我国数据流通服务机构能力将实现显著提升,全社会数据流通利用水平明显提高", + "options": [ + "A.2027", + "B.2028", + "C.2029", + "D.2030" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 1 + }, + { + "title": "下列不属于数据流通服务机构范畴的是", + "options": [ + "A.数据交易所(中心)", + "B.数据流通服务平台企业", + "C.数据商", + "D.数据安全执法机构" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 2 + }, + { + "title": "数据交易所(中心)应强化合规保障、供需匹配等______服务功能", + "options": [ + "A.综合", + "B.基础", + "C.核心", + "D.增值" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 3 + }, + { + "title": "鼓励云服务平台企业强化数据汇聚、生态链接功能,探索______数据流通利用新模式", + "options": [ + "A.一站式", + "B.全链条", + "C.场景化", + "D.专业化" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 4 + }, + { + "title": "支持符合条件的数据商参与______资源开发利用,提升公共数据产品化服务化开发能力", + "options": [ + "A.公共数据", + "B.企业数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 5 + }, + { + "title": "鼓励各类主体拓展数据交换方式,下列不属于文件明确支持的是", + "options": [ + "A.数据换数据", + "B.数据换模型", + "C.数据换股权", + "D.数据换场景" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 3, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 6 + }, + { + "title": "探索数据______等数据价值实现新路径", + "options": [ + "A.自由转让", + "B.作价出资", + "C.证券化", + "D.质押融资" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 7 + }, + { + "title": "下列属于资源型数据产品和服务的是", + "options": [ + "A.数据分析报告", + "B.高质量数据集", + "C.数据指数", + "D.数据可视化" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 8 + }, + { + "title": "支持数据流通服务机构强化______协同,结合产业需求建设数据领域科技创新平台基地", + "options": [ + "A.政企", + "B.校企", + "C.产学研用", + "D.政产学研" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 9 + }, + { + "title": "支持各类数据流通服务机构加强与______企业合作,依托数据基础设施提供模型训练等服务", + "options": [ + "A.工业", + "B.金融", + "C.人工智能", + "D.互联网" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 10 + }, + { + "title": "推动数据交易所建立完善数据流通交易合同______规程和标准", + "options": [ + "A.签订", + "B.履行", + "C.备案", + "D.解除" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 11 + }, + { + "title": "鼓励企业单列______科目,支持数据交易所提升服务各类主体数据采购能力", + "options": [ + "A.数据资产", + "B.数据采购", + "C.研发支出", + "D.管理费用" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 4, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 12 + }, + { + "title": "探索符合数据要素特性的______机制,鼓励披露数据交易价格信息", + "options": [ + "A.政府定价", + "B.价格形成", + "C.市场调节", + "D.协商定价" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 13 + }, + { + "title": "下列不属于第三方专业服务机构可提供的服务是", + "options": [ + "A.合规审计", + "B.数据保险", + "C.数据采集", + "D.争议仲裁" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 14 + }, + { + "title": "支持有条件的数据流通服务机构利用______等先行先试政策,探索数据跨境新型业务模式", + "options": [ + "A.经济技术开发区", + "B.自由贸易试验区", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 15 + }, + { + "title": "______要充分发挥统筹协调作用,会同相关部门建立健全数据流通服务机构管理体系", + "options": [ + "A.工业和信息化部", + "B.国家数据局", + "C.公安部", + "D.中国证监会" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 16 + }, + { + "title": "严格规范数据交易所(中心)设立审批,统筹优化布局,______数量,适时开展整合优化", + "options": [ + "A.适度增加", + "B.严控", + "C.逐步放开", + "D.不限" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 17 + }, + { + "title": "建立健全______机制,探索建立试错容错机制,鼓励在风险可控前提下开展创新探索", + "options": [ + "A.终身追责", + "B.尽职免责", + "C.一票否决", + "D.连带责任" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 5, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 18 + }, + { + "title": "下列关于数据流通服务机构功能定位的表述,正确的是", + "options": [ + "A.数据商主要负责制定数据流通交易规则和标准", + "B.数据流通服务平台企业应发挥引领带动作用", + "C.数据交易所(中心)应构建全链条数据流通交易服务体系", + "D.云服务平台企业主要负责数据资产入表服务" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 19 + }, + { + "title": "某数据流通服务机构拟开展数据跨境业务,根据本意见,其可探索的新型业务模式是", + "options": [ + "A.数据自由出境", + "B.数据跨境合规咨询", + "C.数据跨境证券化", + "D.数据跨境质押融资" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 20 + }, + { + "title": "数据流通服务机构是链接数据供需双方的重要主体,主要包括", + "options": [ + "A.数据交易所(中心)", + "B.数据流通服务平台企业", + "C.数据商", + "D.数据安全执法机构" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 21 + }, + { + "title": "数据交易所(中心)应强化的综合服务功能包括", + "options": [ + "A.价格发现", + "B.产品开发", + "C.生态培育", + "D.合规保障" + ], + "type": "多选", + "answer": "ABC", + "source_id": "22", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 22 + }, + { + "title": "支持各类数据流通服务平台企业围绕______,促进数据流通利用和价值共创", + "options": [ + "A.产业链", + "B.供应链", + "C.平台生态", + "D.政府治理" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 6, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 23 + }, + { + "title": "鼓励各类主体拓展的数据交换方式包括", + "options": [ + "A.数据换数据", + "B.数据换订单", + "C.数据换服务", + "D.数据换股权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 24 + }, + { + "title": "下列属于分析决策型数据产品和服务的有", + "options": [ + "A.核验查询", + "B.数据分析报告", + "C.数据指数", + "D.高质量数据集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 25 + }, + { + "title": "支持数据流通服务机构提供数据资产______服务,积极推进数据资产入表", + "options": [ + "A.合规化", + "B.标准化", + "C.增值化", + "D.证券化" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 26 + }, + { + "title": "第三方专业服务机构可拓展的专业服务包括", + "options": [ + "A.合规审计", + "B.数据保险", + "C.资产评估", + "D.数据采集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 27 + }, + { + "title": "各地不得对数据开发利用和流通交易设置不合理的______,限制数据跨区域流动", + "options": [ + "A.要求", + "B.审批条件", + "C.流程", + "D.收费标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "28", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 28 + }, + { + "title": "建立跨部门协同监管机制,严厉打击______等违法违规行为", + "options": [ + "A.虚构交易", + "B.市场操纵", + "C.数据黑产", + "D.数据共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 7, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 29 + }, + { + "title": "某数据商在开展业务过程中,下列行为符合本意见要求的有", + "options": [ + "A.通过自采销售方式拓展数据获取渠道", + "B.深入行业场景开发数据产品", + "C.参与公共数据资源开发利用", + "D.自行制定数据流通交易规则" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 8, + "source_file": "国家数据局等部门关于培育数据流通服务机构 加快推进数据要素市场化价值化的意见(国数政策〔2026〕6号)", + "id": 30 + }, + { + "title": "《政务数据共享条例》的施行日期是", + "options": [ + "A.2025年5月9日", + "B.2025年5月28日", + "C.2025年8月1日", + "D.2025年6月3日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 31 + }, + { + "title": "《政务数据共享条例》对应的国务院令号是", + "options": [ + "A.第 807 号", + "B.第808 号", + "C.第 809 号", + "D.第810号" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 32 + }, + { + "title": "本条例所称政务数据不包括", + "options": [ + "A.政府部门依法履职收集的数据", + "B.政府部门依法履职产生的数据", + "C.国家秘密和工作秘密", + "D.公共事务管理组织履职产生的数据" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 33 + }, + { + "title": "下列不属于政务数据共享工作基本原则的是", + "options": [ + "A.统筹协调", + "B.标准统一", + "C.有偿使用", + "D.安全可控" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 34 + }, + { + "title": "负责统筹推进全国政务数据共享工作的部门是", + "options": [ + "A.国家发展和改革委员会", + "B.国务院政务数据共享主管部门", + "C.工业和信息化部", + "D.国家互联网信息办公室" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 35 + }, + { + "title": "政府部门因职责变化需更新政务数据目录的,一般应在变化发生之日起______个工作日内完成更新", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 36 + }, + { + "title": "政务数据共享主管部门收到更新后的政务数据目录,应当在______个工作日内完成审核并发布", + "options": [ + "A.2", + "B.5", + "C.10", + "D.15" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 37 + }, + { + "title": "政务数据按照共享属性分为______类", + "options": [ + "A.二", + "B.三", + "C.四", + "D.五" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 9, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 38 + }, + { + "title": "对于无条件共享类政务数据,提供部门应当自收到申请之日起______个工作日内作出答复", + "options": [ + "A.1", + "B.3", + "C.5", + "D.10" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 39 + }, + { + "title": "对于有条件共享类政务数据,提供部门一般应当自收到申请之日起______个工作日内作出答复", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 40 + }, + { + "title": "政务数据提供部门作出同意共享的答复后,应当在______个工作日内完成数据共享", + "options": [ + "A.10", + "B.15", + "C.20", + "D.30" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 41 + }, + { + "title": "政务数据需求部门发现数据不准确提出校核申请的,提供部门应当在______个工作日内核实更正并反馈", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 42 + }, + { + "title": "政务数据共享使用记录的保存期限不少于", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 43 + }, + { + "title": "统筹构建国家政务大数据平台的部门是", + "options": [ + "A.国务院办公厅", + "B.国务院政务数据共享主管部门", + "C.国家数据局", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 44 + }, + { + "title": "政务数据共享安全管理遵循的原则是", + "options": [ + "A.谁收集谁负责、谁存储谁负责", + "B.谁管理谁负责、谁使用谁负责", + "C.谁提供谁负责、谁接收谁负责", + "D.谁审批谁负责、谁执行谁负责" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 10, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 45 + }, + { + "title": "政务数据共享工作所需经费应当列入", + "options": [ + "A.部门专项经费", + "B.本级预算", + "C.上级转移支付", + "D.信息化项目经费" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 46 + }, + { + "title": "下列属于政务数据需求部门法律责任的是", + "options": [ + "A.未按时更新政务数据目录", + "B.擅自增设共享条件", + "C.重复收集可通过共享获取的数据", + "D.未按时回流下级政务数据" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 47 + }, + { + "title": "政府部门委托他人处理政务数据时,受托方可以实施的行为是", + "options": [ + "A.擅自访问政务数据", + "B.按照合同约定加工政务数据", + "C.留存政务数据", + "D.向他人提供政务数据" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 48 + }, + { + "title": "下列关于政务数据共享争议解决的表述,正确的是", + "options": [ + "A.同级部门争议直接由本级人民政府决定", + "B.跨层级争议由上级政务数据共享主管部门协调", + "C.跨地域争议由共同的上级人民政府协调", + "D.协商不成的可直接向人民法院起诉" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 49 + }, + { + "title": "某政府部门申请共享有条件共享类政务数据,提供部门经批准最长可将答复期限延长至", + "options": [ + "A.15个工作日", + "B.20个工作日", + "C.25个工作日", + "D.30个工作日" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 50 + }, + { + "title": "政务数据共享工作应当遵循的原则包括", + "options": [ + "A.统筹协调", + "B.标准统一", + "C.依法共享", + "D.有偿使用" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 51 + }, + { + "title": "下列属于政府部门政务数据共享工作机构职责的有", + "options": [ + "A.编制本部门政务数据目录", + "B.审核针对本部门的共享申请", + "C.制定全国政务数据共享标准", + "D.统筹全国政务数据平台建设" + ], + "type": "多选", + "answer": "AB", + "source_id": "22", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 52 + }, + { + "title": "政务数据目录应当明确的信息包括", + "options": [ + "A.数据项", + "B.提供单位", + "C.更新频率", + "D.商业价值" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 11, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 53 + }, + { + "title": "政务数据提供部门可以通过哪些方式共享政务数据", + "options": [ + "A.服务接口", + "B.批量交换", + "C.文件下载", + "D.公开售卖" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 54 + }, + { + "title": "下列属于政务数据需求部门违法违规行为的有", + "options": [ + "A.重复收集可通过共享获取的数据", + "B.擅自扩大共享数据使用范围", + "C.未按时答复共享申请", + "D.未按规定保存数据使用记录" + ], + "type": "多选", + "answer": "ABD", + "source_id": "25", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 55 + }, + { + "title": "国家鼓励在政务数据共享中应用的新技术包括", + "options": [ + "A.大数据", + "B.云计算", + "C.人工智能", + "D.量子计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 56 + }, + { + "title": "政务数据共享主管部门应当会同哪些部门推进安全管理制度建设", + "options": [ + "A.网信部门", + "B.公安部门", + "C.市场监管部门", + "D.保密行政管理部门" + ], + "type": "多选", + "answer": "ABD", + "source_id": "27", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 57 + }, + { + "title": "下列关于政务数据使用的表述,正确的有", + "options": [ + "A.不得擅自将共享数据提供给第三方", + "B.确需扩大使用范围需经提供部门同意", + "C.共享目的实现后可自行销毁数据", + "D.可将共享数据用于商业用途" + ], + "type": "多选", + "answer": "AB", + "source_id": "28", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 58 + }, + { + "title": "全国一体化政务大数据体系的建设要求包括", + "options": [ + "A.标准统一", + "B.布局合理", + "C.管理协同", + "D.开放共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 59 + }, + { + "title": "某政府部门在政务数据共享工作中,下列行为违反本条例规定的有", + "options": [ + "A.擅自增设共享条件阻碍数据共享", + "B.无正当理由未按时答复共享申请", + "C.将共享数据用于履行职责以外的目的", + "D.建立政务数据全过程质量管理体系" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 12, + "source_file": "政务数据共享条例(中华人民共和国国务院令第809号)", + "id": 60 + }, + { + "title": "数据产权不包含下列哪项财产性权利", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据所有权", + "D.数据经营权" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 61 + }, + { + "title": "数据产权登记机构审核的核心内容不包括", + "options": [ + "A.数据来源真实性", + "B.数据商业价值", + "C.数据内容准确性", + "D.数据合规性" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 62 + }, + { + "title": "数据持有权的核心设立目的是", + "options": [ + "A.对外提供数据获取收益", + "B.防范他人非法窃取、篡改、泄露数据", + "C.加工数据形成衍生产品", + "D.转让数据权利获取对价" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 63 + }, + { + "title": "数据使用权一般是指权利人在什么前提下的内部使用权利", + "options": [ + "A.不对外提供数据", + "B.不加工处理数据", + "C.不存储备份数据", + "D.不分析挖掘数据" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 64 + }, + { + "title": "权利人通过转让、许可、出资等方式对外提供数据的权利是", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据经营权", + "D.数据收益权" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 65 + }, + { + "title": "衍生数据的核心形成条件是对原始数据进行", + "options": [ + "A.简单复制备份", + "B.内容、形式、结构的实质改变", + "C.格式转换", + "D.批量下载整理" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 13, + "source_file": "数据领域常用名词解释(第二批)", + "id": 66 + }, + { + "title": "企业数据是指企业在什么过程中形成或合法获取持有的数据", + "options": [ + "A.政府监管执法", + "B.生产经营活动", + "C.公益服务提供", + "D.行业自律管理" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 67 + }, + { + "title": "专门为数据供方、需方提供数据交易服务的专业机构是", + "options": [ + "A.数据第三方专业服务机构", + "B.数据交易机构", + "C.数据标注企业", + "D.算力服务提供商" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 68 + }, + { + "title": "数据场内交易的核心特征是", + "options": [ + "A.通过数据交易机构达成交易", + "B.交易价格公开透明", + "C.交易数据全部为公共数据", + "D.交易流程由政府监管" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 69 + }, + { + "title": "数据场外交易的核心定义是", + "options": [ + "A.交易价格不公开的交易", + "B.不通过数据交易机构达成的交易", + "C.交易数据不合法的交易", + "D.跨区域进行的交易" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 70 + }, + { + "title": "帮助数据供方和需方达成数据交易的行为被称为", + "options": [ + "A.数据交易撮合", + "B.数据合规认证", + "C.数据资产评估", + "D.数据安全审计" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 71 + }, + { + "title": "下列不属于数据第三方专业服务机构提供的服务是", + "options": [ + "A.数据经纪", + "B.合规认证", + "C.原始数据采集", + "D.争议调解" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 72 + }, + { + "title": "数据产业不包含下列哪个环节", + "options": [ + "A.数据采集汇聚", + "B.计算存储", + "C.通用硬件制造", + "D.安全治理" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 14, + "source_file": "数据领域常用名词解释(第二批)", + "id": 73 + }, + { + "title": "数据标注产业主要从事的数据加工处理工作是", + "options": [ + "A.建模分析", + "B.筛选、清洗、分类、注释、标记", + "C.流通交易", + "D.价值评估" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 74 + }, + { + "title": "数字产业集群的核心驱动因素是", + "options": [ + "A.资本投入", + "B.数据要素", + "C.政策支持", + "D.技术引进" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 75 + }, + { + "title": "可信数据空间不具备的核心能力是", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "16", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 76 + }, + { + "title": "数据使用控制可通过什么技术将数据使用意愿转化为可机读条款", + "options": [ + "A.区块链技术", + "B.智能合约技术", + "C.人工智能技术", + "D.云计算技术" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 77 + }, + { + "title": "数据基础设施是面向社会提供什么服务的新型基础设施", + "options": [ + "A.数据全生命周期", + "B.仅数据存储服务", + "C.仅数据计算服务", + "D.仅数据安全服务" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 78 + }, + { + "title": "算力调度的本质是", + "options": [ + "A.存储资源调度", + "B.计算任务调度", + "C.网络资源调度", + "D.数据资源调度" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 15, + "source_file": "数据领域常用名词解释(第二批)", + "id": 79 + }, + { + "title": "算力池化主要通过什么技术实现异构、异地算力资源的统一管理", + "options": [ + "A.算力虚拟化和应用容器化", + "B.分布式存储技术", + "C.边缘计算技术", + "D.量子计算技术" + ], + "type": "单选", + "answer": "A", + "source_id": "20", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 80 + }, + { + "title": "数据产权包含的财产性权利有", + "options": [ + "A.数据持有权", + "B.数据使用权", + "C.数据经营权", + "D.数据所有权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 81 + }, + { + "title": "衍生数据的形成方式包括", + "options": [ + "A.专业知识加工", + "B.建模分析", + "C.关键信息提取", + "D.简单复制粘贴" + ], + "type": "多选", + "answer": "ABC", + "source_id": "22", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 82 + }, + { + "title": "数据第三方专业服务机构可提供的服务有", + "options": [ + "A.质量评价", + "B.合规认证", + "C.原始数据采集", + "D.数据保险" + ], + "type": "多选", + "answer": "ABD", + "source_id": "23", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 83 + }, + { + "title": "数据产业涵盖的核心环节包括", + "options": [ + "A.流通交易", + "B.开发利用", + "C.安全治理", + "D.数据基础设施建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "24", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 84 + }, + { + "title": "可信数据空间的核心能力包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 16, + "source_file": "数据领域常用名词解释(第二批)", + "id": 85 + }, + { + "title": "数据使用控制可以对数据资产使用的哪些因素进行管控", + "options": [ + "A.时间和地点", + "B.主体和行为", + "C.客体", + "D.商业价值" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 86 + }, + { + "title": "数据基础设施集成的核心要素包括", + "options": [ + "A.硬件和软件", + "B.模型算法", + "C.标准规范", + "D.机制设计" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 87 + }, + { + "title": "下列关于数据场内交易与场外交易的表述,正确的有", + "options": [ + "A.场内交易通过数据交易机构达成", + "B.场外交易不通过数据交易机构达成", + "C.场内交易一定比场外交易合规", + "D.场外交易均属于非法交易" + ], + "type": "多选", + "answer": "AB", + "source_id": "28", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 88 + }, + { + "title": "下列关于数据使用权与数据经营权的区别,表述正确的有", + "options": [ + "A.使用权主要用于权利人内部使用", + "B.经营权是对外提供数据的权利", + "C.使用权可以自由转让给第三方", + "D.经营权包括许可他人使用数据的权利" + ], + "type": "多选", + "answer": "ABD", + "source_id": "29", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 89 + }, + { + "title": "某企业拟开展数据相关业务,下列行为符合名词定义规范的有", + "options": [ + "A.通过加工自有使用权数据形成衍生数据并对外提供", + "B.作为数据交易撮合方帮助供需双方达成交易", + "C.自行开展数据产权登记并出具登记凭证", + "D.通过算力池化技术统一管理企业内部异构算力资源" + ], + "type": "多选", + "answer": "ABD", + "source_id": "30", + "page_number": 17, + "source_file": "数据领域常用名词解释(第二批)", + "id": 90 + }, + { + "title": "《国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知》的施行日期是", + "options": [ + "A.2025年1月16日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 91 + }, + { + "title": "公共数据运营服务费实行的价格管理方式是", + "options": [ + "A.市场调节价", + "B.政府定价", + "C.政府指导价", + "D.协商定价" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 92 + }, + { + "title": "公共数据资源授权运营中,用于______的数据产品和服务应当免费提供", + "options": [ + "A.产业发展", + "B.行业发展", + "C.商业经营", + "D.公共治理" + ], + "type": "单选", + "answer": "D", + "source_id": "3", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 93 + }, + { + "title": "地方定价目录内的公共数据运营服务费标准,原则上由______制定", + "options": [ + "A.县级发展改革部门", + "B.地级发展改革部门", + "C.省级发展改革部门会同数据管理等部门", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 94 + }, + { + "title": "核定公共数据运营最高准许收入遵循的原则是", + "options": [ + "A.保本微利", + "B.补偿成本、合理盈利", + "C.市场导向、自主定价", + "D.政府补贴、免费提供" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 95 + }, + { + "title": "最高准许收入的构成不包括", + "options": [ + "A.经营成本", + "B.准许利润", + "C.税金", + "D.政府补助" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 18, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 96 + }, + { + "title": "准许利润的计算基础是", + "options": [ + "A.营业收入", + "B.经营成本", + "C.净利润", + "D.总资产" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 97 + }, + { + "title": "准许利润率按照成本调查前一年10年期国债平均收益率加不超过______个百分点确定", + "options": [ + "A.3", + "B.4", + "C.5", + "D.6" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 98 + }, + { + "title": "公共数据运营服务费的定期评估周期原则上不超过", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 99 + }, + { + "title": "当年实际收入偏离最高准许收入______以上时,由授权主体调整上限收费标准", + "options": [ + "A.5%", + "B.10%", + "C.15%", + "D.20%" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 100 + }, + { + "title": "授权主体应当在每年______前报送上一年度运营机构经营情况报告", + "options": [ + "A.1月底", + "B.2月底", + "C.3月底", + "D.4月底" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 101 + }, + { + "title": "下列不属于公共数据运营服务费可采用的收费形式是", + "options": [ + "A.产品数量", + "B.服务次数", + "C.数据所有权转让", + "D.数据调用量" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 19, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 102 + }, + { + "title": "尚无完整年度运营情况的公共数据授权运营项目,应当制定", + "options": [ + "A.正式收费标准", + "B.试行收费标准", + "C.临时收费标准", + "D.市场调节价" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 103 + }, + { + "title": "上一评估周期内运营机构实际收入超过最高准许收入的部分,应当", + "options": [ + "A.全额上缴财政", + "B.在核定下一周期最高准许收入时予以扣减", + "C.作为运营机构超额利润留存", + "D.用于补贴公益类数据产品" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 104 + }, + { + "title": "下列关于公共数据运营服务费定价程序的表述,正确的是", + "options": [ + "A.运营机构直接制定具体收费标准", + "B.授权主体核定最高准许收入", + "C.发展改革部门会同数据管理部门核定最高准许收入", + "D.发展改革部门制定各类产品的上限收费标准" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 105 + }, + { + "title": "最高准许收入的构成包括", + "options": [ + "A.经营成本", + "B.准许利润", + "C.税金", + "D.政府补助" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 106 + }, + { + "title": "公共数据授权运营的经营成本主要包括", + "options": [ + "A.平台建设和运维成本", + "B.数据传输、汇聚、存储、治理成本", + "C.人力资源成本", + "D.获取公共数据资源的相关支出" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 107 + }, + { + "title": "制定公共数据运营服务费上限收费标准应统筹考虑的因素有", + "options": [ + "A.数据、算力、存储等资源使用", + "B.人力资源投入", + "C.销售规模", + "D.市场竞争程度" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 20, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 108 + }, + { + "title": "下列关于公共数据运营价格调整机制的表述,正确的有", + "options": [ + "A.评估周期原则上不超过3年", + "B.当年实际收入偏离10%及以下的,调整具体收费标准", + "C.当年实际收入偏离超过 10%的,调整上限收费标准", + "D.上一周期超额收入全部上缴财政" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 21, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 109 + }, + { + "title": "某运营机构获得公共数据资源授权运营资质,下列行为符合本通知规定的有", + "options": [ + "A.对用于公益事业的数据产品免费提供", + "B.在不高于上限标准的范围内确定具体收费标准", + "C.单独核算公共数据授权运营的成本和收入", + "D.自行制定并发布公共数据产品的上限收费标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 21, + "source_file": "国家发展改革委 国家数据局关于建立公共数据资源授权运营价格形成机制的通知(发改价格〔2025〕65号)", + "id": 110 + }, + { + "title": "《公共数据资源授权运营实施规范(试行)》的施行日期是", + "options": [ + "A.2025年1月1日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 111 + }, + { + "title": "本规范所称授权运营,是指将______持有的公共数据资源授权符合条件的运营机构开发运营的活动", + "options": [ + "A.仅县级以上地方各级人民政府", + "B.仅国家行业主管部门", + "C.县级以上地方各级人民政府或国家行业主管部门", + "D.仅省级以上人民政府" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 112 + }, + { + "title": "下列不属于公共数据资源授权运营基本原则的是", + "options": [ + "A.依法合规", + "B.公益优先", + "C.市场主导", + "D.安全可控" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 113 + }, + { + "title": "负责全国公共数据资源授权运营工作统筹协调管理的部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.工业和信息化部", + "D.国务院办公厅" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 114 + }, + { + "title": "公共数据资源授权运营实施方案的牵头编制部门是", + "options": [ + "A.县级以上地方各级数据管理部门", + "B.县级以上地方各级人民政府", + "C.省级数据管理部门", + "D.国家行业主管部门" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 115 + }, + { + "title": "公共数据资源授权运营实施方案应按照______决策机制要求审议通过后实施", + "options": [ + "A.集体讨论", + "B.一把手负责制", + "C.三重一大", + "D.专家评审" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 22, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 116 + }, + { + "title": "实施机构选择运营机构应当采用的方式是", + "options": [ + "A.直接指定", + "B.公平竞争方式", + "C.内部推荐", + "D.协议转让" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 117 + }, + { + "title": "公共数据资源授权运营协议约定的运营期限原则上最长不超过", + "options": [ + "A.3年", + "B.5年", + "C.8年", + "D.10年" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 118 + }, + { + "title": "公共数据产品和服务价格应当按照______执行", + "options": [ + "A.市场调节价", + "B.政府定价", + "C.国家有关价格政策", + "D.运营机构自主定价" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 119 + }, + { + "title": "实施机构应当定期向社会披露的内容不包括", + "options": [ + "A.授权对象", + "B.授权内容", + "C.运营机构财务明细", + "D.授权时限" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 120 + }, + { + "title": "公共数据资源授权运营中,履行数据安全主体责任的是", + "options": [ + "A.实施机构", + "B.运营机构", + "C.数据管理部门", + "D.行业主管部门" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 121 + }, + { + "title": "本规范的解释部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.国务院办公厅", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 23, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 122 + }, + { + "title": "以政务数据共享方式获得的其他地区或部门的公共数据用于授权运营的,应当", + "options": [ + "A.直接使用", + "B.征得共享数据提供单位同意", + "C.报本级人民政府批准", + "D.报国家数据局备案" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 123 + }, + { + "title": "运营机构在授权范围内开展业务时,禁止实施的行为是", + "options": [ + "A.面向市场提供数据产品和服务", + "B.对原始公共数据进行治理加工", + "C.直接或间接参与已交付公共数据产品的再开发", + "D.公开数据产品和服务清单" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 124 + }, + { + "title": "下列关于公用企业公共数据资源开发利用的表述,正确的是", + "options": [ + "A.完全不适用本规范", + "B.必须严格按照本规范执行", + "C.可参考本规范有关程序要求授权使用", + "D.由企业自主决定无需政府监督" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 125 + }, + { + "title": "公共数据资源授权运营应当遵循的原则有", + "options": [ + "A.依法合规", + "B.公平公正", + "C.公益优先", + "D.合理收益" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 126 + }, + { + "title": "公共数据资源授权运营实施方案应当包括的内容有", + "options": [ + "A.授权运营模式", + "B.数据资源目录", + "C.收益分配机制", + "D.退出机制" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 127 + }, + { + "title": "公共数据资源授权运营协议应当明确的内容有", + "options": [ + "A.运营期限", + "B.资产权属", + "C.违约责任", + "D.争议解决方式" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 24, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 128 + }, + { + "title": "运营机构在运营过程中应当履行的义务有", + "options": [ + "A.公开公共数据产品和服务清单", + "B.履行数据安全主体责任", + "C.超授权范围使用数据提升价值", + "D.单独核算公共数据运营相关财务收支" + ], + "type": "多选", + "answer": "ABD", + "source_id": "19", + "page_number": 25, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 129 + }, + { + "title": "某省级数据管理部门组织开展公共数据授权运营,下列行为符合本规范要求的有", + "options": [ + "A.通过公开招标方式选择运营机构", + "B.授权运营期限约定为4年", + "C.要求运营机构不得参与已交付产品的再开发", + "D.允许运营机构自行决定公共数据产品价格" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 25, + "source_file": "公共数据资源授权运营实施规范(试行)", + "id": 130 + }, + { + "title": "《公共数据资源登记管理暂行办法》的施行日期是", + "options": [ + "A.2025年1月1日", + "B.2025年3月1日", + "C.2025年5月1日", + "D.2025年8月1日" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 131 + }, + { + "title": "本办法的解释部门是", + "options": [ + "A.国家发展改革委", + "B.国家数据局", + "C.工业和信息化部", + "D.国务院办公厅" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 132 + }, + { + "title": "本办法所称登记机构是指由国家和地方数据管理部门设立或指定的提供登记服务的", + "options": [ + "A.企业法人", + "B.事业单位", + "C.社会团体", + "D.政府机关" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 133 + }, + { + "title": "下列不属于公共数据资源登记应当遵循的原则是", + "options": [ + "A.依法合规", + "B.公开透明", + "C.有偿服务", + "D.安全高效" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 134 + }, + { + "title": "中央和国家机关及其直属机构、中央企业的公共数据资源登记,由______指定所属事业单位负责办理", + "options": [ + "A.国务院办公厅", + "B.国家发展改革委", + "C.国家数据局", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 135 + }, + { + "title": "登记主体开展授权运营活动并交付数据产品和服务后,应当在______个工作日内提交首次登记申请", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 26, + "source_file": "公共数据资源登记管理暂行办法", + "id": 136 + }, + { + "title": "本办法施行前已开展授权运营的,登记主体应当在施行后______个工作日内按首次登记程序进行登记", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 137 + }, + { + "title": "登记机构应当自收到登记申请之日起______个工作日内予以受理", + "options": [ + "A.3", + "B.5", + "C.10", + "D.20" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 138 + }, + { + "title": "登记机构对登记材料进行形式审核的时限是自受理之日起______个工作日内", + "options": [ + "A.10", + "B.20", + "C.30", + "D.60" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 139 + }, + { + "title": "公共数据资源登记信息的公示期为______个工作日", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 140 + }, + { + "title": "登记机构应当自受理注销登记申请之日起______个工作日内完成注销", + "options": [ + "A.5", + "B.10", + "C.15", + "D.20" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 141 + }, + { + "title": "公共数据资源登记结果有效期原则上为", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 27, + "source_file": "公共数据资源登记管理暂行办法", + "id": 142 + }, + { + "title": "登记结果有效期届满需要续展的,登记主体应当在期满前______日内按照规定办理", + "options": [ + "A.30", + "B.60", + "C.90", + "D.120" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 143 + }, + { + "title": "利害关系人申请更正登记的,应当满足的条件是", + "options": [ + "A.自行提供更正内容", + "B.经登记主体书面同意或有证据证明登记信息确有错误", + "C.向数据管理部门提出申请", + "D.公示期内提出异议" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 144 + }, + { + "title": "下列关于公共数据资源登记程序的表述,正确的是", + "options": [ + "A.登记程序为申请、受理、实质审核、公示、赋码", + "B.公示期内提出异议的,登记机构应当直接终止登记", + "C.公示期满无异议的,登记机构发放统一编码的登记结果查询码", + "D.变更登记无需重新进行公示和赋码" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 145 + }, + { + "title": "公共数据资源登记应当遵循的原则有", + "options": [ + "A.依法合规", + "B.公开透明", + "C.标准规范", + "D.安全高效" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 146 + }, + { + "title": "公共数据资源登记申请类型主要包括", + "options": [ + "A.首次登记", + "B.变更登记", + "C.更正登记", + "D.注销登记" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 28, + "source_file": "公共数据资源登记管理暂行办法", + "id": 147 + }, + { + "title": "登记主体应当申请办理注销登记的情形有", + "options": [ + "A.公共数据资源不可复原或灭失的", + "B.登记主体放弃相关权益的", + "C.登记主体被依法撤销的", + "D.登记结果有效期届满未续展的" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 148 + }, + { + "title": "登记机构存在下列哪些行为的,将被数据管理部门采取管理措施", + "options": [ + "A.开展虚假登记", + "B.擅自篡改登记结果", + "C.私自泄露登记信息", + "D.优化登记服务流程" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 149 + }, + { + "title": "某市属事业单位获得公共数据授权运营资质,下列行为符合本办法要求的有", + "options": [ + "A.在交付数据产品后 20 个工作日内提交首次登记申请", + "B.对登记材料内容的真实性、完整性负责", + "C.登记结果有效期届满前 60日申请续展", + "D.自行修改已登记的公共数据资源信息" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 29, + "source_file": "公共数据资源登记管理暂行办法", + "id": 150 + }, + { + "title": "我国数据流通安全治理体系基本构建的目标时间是______年底", + "options": [ + "A.2025", + "B.2026", + "C.2027", + "D.2028" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 151 + }, + { + "title": "政务数据共享过程中,数据提供方应当遵循的安全责任原则是", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁负责", + "C.谁管理、谁负责", + "D.谁所有、谁负责" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 152 + }, + { + "title": "政务数据共享过程中,数据接收方应当遵循的安全责任原则是", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁管理、谁负责", + "C.谁所有、谁负责", + "D.谁审批、谁负责" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 153 + }, + { + "title": "为加强数据治理和数据开发利用,鼓励企事业单位设立的岗位是", + "options": [ + "A.首席信息官", + "B.首席数据官", + "C.首席安全官", + "D.首席技术官" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 154 + }, + { + "title": "经脱敏等技术处理后,依据行业分类分级标准重新识别为一般数据的,应当按照______开展流通交易", + "options": [ + "A.重要数据", + "B.敏感数据", + "C.一般数据", + "D.公共数据" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 155 + }, + { + "title": "个人数据流通应当依法依规取得个人同意,或者经过______处理", + "options": [ + "A.脱敏", + "B.加密", + "C.匿名化", + "D.去标识化" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 30, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 156 + }, + { + "title": "对于重要数据的价值开发,鼓励采用的流通方式是", + "options": [ + "A.原始数据自由流通", + "B.原始数据不出域、数据可用不可见、数据可控可计量", + "C.数据所有权转让", + "D.数据批量下载" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 157 + }, + { + "title": "下列技术手段中,不属于数据流通安全审计和溯源可应用的是", + "options": [ + "A.数字水印", + "B.数据指纹", + "C.区块链", + "D.量子计算" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 158 + }, + { + "title": "我国支持在______等区域开展数据流通安全治理先行先试", + "options": [ + "A.经济技术开发区", + "B.自由贸易试验区(港)", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 159 + }, + { + "title": "数据处理者对外提供重要数据时,应当采取必要的______措施", + "options": [ + "A.安全保护", + "B.商业加密", + "C.价值评估", + "D.收益分成" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 160 + }, + { + "title": "为确保政务数据安全共享,应当探索建立数据接收方数据安全管理______制度", + "options": [ + "A.备案", + "B.风险评估", + "C.审批", + "D.审计" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 161 + }, + { + "title": "为降低中小企业数据安全成本,鼓励有条件的企业拓展面向______的数据安全托管服务", + "options": [ + "A.大型企业", + "B.中小企业", + "C.政府部门", + "D.事业单位" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 31, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 162 + }, + { + "title": "数据流通安全治理工作应当将安全贯穿数据______全过程", + "options": [ + "A.供给、流通、使用", + "B.采集、存储、加工", + "C.传输、共享、销毁", + "D.全生命周期" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 163 + }, + { + "title": "下列关于公共数据授权运营安全管理的表述,正确的是", + "options": [ + "A.授权运营机构无需承担安全管理责任", + "B.应当明确授权运营机构的安全管理责任", + "C.无需加强关联风险识别和管控", + "D.公共数据授权运营无需建立安全管理制度" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 164 + }, + { + "title": "下列关于不同类型数据流通要求的表述,正确的是", + "options": [ + "A.一般数据必须通过数据交易所流通", + "B.重要数据可自由对外提供", + "C.未认定为重要数据的企业经营信息鼓励接入数据流通基础设施", + "D.个人数据无需取得同意即可流通" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 165 + }, + { + "title": "完善个人数据流通保障机制的措施包括", + "options": [ + "A.依法依规取得个人同意或经过匿名化处理", + "B.制定个人信息匿名化相关标准规范", + "C.鼓励采用国家网络身份认证公共服务", + "D.健全个人信息保护投诉举报渠道" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 166 + }, + { + "title": "政务数据共享过程中应当遵循的安全责任原则包括", + "options": [ + "A.谁主管、谁提供、谁负责", + "B.谁经手、谁使用、谁管理、谁负责", + "C.谁所有、谁负责", + "D.谁审批、谁负责" + ], + "type": "多选", + "answer": "AB", + "source_id": "17", + "page_number": 32, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 167 + }, + { + "title": "丰富数据流通安全服务供给的措施包括", + "options": [ + "A.培育数据流通安全检测评估、安全审计等服务", + "B.研究探索为数据安全提供保险保障的可行方案", + "C.鼓励拓展面向中小企业的数据安全托管服务", + "D.由政府统一提供所有数据安全服务" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 168 + }, + { + "title": "完善数据流通安全责任界定机制的措施包括", + "options": [ + "A.明确数据提供方确保数据来源合法的责任", + "B.明确数据接收方严格按要求使用数据的责任", + "C.鼓励在交易合同中约定双方权责范围", + "D.由政府统一承担所有安全责任" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 169 + }, + { + "title": "下列数据流通业务行为中,符合我国数据流通安全治理规定的有", + "options": [ + "A.通过强迫、欺诈方式取得个人同意后流通个人数据", + "B.按照规定识别、申报重要数据并接受监管检查", + "C.对外提供重要数据时采取必要的安全保护措施", + "D.通过原始数据不出域方式实现重要数据价值开发" + ], + "type": "多选", + "answer": "BCD", + "source_id": "20", + "page_number": 33, + "source_file": "关于完善数据流通安全治理更好促进数据要素市场化价值化的实施方案", + "id": 170 + }, + { + "title": "我国基本建成国家数据基础设施主体结构的目标时间是______年", + "options": [ + "A.2026", + "B.2028", + "C.2029", + "D.2030" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 171 + }, + { + "title": "国家数据基础设施是面向社会提供______全生命周期服务的新型基础设施", + "options": [ + "A.数据采集、汇聚、传输、加工、流通、利用、运营、安全", + "B.数据采集、存储、计算、分析、应用、销毁", + "C.数据交易、结算、交付、运维、监管", + "D.算力调度、网络传输、应用开发、安全防护" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 172 + }, + { + "title": "国家数据基础设施具备的核心能力数量是", + "options": [ + "A.六大能力", + "B.八大能力", + "C.十大能力", + "D.十二大能力" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 173 + }, + { + "title": "2024-2026 年国家数据基础设施建设的核心任务是", + "options": [ + "A.基本建成主体结构", + "B.开展技术路线试点试验,制定统一标准规范", + "C.实现全国大中型城市基本覆盖", + "D.建成全国一体化算力网" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 174 + }, + { + "title": "下列不属于数据流通利用设施组成部分的是", + "options": [ + "A.可信数据空间", + "B.数场", + "C.数据元件", + "D.超级计算机" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 175 + }, + { + "title": "可信数据空间必须具备的三类核心能力不包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 34, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 176 + }, + { + "title": "依托开放性网络、算力和隐私保护计算等技术,提供线上线下全流程数据流通服务的综合性设施是", + "options": [ + "A.数场", + "B.数联网", + "C.数据元件", + "D.可信数据空间" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 177 + }, + { + "title": "算力底座建设重点推进的多元异构算力类型不包括", + "options": [ + "A.通用算力", + "B.智能算力", + "C.超级算力", + "D.边缘算力" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 178 + }, + { + "title": "推动国家枢纽节点和需求地之间应建设______高带宽全光连接", + "options": [ + "A.100G/200G", + "B.200G/400G", + "C.400G/800G", + "D.800G/1.6T" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 179 + }, + { + "title": "能够实现数据“可用不可见”的核心数据安全技术是", + "options": [ + "A.数据脱敏", + "B.隐私保护计算", + "C.数据水印", + "D.区块链" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 180 + }, + { + "title": "国家数据基础设施的主体构成是", + "options": [ + "A.企业数据基础设施", + "B.行业和区域数据基础设施", + "C.国家统一建设的核心设施", + "D.第三方服务机构建设的设施" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 181 + }, + { + "title": "建设数据流通利用设施底座必须遵循的“三个统一”要求不包括", + "options": [ + "A.统一目录标识", + "B.统一身份登记", + "C.统一接口要求", + "D.统一收费标准" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 35, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 182 + }, + { + "title": "算力与绿色电力融合的核心目标是", + "options": [ + "A.降低算力建设成本", + "B.把绿色电力转换成绿色算力", + "C.提高算力运行速度", + "D.扩大算力建设规模" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 183 + }, + { + "title": "国家数据基础设施安全防护体系的发展方向不包括", + "options": [ + "A.由静态保护向动态保护转变", + "B.由边界安全向内生安全转变", + "C.由开放环境保护向封闭环境保护转变", + "D.贯穿数据全生命周期各环节" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 184 + }, + { + "title": "下列关于国家数据基础设施建设的表述,正确的是", + "options": [ + "A.完全由政府投资建设运营", + "B.仅服务于政府部门和国有企业", + "C.由区域、行业、企业等各类数据基础设施共同构成", + "D.网络设施和算力设施不属于其相关范畴" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 185 + }, + { + "title": "国家数据基础设施的总体功能包括", + "options": [ + "A.数据可信流通", + "B.高效算力供给", + "C.数据高速传输", + "D.全程安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 186 + }, + { + "title": "数据流通利用核心技术主要包括", + "options": [ + "A.隐私保护计算", + "B.区块链", + "C.数据使用控制", + "D.量子计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 187 + }, + { + "title": "算力底座建设的重点方向包括", + "options": [ + "A.推进算力资源科学布局", + "B.推进东中西部算力协同", + "C.推进算力与数据、算法融合创新", + "D.推进算力与绿色电力融合" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 36, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 188 + }, + { + "title": "数据流通利用主流实践方案包括", + "options": [ + "A.可信数据空间", + "B.数场", + "C.数联网", + "D.数据元件" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 37, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 189 + }, + { + "title": "下列关于国家数据基础设施安全防护的表述,正确的有", + "options": [ + "A.构建多层次、全方位、立体化的安全保障框架", + "B.贯穿数据全生命周期各环节", + "C.综合利用隐私保护计算、区块链等技术手段", + "D.仅需保障数据安全,无需关注网络和算力安全" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 37, + "source_file": "国家数据基础设施建设指引(2024年12月)", + "id": 190 + }, + { + "title": "任何以电子或其他方式对信息的记录被称为", + "options": [ + "A.数据", + "B.数据资源", + "C.数据要素", + "D.数据资产" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 191 + }, + { + "title": "初次产生或源头收集、未经加工处理的数据是", + "options": [ + "A.衍生数据", + "B.原始数据", + "C.数据产品", + "D.数据资源" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 192 + }, + { + "title": "投入到生产经营活动、参与价值创造的数据资源是", + "options": [ + "A.数据产品", + "B.数据资产", + "C.数据要素", + "D.数据资源" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 193 + }, + { + "title": "特定主体合法拥有或控制、能进行货币计量且带来经济利益的数据资源是", + "options": [ + "A.数据要素", + "B.数据资产", + "C.数据产品", + "D.数据资源" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 194 + }, + { + "title": "在数据处理活动中自主决定处理目的和处理方式的个人或组织是", + "options": [ + "A.受托数据处理者", + "B.数据所有者", + "C.数据处理者", + "D.数据使用者" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 195 + }, + { + "title": "数据在不同主体之间流动的过程不包括", + "options": [ + "A.数据开放", + "B.数据共享", + "C.数据交易", + "D.数据存储" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 38, + "source_file": "数据领域常用名词解释(第一批)", + "id": 196 + }, + { + "title": "提升数据质量、安全、合规性,推动数据有效利用的过程是", + "options": [ + "A.数据治理", + "B.数据安全", + "C.数据处理", + "D.数据流通" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 197 + }, + { + "title": "各级党政机关、企事业单位依法履职或提供公共服务过程中产生的数据是", + "options": [ + "A.企业数据", + "B.公共数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 198 + }, + { + "title": "传统农业、工业、服务业应用数字技术、挖掘数据价值、提升全要素生产率的过程是", + "options": [ + "A.数字产业化", + "B.产业数字化", + "C.数字经济", + "D.数字消费" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 199 + }, + { + "title": "“东数西算”工程的核心是", + "options": [ + "A.在东部建设更多数据中心", + "B.将东部数据和需求放到西部计算处理", + "C.在西部建设更多算力需求", + "D.实现东西部算力平均分配" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 200 + }, + { + "title": "定义和描述特定数据的数据是", + "options": [ + "A.元数据", + "B.结构化数据", + "C.半结构化数据", + "D.非结构化数据" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 201 + }, + { + "title": "不具有预定义模型或未以预定义方式组织的数据是", + "options": [ + "A.结构化数据", + "B.半结构化数据", + "C.非结构化数据", + "D.元数据" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 39, + "source_file": "数据领域常用名词解释(第一批)", + "id": 202 + }, + { + "title": "专门用于存储大量原始数据和衍生数据,支持多种格式的高度可扩展存储架构是", + "options": [ + "A.数据仓库", + "B.数据湖", + "C.湖仓一体", + "D.数据库" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 203 + }, + { + "title": "多个参与方在保证原始私有数据不出可信域的前提下,协作完成机器学习任务的模式是", + "options": [ + "A.安全多方计算", + "B.联邦学习", + "C.可信执行环境", + "D.密态计算" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 204 + }, + { + "title": "下列关于区块链技术核心特性的表述,错误的是", + "options": [ + "A.多中心化", + "B.共识可信", + "C.可篡改", + "D.可追溯" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 205 + }, + { + "title": "数据处理的核心环节包括", + "options": [ + "A.收集", + "B.存储", + "C.使用", + "D.加工" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 206 + }, + { + "title": "结构化数据的主要特点包括", + "options": [ + "A.每个记录结构一致", + "B.可用关系模型有效描述", + "C.包含语义标记分隔字段", + "D.预定义组织方式" + ], + "type": "多选", + "answer": "AB", + "source_id": "17", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 207 + }, + { + "title": "隐私保护计算的常用技术方案包括", + "options": [ + "A.安全多方计算", + "B.联邦学习", + "C.可信执行环境", + "D.区块链" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 40, + "source_file": "数据领域常用名词解释(第一批)", + "id": 208 + }, + { + "title": "全国一体化算力网的典型特征包括", + "options": [ + "A.集约化", + "B.一体化", + "C.协同化", + "D.价值化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 41, + "source_file": "数据领域常用名词解释(第一批)", + "id": 209 + }, + { + "title": "下列关于湖仓一体存储架构的表述,正确的有", + "options": [ + "A.打通数据仓库和数据湖的技术壁垒", + "B.融合数据仓库的高性能与数据湖的灵活性", + "C.底层支持结构化、半结构化和非结构化数据并存", + "D.可同时支持实时查询和离线分析" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 41, + "source_file": "数据领域常用名词解释(第一批)", + "id": 210 + }, + { + "title": "数据采集技术创新主要依托的基础技术是", + "options": [ + "A.5", + "G、物联网", + "B.区块链、人工智能", + "C.云计算、边缘计算", + "D.大数据、量子计算" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 211 + }, + { + "title": "下列不属于数据存储技术创新方向的是", + "options": [ + "A.湖仓池一体", + "B.数据编织", + "C.数据压缩", + "D.联邦学习" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 212 + }, + { + "title": "数据治理领域创新的核心模式是", + "options": [ + "A.数据交易托管一体化", + "B.数据开发治理一体化", + "C.数据安全防护一体化", + "D.数据采集存储一体化" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 213 + }, + { + "title": "数据分析领域需要加速突破的实时检索分析技术是", + "options": [ + "A.关系型数据库", + "B.向量数据库", + "C.分布式数据库", + "D.时序数据库" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 214 + }, + { + "title": "数据交易领域重点培育的新业态不包括", + "options": [ + "A.数据经纪", + "B.数据托管", + "C.数据标注", + "D.数据资产评估" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 215 + }, + { + "title": "数据应用领域重点培育的新型服务模式是", + "options": [ + "A.软件即服务", + "B.平台即服务", + "C.数据即服务", + "D.基础设施即服务" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 42, + "source_file": "数据技术和产业重点发展方向", + "id": 216 + }, + { + "title": "下列属于数据安全领域可信流通技术的是", + "options": [ + "A.量子加密", + "B.多因子身份认证", + "C.隐私计算", + "D.容灾备份" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 217 + }, + { + "title": "数据治理领域支持人工智能技术应用的场景不包括", + "options": [ + "A.自动化数据处理", + "B.自动化数据标注", + "C.自动化模型构建", + "D.自动化数据交易" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 218 + }, + { + "title": "数据分析领域重点推进迭代创新的算法类型是", + "options": [ + "A.传统统计算法", + "B.预训练大模型算法", + "C.规则匹配算法", + "D.简单分类算法" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 219 + }, + { + "title": "数据安全领域重点推广应用的基础技术产品不包括", + "options": [ + "A.数据加密", + "B.防勒索", + "C.容灾备份", + "D.区块链" + ], + "type": "单选", + "answer": "D", + "source_id": "10", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 220 + }, + { + "title": "数据存储领域应面向什么需求提供全栈产品和解决方案", + "options": [ + "A.数据分类分级管理使用", + "B.数据交易流通", + "C.人工智能训练", + "D.边缘计算" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 221 + }, + { + "title": "下列属于数据安全领域服务业态的是", + "options": [ + "A.端到端加密", + "B.零信任安全", + "C.数据合规检测", + "D.量子加密" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 43, + "source_file": "数据技术和产业重点发展方向", + "id": 222 + }, + { + "title": "数据应用领域大力支持建设的核心资源是", + "options": [ + "A.通用计算平台", + "B.重点行业高质量数据集", + "C.分布式存储系统", + "D.区块链网络" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 223 + }, + { + "title": "下列关于数据技术和产业发展方向的表述,正确的是", + "options": [ + "A.数据采集应重点发展人工采集方式", + "B.数据分析应限制预训练大模型应用", + "C.数据安全应加快突破可信流通技术", + "D.数据交易应禁止第三方服务机构参与" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 224 + }, + { + "title": "下列技术中,同时属于数据分析和数据安全领域发展方向的是", + "options": [ + "A.边缘计算", + "B.区块链", + "C.人工智能", + "D.隐私计算" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 225 + }, + { + "title": "数据采集技术创新的重点方向包括", + "options": [ + "A.高精度采集", + "B.合规采集", + "C.自动识别采集", + "D.批量下载采集" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 226 + }, + { + "title": "数据治理领域重点发展的技术和业态包括", + "options": [ + "A.数据清洗", + "B.质量检测", + "C.数据标注", + "D.数据交易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 227 + }, + { + "title": "数据分析领域重点发展的技术和应用包括", + "options": [ + "A.商业智能", + "B.数据可视化", + "C.多模态数据分析", + "D.预训练大模型" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 44, + "source_file": "数据技术和产业重点发展方向", + "id": 228 + }, + { + "title": "数据安全领域重点创新的技术包括", + "options": [ + "A.量子加密", + "B.多因子身份认证", + "C.零信任安全", + "D.数据冗余" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 45, + "source_file": "数据技术和产业重点发展方向", + "id": 229 + }, + { + "title": "下列关于数据技术和产业发展的表述,正确的有", + "options": [ + "A.深化产业发展、社会治理、公共服务等领域数据应用", + "B.支持大模型应用创新发展", + "C.提高第三方数据交易服务机构专业能力", + "D.限制人工智能技术在数据治理中的应用" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 45, + "source_file": "数据技术和产业重点发展方向", + "id": 230 + }, + { + "title": "到 2027 年,我国数据标注产业年均复合增长率目标是超过", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 231 + }, + { + "title": "数据标注产业的核心加工处理环节不包括", + "options": [ + "A.数据筛选", + "B.数据清洗", + "C.数据交易", + "D.质量检验" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 232 + }, + { + "title": "数据标注产业高质量发展坚持的工作原则不包括", + "options": [ + "A.有效市场和有为政府相结合", + "B.系统谋划和重点突破相结合", + "C.开放协作和安全发展相结合", + "D.政府主导和市场补充相结合" + ], + "type": "单选", + "answer": "D", + "source_id": "3", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 233 + }, + { + "title": "应当推动纳入政府采购范畴的数据服务是", + "options": [ + "A.数据存储服务", + "B.数据标注服务", + "C.数据计算服务", + "D.数据传输服务" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 234 + }, + { + "title": "实施“国有企业数据效能提升行动”的核心目的是", + "options": [ + "A.提升国有企业数据安全水平", + "B.释放企业数据标注需求", + "C.推动国有企业数字化转型", + "D.建立国有企业数据共享机制" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 235 + }, + { + "title": "数据标注领域关键技术攻关不包括", + "options": [ + "A.跨领域跨模态语义对齐", + "B.4D 标注", + "C.大模型标注", + "D.量子计算" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 46, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 236 + }, + { + "title": "数据标注标准体系建设的核心依据不包括", + "options": [ + "A.文本数据标注需求", + "B.图像数据标注需求", + "C.视频数据标注需求", + "D.区块链数据标注需求" + ], + "type": "单选", + "answer": "D", + "source_id": "7", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 237 + }, + { + "title": "数据标注产业应当着力培育壮大的经营主体类型不包括", + "options": [ + "A.龙头企业", + "B.科技创新型企业", + "C.瞪羚企业", + "D.数据交易中介机构" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 238 + }, + { + "title": "为降低数据标注企业成本,各地可充分利用的政策工具不包括", + "options": [ + "A.数据券", + "B.算法券", + "C.算力券", + "D.消费券" + ], + "type": "单选", + "answer": "D", + "source_id": "9", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 239 + }, + { + "title": "全国数据标注公共服务体系的建设目标是打造", + "options": [ + "A.全国数据标注公共服务“一张网”", + "B.全国统一数据标注交易平台", + "C.国家数据标注创新中心", + "D.国家数据标注产业基地" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 240 + }, + { + "title": "数据标注产业人才队 伍 建 设 应 当 制(修)定的核心标准是", + "options": [ + "A.数据标注相关职业国家职业标准", + "B.数据标注企业资质标准", + "C.数据标注产品质量标准", + "D.数据标注服务收费标准" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 241 + }, + { + "title": "统筹推进全国数据标注产业发展工作的牵头部门数量是", + "options": [ + "A.2个", + "B.3个", + "C.4个", + "D.5个" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 47, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 242 + }, + { + "title": "下列关于公共数据标注需求释放的表述,正确的是", + "options": [ + "A.禁止政府部门参与政务大模型数据标注", + "B.应当编制公共数据标注目录", + "C.公共数据标注需求仅面向政府内部", + "D.公共数据标注不得纳入政府采购" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 243 + }, + { + "title": "下列关于数据标注产业国际合作的表述,错误的是", + "options": [ + "A.开展数据标注科技人才国际交流", + "B.支持企事业单位牵头制定国际标准", + "C.禁止国内企业承接国际数据标注业务", + "D.深化技术及产业国际合作" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 244 + }, + { + "title": "下列关于数据标注产业安全发展的表述,正确的是", + "options": [ + "A.无需建立风险识别和监测预警机制", + "B.仅需落实数据提供方的安全责任", + "C.应当加强隐私保护和人工智能对齐能力建设", + "D.数据标注企业的相关权益不受法律保护" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 245 + }, + { + "title": "数据标注产业高质量发展坚持的工作原则包括", + "options": [ + "A.有效市场和有为政府相结合", + "B.系统谋划和重点突破相结合", + "C.开放协作和安全发展相结合", + "D.政府主导和市场补充相结合" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 246 + }, + { + "title": "数据标注领域智能化工具研发的重点方向包括", + "options": [ + "A.多模态标注", + "B.标注审查", + "C.质量评估", + "D.基于思维链的专家标注" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 247 + }, + { + "title": "加大数据标注产业财税金融支持力度的措施包括", + "options": [ + "A.落实研发费用加计扣除政策", + "B.利用数据券、算法券和算力券降低企业成本", + "C.引导社会资本有序参与产业投资", + "D.对所有数据标注企业免征企业所得税" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 48, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 248 + }, + { + "title": "加强数据标注人才队伍建设的措施包括", + "options": [ + "A.制(修)定相关职业国家职业标准", + "B.深化产学研融合建立长期合作机制", + "C.开展相关职业技能等级认定", + "D.支持分层次建设数据标注人才库" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 49, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 249 + }, + { + "title": "下列关于数据标注产业发展的表述,正确的有", + "options": [ + "A.培育壮大数据标注产业对人工智能创新发展具有重要支撑作用", + "B.应当支持跨部门跨地区跨层级公共数据融合应用", + "C.鼓励数据标注企业联合上下游建立协同创新基地", + "D.数据标注产业发展无需考虑安全问题" + ], + "type": "多选", + "answer": "ABC", + "source_id": "20", + "page_number": 49, + "source_file": "国家发展改革委等部门关于促进数据标注产业高质量发展的实施意见(发改数据〔2024〕1822号)", + "id": 250 + }, + { + "title": "到 2028 年,我国计划建成______个以上可信数据空间", + "options": [ + "A.50", + "B.100", + "C.150", + "D.200" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 251 + }, + { + "title": "可信数据空间必须具备的三类核心能力不包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "单选", + "answer": "D", + "source_id": "2", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 252 + }, + { + "title": "负责可信数据空间日常运营和管理的主体是", + "options": [ + "A.数据提供方", + "B.数据使用方", + "C.可信数据空间运营者", + "D.数据服务方" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 253 + }, + { + "title": "下列不属于可信数据空间培育推广行动重点建设类型的是", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.国际可信数据空间", + "D.个人可信数据空间" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 254 + }, + { + "title": "服务领域可信数据空间重点培育的行业不包括", + "options": [ + "A.金融保险", + "B.商贸物流", + "C.医疗健康", + "D.房地产" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 255 + }, + { + "title": "稳慎探索个人可信数据空间建设试点的前提不包括", + "options": [ + "A.符合国家法律法规", + "B.充分尊重个人意愿", + "C.保护个人合法权益", + "D.强制个人数据共享" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 50, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 256 + }, + { + "title": "探索构建跨境可信数据空间,支持______出台实施数据出境管理负面清单", + "options": [ + "A.自由贸易试验区", + "B.经济技术开发区", + "C.高新技术产业开发区", + "D.保税港区" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 257 + }, + { + "title": "可信数据空间标准化工作重点不包括", + "options": [ + "A.参考架构", + "B.功能要求", + "C.运营规范", + "D.收费标准" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 258 + }, + { + "title": "下列不属于可信数据空间核心技术攻关方向的是", + "options": [ + "A.使用控制", + "B.数据沙箱", + "C.量子计算", + "D.隐私计算" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 259 + }, + { + "title": "可信数据空间建设的主线是", + "options": [ + "A.深化数据要素市场化配置改革", + "B.推动数据要素畅通流动", + "C.建设可信可管的数据空间", + "D.释放数据要素价值" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 260 + }, + { + "title": "企业可信数据空间建设重点支持面向______提供普惠便利数据服务", + "options": [ + "A.大型企业", + "B.中小企业", + "C.国有企业", + "D.外资企业" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 261 + }, + { + "title": "工业领域可信数据空间建设的重点行业不包括", + "options": [ + "A.装备", + "B.新能源汽车", + "C.能源", + "D.纺织" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 51, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 262 + }, + { + "title": "城市可信数据空间建设鼓励探索的运营模式是", + "options": [ + "A.统一建设统一管理", + "B.分建统管、跨域协同", + "C.各自建设各自管理", + "D.政府全权运营" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 263 + }, + { + "title": "可信数据空间收益分配应当遵循的原则是", + "options": [ + "A.平均分配", + "B.市场评价贡献、贡献决定报酬", + "C.按投入资本分配", + "D.按参与人数分配" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 264 + }, + { + "title": "下列关于可信数据空间备案管理的表述,正确的是", + "options": [ + "A.所有数据空间无需备案", + "B.探索开展备案管理,动态发布备案名录", + "C.强制所有数据空间必须备案", + "D.备案由企业自主决定无需监管" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 265 + }, + { + "title": "可信数据空间国际合作依托的多边框架不包括", + "options": [ + "A.中欧", + "B.二十国集团", + "C.金砖国家", + "D.亚太经合组织" + ], + "type": "单选", + "answer": "D", + "source_id": "16", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 266 + }, + { + "title": "下列关于可信数据空间资金支持的表述,错误的是", + "options": [ + "A.统筹利用各类财政资金", + "B.引导社会资本投早投小", + "C.禁止金融机构参与", + "D.鼓励地方统筹多渠道资金" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 267 + }, + { + "title": "支持对数据流通利用全过程动态管控的可信数据空间核心能力是", + "options": [ + "A.可信管控能力", + "B.资源交互能力", + "C.价值共创能力", + "D.安全保障能力" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 52, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 268 + }, + { + "title": "下列关于可信数据空间发展目标的表述,正确的是", + "options": [ + "A.到2026年基本建成可信数据空间网络", + "B.到2028年初步形成与我国经济社会发展水平相适应的数据生态体系", + "C.到2030年建成全球领先的可信数据空间体系", + "D.到2025年建成50个以上可信数据空间" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 269 + }, + { + "title": "下列技术中,同时属于可信管控技术和资源互通支撑技术的是", + "options": [ + "A.区块链", + "B.数据标识", + "C.智能合约", + "D.隐私计算" + ], + "type": "单选", + "answer": "A", + "source_id": "20", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 270 + }, + { + "title": "可信数据空间必须具备的核心能力包括", + "options": [ + "A.数据可信管控", + "B.资源交互", + "C.价值共创", + "D.数据所有权转移" + ], + "type": "多选", + "answer": "ABC", + "source_id": "21", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 271 + }, + { + "title": "可信数据空间培育推广行动重点建设的类型包括", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.城市可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 272 + }, + { + "title": "可信管控技术主要包括", + "options": [ + "A.使用控制", + "B.数据沙箱", + "C.智能合约", + "D.隐私计算" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "23", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 273 + }, + { + "title": "资源互通技术主要包括", + "options": [ + "A.数据标识", + "B.语义发现", + "C.元数据智能识别", + "D.密态计算" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 53, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 274 + }, + { + "title": "可信数据空间共性服务包括", + "options": [ + "A.接入认证", + "B.可信存证", + "C.资源目录", + "D.数据交易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "25", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 275 + }, + { + "title": "工业领域可信数据空间建设的重点行业包括", + "options": [ + "A.装备", + "B.新能源汽车", + "C.能源", + "D.电子信息" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 276 + }, + { + "title": "可信数据空间筑基行动包括的内容有", + "options": [ + "A.制订推广关键标准", + "B.开展核心技术攻关", + "C.完善基础服务", + "D.强化规范管理" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 277 + }, + { + "title": "可信数据空间保障措施包括", + "options": [ + "A.加强统筹联动", + "B.加大资金支持", + "C.加强人才培养", + "D.加强标杆引领" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 278 + }, + { + "title": "下列关于个人可信数据空间建设的表述,正确的有", + "options": [ + "A.研究制定个人数据开发利用政策文件", + "B.建立健全个人数据确权授权和合规利用机制", + "C.条件成熟时稳慎探索建设试点", + "D.强制所有个人数据纳入数据空间" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 279 + }, + { + "title": "下列关于可信数据空间规范管理的表述,正确的有", + "options": [ + "A.建立健全合规管理指引", + "B.明确参与各方责权边界", + "C.防范利用数据算法从事垄断行为", + "D.引导第三方开展核心能力评估" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "30", + "page_number": 54, + "source_file": "可信数据空间发展行动计划(2024-2028年)", + "id": 280 + }, + { + "title": "我国基本建成国家数据标准 体 系 的 目 标 时 间 是______年底", + "options": [ + "A.2025", + "B.2026", + "C.2027", + "D.2028" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 281 + }, + { + "title": "国家数据标准体系建设的主线是促进数据______", + "options": [ + "A.采集、存储、加工、分析", + "B.供得出、流得动、用得好、保安全", + "C.确权、定价、交易、流通", + "D.治理、开发、利用、保护" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 282 + }, + { + "title": "下列不属于国家数据标准体系结构组成部分的是", + "options": [ + "A.基础通用", + "B.数据基础设施", + "C.数据交易", + "D.安全保障" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 283 + }, + { + "title": "位于数据标准体系结构最左侧,支撑其他所有部分的是", + "options": [ + "A.基础通用标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 284 + }, + { + "title": "位于数据标准体系结构最顶端,聚焦重点行业领域的是", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.融合应用标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 285 + }, + { + "title": "位于数据标准体系结构最右端,为体系建设提供合规保障的是", + "options": [ + "A.数据基础设施标准", + "B.数据流通标准", + "C.融合应用标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "D", + "source_id": "6", + "page_number": 55, + "source_file": "国家数据标准体系建设指南", + "id": 286 + }, + { + "title": "下列不属于基础通用标准范畴的是", + "options": [ + "A.术语标准", + "B.参考架构标准", + "C.数据确权标准", + "D.产业标准" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 287 + }, + { + "title": "下列不属于数据基础设施标准范畴的是", + "options": [ + "A.存算设施标准", + "B.网络设施标准", + "C.流通利用设施标准", + "D.数据治理标准" + ], + "type": "单选", + "answer": "D", + "source_id": "8", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 288 + }, + { + "title": "下列不属于数据资源标准范畴的是", + "options": [ + "A.基础资源标准", + "B.开发利用标准", + "C.数据流通交易标准", + "D.训练数据集标准" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 289 + }, + { + "title": "下列不属于数据技术标准范畴的是", + "options": [ + "A.数据汇聚技术标准", + "B.数据处理技术标准", + "C.数据资源定价标准", + "D.数据销毁技术标准" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 290 + }, + { + "title": "下列不属于数据流通标准范畴的是", + "options": [ + "A.数据产品标准", + "B.数据确权标准", + "C.数据运营技术标准", + "D.数据流通交易标准" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 291 + }, + { + "title": "下列不属于安全保障标准范畴的是", + "options": [ + "A.数据基础设施安全标准", + "B.数据要素市场安全标准", + "C.数据流通安全标准", + "D.数据应用技术标准" + ], + "type": "单选", + "answer": "D", + "source_id": "12", + "page_number": 56, + "source_file": "国家数据标准体系建设指南", + "id": 292 + }, + { + "title": "训练数据集标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 293 + }, + { + "title": "数据确权标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 294 + }, + { + "title": "数据授权运营标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 295 + }, + { + "title": "隐私计算标准属于国家数据标准体系中的", + "options": [ + "A.数据技术标准", + "B.数据流通标准", + "C.安全保障标准", + "D.融合应用标准" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 296 + }, + { + "title": "到 2026 年底,我国计划制修订______项以上数据领域基础通用国家标准", + "options": [ + "A.20", + "B.30", + "C.40", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 297 + }, + { + "title": "下列不属于融合应用标准重点覆盖的行业领域是", + "options": [ + "A.工业制造", + "B.农业农村", + "C.房地产", + "D.绿色低碳" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 57, + "source_file": "国家数据标准体系建设指南", + "id": 298 + }, + { + "title": "数据销毁技术标准属于国家数据标准体系中的", + "options": [ + "A.数据资源标准", + "B.数据技术标准", + "C.数据流通标准", + "D.安全保障标准" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 299 + }, + { + "title": "下列关于国家数据标准体系建设的表述,正确的是", + "options": [ + "A.数据标准体系仅包含技术标准,不包含管理和服务标准", + "B.融合应用标准聚焦12个重点行业领域", + "C.安全保障标准仅关注数据流通环节的安全", + "D.到2027年全面建成国家数据标准体系" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 300 + }, + { + "title": "国家数据标准体系建设的基本原则包括", + "options": [ + "A.顶层设计、协同推进", + "B.问题导向、务实有效", + "C.应用牵引、鼓励创新", + "D.立足国内、开放合作" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 301 + }, + { + "title": "国家数据标准体系结构的核心组成部分包括", + "options": [ + "A.基础通用、数据基础设施", + "B.数据资源、数据技术", + "C.数据流通、融合应用", + "D.安全保障" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 302 + }, + { + "title": "基础通用标准主要包括的内容有", + "options": [ + "A.术语、参考架构", + "B.管理、服务", + "C.产业", + "D.数据确权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "23", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 303 + }, + { + "title": "数据基础设施标准主要包括的内容有", + "options": [ + "A.存算设施标准", + "B.网络设施标准", + "C.流通利用设施标准", + "D.数据治理标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 58, + "source_file": "国家数据标准体系建设指南", + "id": 304 + }, + { + "title": "数据资源标准主要包括的内容有", + "options": [ + "A.基础资源、开发利用", + "B.数据主体", + "C.数据治理", + "D.训练数据集" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 305 + }, + { + "title": "数据技术标准主要包括的内容有", + "options": [ + "A.数据汇聚、处理技术", + "B.数据流通、应用技术", + "C.数据运营、销毁技术", + "D.数据定价技术" + ], + "type": "多选", + "answer": "ABC", + "source_id": "26", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 306 + }, + { + "title": "数据流通标准主要包括的内容有", + "options": [ + "A.数据产品标准", + "B.数据确权标准", + "C.数据资源定价标准", + "D.数据流通交易标准" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "27", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 307 + }, + { + "title": "安全保障标准主要包括的内容有", + "options": [ + "A.数据基础设施安全标准", + "B.数据要素市场安全标准", + "C.数据流通安全标准", + "D.数据应用技术安全标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "28", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 308 + }, + { + "title": "训练数据集标准主要包括的内容有", + "options": [ + "A.采集处理标准", + "B.标注标准", + "C.合成标准", + "D.交易标准" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 309 + }, + { + "title": "到 2026 年底国家数据标准体系建设的目标包括", + "options": [ + "A.基本建成国家数据标准体系", + "B.制修订30 项以上基础通用国家标准", + "C.建成标准验证和应用服务平台", + "D.培育一批第三方标准化服务机构" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "30", + "page_number": 59, + "source_file": "国家数据标准体系建设指南", + "id": 310 + }, + { + "title": "公共数据资源开发利用的主线是", + "options": [ + "A.促进公共数据合规高效流通使用", + "B.扩大公共数据资源供给", + "C.推动公共数据授权运营", + "D.保障公共数据安全" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 311 + }, + { + "title": "公共数据资源开发利用到2025年的主要目标是", + "options": [ + "A.制度规则初步建立,要素作用初步显现", + "B.制度规则更加成熟,体系全面建成", + "C.实现全面开放共享,市场化机制完善", + "D.实现全球互联互通,国际规则主导" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 312 + }, + { + "title": "公共数据资源开发利用到2030年的主要目标是", + "options": [ + "A.制度规则初步建立", + "B.体系全面建成,要素作用充分发挥", + "C.完成试点探索", + "D.实现完全免费开放" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 313 + }, + { + "title": "政务数据共享应完善目录、实行统一管理,推动实现", + "options": [ + "A.一数一源", + "B.多源复用", + "C.统一存储", + "D.集中管控" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 314 + }, + { + "title": "公共数据开放应优先开放的类型是", + "options": [ + "A.与民生紧密相关、社会需求迫切的数据", + "B.涉密敏感数据", + "C.企业商业秘密数据", + "D.个人隐私数据" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 315 + }, + { + "title": "公共数据授权运营应落实的核心制度是", + "options": [ + "A.数据产权结构性分置制度", + "B.数据完全私有制度", + "C.政府全权所有制度", + "D.无偿使用制度" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 60, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 316 + }, + { + "title": "公共数据授权运营应纳入的决策范围是", + "options": [ + "A.三重一大", + "B.部门例会", + "C.专家评审", + "D.社会公示" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 317 + }, + { + "title": "对纳入授权运营范围的公共数据资源实行的管理制度是", + "options": [ + "A.登记制度", + "B.备案制度", + "C.审批制度", + "D.豁免制度" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 318 + }, + { + "title": "用于公共治理、公益事业的公共数据产品和服务原则上", + "options": [ + "A.有条件无偿使用", + "B.市场化定价", + "C.政府定价", + "D.成本价使用" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 319 + }, + { + "title": "用于产业发展、行业发展的公共数据经营性产品服务确需收费的,实行", + "options": [ + "A.政府指导定价管理", + "B.市场自主定价", + "C.免费提供", + "D.企业协商定价" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 320 + }, + { + "title": "公共数据资源开发利用应支持开发的政务服务模型是", + "options": [ + "A.人工智能政务服务大模型", + "B.传统统计模型", + "C.监管预警模型", + "D.决策分析模型" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 321 + }, + { + "title": "承担数据运营职责的事业单位在符合条件时可推进", + "options": [ + "A.转企改制", + "B.合并重组", + "C.撤销退出", + "D.升格扩编" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 61, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 322 + }, + { + "title": "公共数据开发利用全过程中,履行数据安全主体责任的是", + "options": [ + "A.运营机构", + "B.数据提供部门", + "C.监管部门", + "D.使用单位" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 323 + }, + { + "title": "全国公共数据资源开发利用统筹工作由______负责", + "options": [ + "A.国家数据局", + "B.国务院办公厅", + "C.工业和信息化部", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 324 + }, + { + "title": "统筹推进全国政务数据共享工作的部门是", + "options": [ + "A.国家数据局", + "B.国务院办公厅", + "C.财政部", + "D.公安部" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 325 + }, + { + "title": "加快公共数据资源开发利用应当坚持的原则包括", + "options": [ + "A.政府指导、市场驱动", + "B.尊重规律、守正创新", + "C.系统推进、高效协同", + "D.加快发展、维护安全" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 326 + }, + { + "title": "公共数据授权运营可采用的模式包括", + "options": [ + "A.整体授权", + "B.分领域授权", + "C.依场景授权", + "D.随机授权" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 327 + }, + { + "title": "运营机构在公共数据授权运营中禁止的行为包括", + "options": [ + "A.达成垄断协议", + "B.滥用市场支配地位", + "C.实施不正当竞争", + "D.超范围使用数据" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 62, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 328 + }, + { + "title": "公共数据安全管理应建立健全的工作体系包括", + "options": [ + "A.分类分级", + "B.风险评估", + "C.监测预警", + "D.应急处置" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 63, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 329 + }, + { + "title": "国家支持数据产业发展可适用的优惠政策包括", + "options": [ + "A.研发费用加计扣除", + "B.高新技术企业税收优惠", + "C.免征所有税费", + "D.财政直接补贴" + ], + "type": "多选", + "answer": "AB", + "source_id": "20", + "page_number": 63, + "source_file": "中共中央办公厅 国务院办公厅关于加快公共数据资源开发利用的意见", + "id": 330 + }, + { + "title": "城市全域数字化转型全面突破的目标时间是______年", + "options": [ + "A.2025", + "B.2027", + "C.2030", + "D.2035" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 331 + }, + { + "title": "城市全域数字化转型建设主线是", + "options": [ + "A.数据融通、开发利用", + "B.平台建设、系统上云", + "C.设备改造、网络升级", + "D.财政投入、项目建设" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 332 + }, + { + "title": "城市数字化转型应构建的城市运行核心中枢是", + "options": [ + "A.城市运行和治理智能中枢", + "B.城市大数据中心", + "C.城市指挥中心", + "D.城市政务服务中心" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 333 + }, + { + "title": "城市治理应深化______建设,实现全过程数据融通", + "options": [ + "A.一网统管", + "B.一网通办", + "C.一网通享", + "D.一网通查" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 334 + }, + { + "title": "城市公共服务普惠化应探索以______为载体建立居民服务“一卡通”", + "options": [ + "A.社会保障卡", + "B.居民身份证", + "C.健康码", + "D.电子居住证" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 335 + }, + { + "title": "城市数字化转型应探索建设基 于 统 一 标 识 体 系 的______,实现“一码互联”", + "options": [ + "A.城市码", + "B.健康码", + "C.出行码", + "D.政务码" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 64, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 336 + }, + { + "title": "城市数字基础设施建设应深入实施______行动", + "options": [ + "A.城市云网强基", + "B.城市算力提升", + "C.城市感知覆盖", + "D.城市网络提速" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 337 + }, + { + "title": "城市数据要素赋能体系应加快完善______两级政务数据平台", + "options": [ + "A.省、市", + "B.市、县", + "C.国家、省", + "D.国家、市" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 338 + }, + { + "title": "城市数字化转型应统筹推进______公共数据授权运营", + "options": [ + "A.城市", + "B.省级", + "C.国家级", + "D.区县级" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 339 + }, + { + "title": "城市数字化转型应坚决杜绝______,确保务实见效", + "options": [ + "A.数字“形象工程”", + "B.重复建设工程", + "C.跨部门工程", + "D.市场化工程" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 340 + }, + { + "title": "城市绿色宜居环境建设应探索构建个人与企业的______应用", + "options": [ + "A.碳账户、碳足迹数据空间", + "B.绿色积分账户", + "C.环保信用账户", + "D.能耗监测账户" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 341 + }, + { + "title": "城市安全韧性建设应围绕“______”完善事件分类处置流程", + "options": [ + "A.高效处置一件事", + "B.高效办成一件事", + "C.高效监管一件事", + "D.高效服务一件事" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 65, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 342 + }, + { + "title": "城市数字化转型应统筹算力建设,对接______算力资源", + "options": [ + "A.国家枢纽节点", + "B.区域算力中心", + "C.城市算力中心", + "D.企业算力节点" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 343 + }, + { + "title": "城市数字化转型适数化制度创新应重点推进______建设应用", + "options": [ + "A.标准", + "B.立法", + "C.审批", + "D.监管" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 344 + }, + { + "title": "城市群数字一体化发展应优先在______等区域强化数据共享", + "options": [ + "A.长三角、粤港澳大湾区", + "B.京津冀、成渝", + "C.长江中游、山东半岛", + "D.中原、关中平原" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 345 + }, + { + "title": "城市全域数字化转型总体要求包括", + "options": [ + "A.整体性重塑技术架构", + "B.系统性变革管理流程", + "C.一体化推动产城融合", + "D.全流程强化项目建设" + ], + "type": "多选", + "answer": "ABC", + "source_id": "16", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 346 + }, + { + "title": "城市数字化共性基础应坚持“四统一”,包括", + "options": [ + "A.统一规划", + "B.统一架构", + "C.统一标准", + "D.统一运维" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 347 + }, + { + "title": "城市数字经济培育应重点发展的产业方向包括", + "options": [ + "A.智慧农业", + "B.工业互联网", + "C.数字服务业", + "D.新兴数字产业" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 66, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 348 + }, + { + "title": "城市安全韧性体系建设应强化的安全能力包括", + "options": [ + "A.物理空间安全管理", + "B.数字空间安全管理", + "C.数据安全体系建设", + "D.应急处置体系建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 67, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 349 + }, + { + "title": "城市数字化转型保障措施包括", + "options": [ + "A.加强组织实施", + "B.强化资金支持", + "C.建设数字人才队伍", + "D.杜绝形象工程" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 67, + "source_file": "关于深化智慧城市发展推进城市全域数字化转型的指导意见(发改数据〔2024〕660号)", + "id": 350 + }, + { + "title": "《“数据要素×”三年行动计划》实施周期是", + "options": [ + "A.2023—2025年", + "B.2024—2026年", + "C.2025—2027年", + "D.2026—2028年" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 351 + }, + { + "title": "到2026年底,我国计划打造______个以上数据要素典型应用场景", + "options": [ + "A.100", + "B.200", + "C.300", + "D.500" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 352 + }, + { + "title": "数据要素发挥的核心经济效应是", + "options": [ + "A.倍数效应", + "B.乘数效应", + "C.加法效应", + "D.递减效应" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 353 + }, + { + "title": "下列不属于“数据要素×”行动基本原则的是", + "options": [ + "A.需求牵引、注重实效", + "B.试点先行、重点突破", + "C.政府包办、企业执行", + "D.开放融合、安全有序" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 354 + }, + { + "title": "“数据要素×”行动以推动数据要素______为主线", + "options": [ + "A.高水平应用", + "B.高效率采集", + "C.高强度存储", + "D.低成本交易" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 355 + }, + { + "title": "到2026年底,我国数据产业年均增速目标是超过", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 68, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 356 + }, + { + "title": "“数据要素×工业制造”重点推动______标准生态系统建设", + "options": [ + "A.产品主数据", + "B.生产数据", + "C.供应链数据", + "D.质量数据" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 357 + }, + { + "title": "“数据要素×现代农业”核心目标是打造以______为支撑的智慧农业场景", + "options": [ + "A.数据和模型", + "B.资金和技术", + "C.土地和劳动力", + "D.政策和补贴" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 358 + }, + { + "title": "“数据要素×交通运输”重点推进______数据共享互认以提升联运效能", + "options": [ + "A.多式联运", + "B.单一公路", + "C.单一铁路", + "D.单一航空" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 359 + }, + { + "title": "“数据要素×金融服务”依托多源数据依法合规优化______业务", + "options": [ + "A.信贷与保险", + "B.证券与期货", + "C.基金与理财", + "D.信托与租赁" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 360 + }, + { + "title": "“数据要素×科技创新”重点支撑大模型开发所需的______建设", + "options": [ + "A.高质量语料库与科学数据集", + "B.通用数据库", + "C.图像数据库", + "D.语音数据库" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 361 + }, + { + "title": "“数据要素×医疗健康”探索推进______数据共享以提升就医便捷度", + "options": [ + "A.电子病历", + "B.医药采购", + "C.医保支付", + "D.医院管理" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 69, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 362 + }, + { + "title": "“数据要素×应急管理”利用多源数据实现对高危行业______精准监管", + "options": [ + "A.私挖盗采、明停暗开", + "B.安全生产标准化", + "C.员工培训", + "D.设备运维" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 363 + }, + { + "title": "“数据要素×绿色低碳”重点提升______精细化治理水平", + "options": [ + "A.生态环境", + "B.城市管理", + "C.产业发展", + "D.交通运行" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 364 + }, + { + "title": "推动数据要素安全流通的核心技术方向不包括", + "options": [ + "A.数据空间、隐私计算", + "B.联邦学习、区块链", + "C.数据沙箱", + "D.明文直传" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 365 + }, + { + "title": "“数据要素×”行动的基本原则包括", + "options": [ + "A.需求牵引、注重实效", + "B.试点先行、重点突破", + "C.有效市场、有为政府", + "D.开放融合、安全有序" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 366 + }, + { + "title": "到2026年底,“数据要素×”行动的总体目标包括", + "options": [ + "A.打造300个以上典型应用场景", + "B.数据产业年均增速超过20%", + "C.数据交易规模倍增", + "D.形成相对完善的数据产业生态" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 367 + }, + { + "title": "“数据要素×”行动强化保障支撑的重点任务包括", + "options": [ + "A.提升数据供给水平", + "B.优化数据流通环境", + "C.加强数据安全保障", + "D.扩大数据中心规模" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 70, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 368 + }, + { + "title": "数据要素安全流通重点应用的隐私增强技术包括", + "options": [ + "A.隐私计算、联邦学习", + "B.区块链、数据沙箱", + "C.数据空间", + "D.明文共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "19", + "page_number": 71, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 369 + }, + { + "title": "“数据要素×”行动做好组织实施的举措包括", + "options": [ + "A.加强组织领导", + "B.开展试点工作", + "C.推动以赛促用", + "D.加强资金支持" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 71, + "source_file": "“数据要素×”三年行动计划(2024—2026年)", + "id": 370 + }, + { + "title": "到 2025 年底,国家枢纽节点新建数据中心绿电占比目标是超过", + "options": [ + "A.60%", + "B.70%", + "C.80%", + "D.90%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 371 + }, + { + "title": "深入实施“东数西算”工程的主线是", + "options": [ + "A.以算力高质量发展赋能经济高质量发展", + "B.以数据中心规模扩张为核心", + "C.以降低用电成本为首要任务", + "D.以扩大网络带宽为唯一目标" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 372 + }, + { + "title": "国家枢纽节点外原则上不得新建", + "options": [ + "A.大型及超大型数据中心", + "B.边缘数据中心", + "C.中小企业服务器", + "D.个人存储设备" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 373 + }, + { + "title": "到 2025 年底,国家枢纽节点地区各类新增算力占全国新增算力比例目标是", + "options": [ + "A.50%以上", + "B.60%以上", + "C.70%以上", + "D.80%以上" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 374 + }, + { + "title": "我国统筹建设的三类算力不包括", + "options": [ + "A.通用算力", + "B.智能算力", + "C.超级算力", + "D.量子算力" + ], + "type": "单选", + "answer": "D", + "source_id": "5", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 375 + }, + { + "title": "为降低中小企业算力成本,鼓励发放的政策工具是", + "options": [ + "A.算力券、运力券", + "B.消费券、购物券", + "C.电费券、水费券", + "D.税收减免券" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 72, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 376 + }, + { + "title": "算力电力协同重点支持的新型电力系统模式是", + "options": [ + "A.源网荷储", + "B.自发自用", + "C.孤网运行", + "D.直购电" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 377 + }, + { + "title": "构建可信计算网络环境优先应用的技术是", + "options": [ + "A.隐私计算、联邦学习、区块链", + "B.明文传输、共享存储", + "C.集中式数据库", + "D.传统防火墙" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 378 + }, + { + "title": "算力网时延目标中,跨国家枢纽节点算力网时延指标是", + "options": [ + "A.1ms", + "B.5ms", + "C.20ms", + "D.50ms" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 379 + }, + { + "title": "数据中心节能降耗优先推广的先进散热技术是", + "options": [ + "A.液冷技术", + "B.风冷技术", + "C.自然通风", + "D.空调降温" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 380 + }, + { + "title": "支持绿色数据中心等项目可探索发行的资产证券化产品是", + "options": [ + "A.REITs(不动产投资信托基金)", + "B.股票", + "C.债券", + "D.基金" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 381 + }, + { + "title": "提升算力网络传输效能重点部署的网络技术是", + "options": [ + "A.400G/800", + "G、全光网络、SRv6", + "B.百兆以太网", + "C.传统路由器", + "D.拨号网络" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 73, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 382 + }, + { + "title": "跨区域算力调度鼓励采用的协同方式是", + "options": [ + "A.点对点“结对子”", + "B.随机分配", + "C.政府指令分配", + "D.企业自由竞争" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 383 + }, + { + "title": "算网安全保障要求实现集群内网络和数据安全管理能力为", + "options": [ + "A.可知、可视、可管、可控、可溯", + "B.可存、可拷、可改、可删", + "C.可共享、可传播", + "D.可集中、可垄断" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 384 + }, + { + "title": "推动东部向西部迁移的业务类型不包括", + "options": [ + "A.低时延在线交易", + "B.人工智能模型训练推理", + "C.离线分析、存储备份", + "D.视频渲染" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 385 + }, + { + "title": "全国一体化算力网建设的基本原则包括", + "options": [ + "A.科学布局、有序发展", + "B.应用为先、提高效能", + "C.东西联动、融合创新", + "D.绿色低碳、安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 386 + }, + { + "title": "到 2025 年底算力网建设目标包括", + "options": [ + "A.多元算力加速向国家枢纽节点集聚", + "B.算力电力双向协同机制初步形成", + "C.枢纽节点间网络传输费用大幅降低", + "D.算力网关键核心技术基本安全可靠" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "17", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 387 + }, + { + "title": "算力与绿色电力融合的主要措施包括", + "options": [ + "A.推进数据中心节能降碳改造", + "B.推广液冷等先进散热技术", + "C.利用源网荷储新型电力模式", + "D.开展绿电交易与碳汇补偿试点" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "18", + "page_number": 74, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 388 + }, + { + "title": "算网安全保障体系建设重点包括", + "options": [ + "A.强化自主防护能力", + "B.建设攻防演习靶场", + "C.构建全生命周期安全管控", + "D.建立统一监测与应急处置" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 75, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 389 + }, + { + "title": "创新政策激励方式的举措包括", + "options": [ + "A.支持绿色数据中心发行 REITs", + "B.建立东西部算力对口联建计划", + "C.发放算力券、运力券补贴企业", + "D.打造算力“飞地”" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 75, + "source_file": "国家发展改革委等部门关于深入实施“东数西算”工程加快构建全国一体化算力网的实施意见(发改数据〔2023〕1779号)", + "id": 390 + }, + { + "title": "数字经济促进共同富裕实施方案中,2025年发展目标聚焦缩小的四类差距不包括", + "options": [ + "A.区域差距", + "B.城乡差距", + "C.群体差距", + "D.行业差距" + ], + "type": "单选", + "answer": "D", + "source_id": "1", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 391 + }, + { + "title": "推进区域数字协同发展需深入实施的国家级工程是", + "options": [ + "A.东数西算工程", + "B.数字乡村工程", + "C.东数西存工程", + "D.东数西训工程" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 392 + }, + { + "title": "推进产业链数字化发展的核心载体平台是", + "options": [ + "A.工业互联网平台", + "B.电子商务平台", + "C.政务服务平台", + "D.大数据交易平台" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 393 + }, + { + "title": "数字乡村建设中,让手机成为“新农具”、直播带货成为“新农活”的抓手是", + "options": [ + "A.农民数字素养与技能培训", + "B.农村网络建设", + "C.智慧农业设备普及", + "D.农产品冷链建设" + ], + "type": "单选", + "answer": "A", + "source_id": "4", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 394 + }, + { + "title": "数字乡村产业发展重点实施的助农行动是", + "options": [ + "A.数商兴农", + "B.电商下乡", + "C.宽带乡村", + "D.智慧广电" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 395 + }, + { + "title": "强化数字素养提升中,面向老年人、残疾人开展的重点工程是", + "options": [ + "A.信息无障碍推广工程", + "B.数字技能普及工程", + "C.数字鸿沟弥合工程", + "D.数字服务普惠工程" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 76, + "source_file": "数字经济促进共同富裕实施方案", + "id": 396 + }, + { + "title": "促进社会服务普惠供给中,推动优质医疗资源下沉建成的五级网络是", + "options": [ + "A.省、市、县、乡、村远程医疗服务网络", + "B.国家、省、市、县、乡医疗网络", + "C.全国、区域、省、市、县医联体网络", + "D.公立、民营、社区、诊所、药店网络" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 397 + }, + { + "title": "数字化社会保障服务重点推进的通办事项是", + "options": [ + "A.社保“跨省通办”", + "B.医保“异地直接结算”", + "C.养老“全国漫游”", + "D.救助“全域通办”" + ], + "type": "单选", + "answer": "A", + "source_id": "8", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 398 + }, + { + "title": "数字经济促进共同富裕的组织保障依托的核心制度是", + "options": [ + "A.数字经济发展部际联席会议制度", + "B.数字乡村联席会议制度", + "C.东数西算统筹协调机制", + "D.共同富裕示范区工作机制" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 399 + }, + { + "title": "到 2025年,乡村医疗领域计划统筹建成的平台是", + "options": [ + "A.县域卫生健康综合信息平台", + "B.省级医疗大数据平台", + "C.国家级远程医疗平台", + "D.乡村卫生服务一体化平台" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 400 + }, + { + "title": "数字经济东西部协作的核心内容不包括", + "options": [ + "A.资金无偿划拨", + "B.产业互补", + "C.技术协作", + "D.人员互动" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 401 + }, + { + "title": "支持中小微企业数字化转型依托建设的核心机构是", + "options": [ + "A.数字化转型促进中心", + "B.行业协会", + "C.技术联盟", + "D.产业园区" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 77, + "source_file": "数字经济促进共同富裕实施方案", + "id": 402 + }, + { + "title": "提升乡村数字治理水平重点发展的金融服务是", + "options": [ + "A.农村数字普惠金融", + "B.农村小额信贷", + "C.农业保险", + "D.供应链金融" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 403 + }, + { + "title": "新就业形态劳动者权益保障需指导平台企业做到的核心要求是", + "options": [ + "A.依法合规制定并公开劳动规则", + "B.提高劳动报酬", + "C.统一社保缴纳", + "D.统一工作时长" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 404 + }, + { + "title": "数字经济促进共同富裕评价体系坚持的原则是", + "options": [ + "A.定量与定性、客观与主观相结合", + "B.以政府评价为主", + "C.以群众满意度为主", + "D.以经济效益为主" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 405 + }, + { + "title": "数字经济促进共同富裕需要弥合的核心差距包括", + "options": [ + "A.区域差距", + "B.城乡差距", + "C.群体差距", + "D.基本公共服务差距" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "16", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 406 + }, + { + "title": "推进区域数字协同发展的重点任务包括", + "options": [ + "A.推进数字基础设施建设", + "B.推进产业链数字化发展", + "C.加强数字经济东西部协作", + "D.推进跨境数字贸易" + ], + "type": "多选", + "answer": "ABC", + "source_id": "17", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 407 + }, + { + "title": "数字乡村建设的重点方向包括", + "options": [ + "A.乡村产业数字化转型", + "B.农村数字人才培养", + "C.乡村数字治理提升", + "D.乡村人居环境整治" + ], + "type": "多选", + "answer": "ABC", + "source_id": "18", + "page_number": 78, + "source_file": "数字经济促进共同富裕实施方案", + "id": 408 + }, + { + "title": "促进社会服务普惠供给的重点领域包括", + "options": [ + "A.数字教育资源共享", + "B.远程医疗服务供给", + "C.养老服务信息化", + "D.数字化社会保障" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "19", + "page_number": 79, + "source_file": "数字经济促进共同富裕实施方案", + "id": 409 + }, + { + "title": "数字经济促进共同富裕的保障措施包括", + "options": [ + "A.加强组织领导", + "B.强化要素保障", + "C.建立评价体系", + "D.加大宣传力度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "20", + "page_number": 79, + "source_file": "数字经济促进共同富裕实施方案", + "id": 410 + }, + { + "title": "GB/T35295-2017 定义的大数据 4个核心特征不包括", + "options": [ + "A.体量 (Volume)", + "B.多样性 (Variety)", + "C.速度 (Velocity)", + "D.价值 (Value)" + ], + "type": "单选", + "answer": "D", + "source_id": "1", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 411 + }, + { + "title": "大数据参考体系结构包含的逻辑功能构件数量是", + "options": [ + "A.3个", + "B.5个", + "C.7个", + "D.9个" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 412 + }, + { + "title": "负责将新的数据或信息引入大数据系统的角色是", + "options": [ + "A.系统协调者", + "B.数据提供者", + "C.大数据应用提供者", + "D.数据消费者" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 413 + }, + { + "title": "大数据生存周期模型的四个核心阶段不包括", + "options": [ + "A.收集", + "B.准备", + "C.分析", + "D.存储" + ], + "type": "单选", + "answer": "D", + "source_id": "4", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 414 + }, + { + "title": "\"读时模式\" 对应的大数据系统类型是", + "options": [ + "A.大数据卷系统", + "B.大数据动态应用系统", + "C.数据仓库系统", + "D.关系数据库系统" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 415 + }, + { + "title": "为提高性能而提升单节点处理速度、存储和内存等参数的扩展方式是", + "options": [ + "A.水平扩展", + "B.垂直扩展", + "C.分布式扩展", + "D.集群扩展" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 80, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 416 + }, + { + "title": "非关系模型也常被简称为", + "options": [ + "A.SQL", + "B.NoSQL", + "C.NewSQL", + "D.OLAP" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 417 + }, + { + "title": "处于网络传输或计算机内存中供读取更新状态的数据称为", + "options": [ + "A.静态数据", + "B.动态数据", + "C.流数据", + "D.元数据" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 418 + }, + { + "title": "对数据集的历史元数据进行讨论和追溯的术语是", + "options": [ + "A.元数据", + "B.数据溯源", + "C.追溯", + "D.数据血缘" + ], + "type": "单选", + "answer": "C", + "source_id": "9", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 419 + }, + { + "title": "大数据工程化的核心目标是构建具有什么特性的数据系统", + "options": [ + "A.高可用", + "B.可伸缩", + "C.高安全", + "D.高性能" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 81, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 420 + }, + { + "title": "GB/T35589-2017 定义的大数据参考架构围绕的两个核心价值链是", + "options": [ + "A.信息价值链和技术价值链", + "B.数据价值链和业务价值链", + "C.信息价值链和信息技术价值链", + "D.数据价值链和服务价值链" + ], + "type": "单选", + "answer": "C", + "source_id": "11", + "page_number": 81, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 421 + }, + { + "title": "大数据应用提供者执行的核心活动不包括", + "options": [ + "A.收集", + "B.预处理", + "C.资源管理", + "D.访问" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 81, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 422 + }, + { + "title": "大数据框架提供者不包含的活动是", + "options": [ + "A.基础设施", + "B.平台", + "C.分析", + "D.资源管理" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 423 + }, + { + "title": "安全和隐私模块不包含的防护维度是", + "options": [ + "A.网络安全", + "B.主机安全", + "C.供应链安全", + "D.数据安全" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 424 + }, + { + "title": "管理模块提供的核心能力不包括", + "options": [ + "A.安装部署", + "B.监控告警", + "C.算法开发", + "D.权限管理" + ], + "type": "单选", + "answer": "C", + "source_id": "15", + "page_number": 82, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 425 + }, + { + "title": "GB/T36073-2025 数据管理能力成熟度评估模型包含的能力域数量是", + "options": [ + "A.7个", + "B.8个", + "C.9个", + "D.10个" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 426 + }, + { + "title": "GB/T36073-2025 相比2018版新增的核心能力域是", + "options": [ + "A.数据战略", + "B.数据资产", + "C.数据安全", + "D.数据应用" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 427 + }, + { + "title": "DCMM 成熟度等级中,\"组织将数据视为实现战略目标的重要资产\" 对应的等级是", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 82, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 428 + }, + { + "title": "数据治理域2025 版新增的能力项是", + "options": [ + "A.数据治理组织", + "B.数据制度建设", + "C.数据文化建设", + "D.数据治理沟通" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 429 + }, + { + "title": "数据资产域不包含的能力项是", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据标准" + ], + "type": "单选", + "answer": "D", + "source_id": "20", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 430 + }, + { + "title": "数据应用流通域2025 版新增的能力项是", + "options": [ + "A.数据应用", + "B.外部数据管理", + "C.数据开放", + "D.数据服务" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 431 + }, + { + "title": "DCMM 数据管理能力成熟度的最高等级是", + "options": [ + "A.稳健级", + "B.量化管理级", + "C.优化级", + "D.卓越级" + ], + "type": "单选", + "answer": "C", + "source_id": "22", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 432 + }, + { + "title": "\"建立组织级数据目录\" 属于哪个成熟度等级的典型特征", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级" + ], + "type": "单选", + "answer": "C", + "source_id": "23", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 433 + }, + { + "title": "数据战略域包含的能力项不包括", + "options": [ + "A.数据战略规划", + "B.数据战略实施", + "C.数据战略评估", + "D.数据战略运营" + ], + "type": "单选", + "answer": "D", + "source_id": "24", + "page_number": 83, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 434 + }, + { + "title": "数据安全域的三个核心能力项是", + "options": [ + "A.数据合规管理、数据安全防护、数据安全审计", + "B.数据安全策略、数据安全管理、数据安全审计", + "C.数据加密、数据脱敏、数据备份", + "D.访问控制、身份认证、日志审计" + ], + "type": "单选", + "answer": "A", + "source_id": "25", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 435 + }, + { + "title": "数据生存周期域的最后一个阶段是", + "options": [ + "A.数据运维", + "B.数据设计与开发", + "C.数据退役", + "D.数据销毁" + ], + "type": "单选", + "answer": "C", + "source_id": "26", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 436 + }, + { + "title": "负责明确数据资产持有主体、使用主体和经营主体的能力项是", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据治理" + ], + "type": "单选", + "answer": "A", + "source_id": "27", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 437 + }, + { + "title": "\"将发展数据业务纳入组织业务范畴,培育数据驱动的新产品与服务\" 属于哪个成熟度等级", + "options": [ + "A.受管理级", + "B.稳健级", + "C.量化管理级", + "D.优化级" + ], + "type": "单选", + "answer": "C", + "source_id": "28", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 438 + }, + { + "title": "数据标准域不包含的能力项是", + "options": [ + "A.业务术语", + "B.主数据", + "C.元数据", + "D.指标数据" + ], + "type": "单选", + "answer": "C", + "source_id": "29", + "page_number": 84, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 439 + }, + { + "title": "数据质量域的四个能力项是", + "options": [ + "A.数据质量需求、数据质量检查、数据质量分析、数据质量提升", + "B.数据质量规划、数据质量控制、数据质量改进、数据质量评估", + "C.数据质量标准、数据质量检测、数据质量报告、数据质量整改", + "D.数据质量设计、数据质量实施、数据质量监控、数据质量优化" + ], + "type": "单选", + "answer": "A", + "source_id": "30", + "page_number": 85, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 440 + }, + { + "title": "GB/T37721-2019 定义的大数据分析系统核心模块不包括", + "options": [ + "A.数据准备模块", + "B.分析支撑模块", + "C.资源管理模块", + "D.流程编排模块" + ], + "type": "单选", + "answer": "C", + "source_id": "31", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 441 + }, + { + "title": "数据准备模块的功能不包括", + "options": [ + "A.数据抽取", + "B.数据清洗", + "C.数据建模", + "D.数据加载" + ], + "type": "单选", + "answer": "C", + "source_id": "32", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 442 + }, + { + "title": "分析支撑模块的机器学习功能不要求支持", + "options": [ + "A.回归与分类算法", + "B.聚类算法", + "C.强化学习算法", + "D.降维算法" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 443 + }, + { + "title": "数据分析模块包含的三种核心分析模式不包括", + "options": [ + "A.离线数据分析", + "B.流数据分析", + "C.交互式联机分析", + "D.实时数据分析" + ], + "type": "单选", + "answer": "D", + "source_id": "34", + "page_number": 85, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 444 + }, + { + "title": "流数据分析要求支持的核心窗口方式是", + "options": [ + "A.滑动窗口", + "B.固定窗口", + "C.跳跃窗口", + "D.滚动窗口" + ], + "type": "单选", + "answer": "A", + "source_id": "35", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 445 + }, + { + "title": "预测型分析结果的准确率要求精确到小数点后至少", + "options": [ + "A.1 位", + "B.2 位", + "C.3 位", + "D.4 位" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 446 + }, + { + "title": "流程编排模块的核心功能是", + "options": [ + "A.数据处理流程可视化编排", + "B.算法开发", + "C.数据可视化", + "D.资源调度" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 447 + }, + { + "title": "统计分析功能不要求支持的统计量是", + "options": [ + "A.最大值、最小值", + "B.平均数、中位数", + "C.方差、标准差", + "D.峰度、偏度" + ], + "type": "单选", + "answer": "D", + "source_id": "38", + "page_number": 86, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 448 + }, + { + "title": "GB/T37722-2019 定义的大数据存储子系统不包含的存储类型是", + "options": [ + "A.分布式文件存储", + "B.分布式结构化数据存储", + "C.分布式对象存储", + "D.分布式图数据存储" + ], + "type": "单选", + "answer": "C", + "source_id": "39", + "page_number": 86, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 449 + }, + { + "title": "大数据处理子系统不包含的计算框架是", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.边缘计算框架", + "D.内存计算框架" + ], + "type": "单选", + "answer": "C", + "source_id": "40", + "page_number": 86, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 450 + }, + { + "title": "分布式图数据存储的核心数据模型是", + "options": [ + "A.键值模型", + "B.节点和边模型", + "C.关系模型", + "D.文档模型" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 451 + }, + { + "title": "批处理的核心处理方式是", + "options": [ + "A.分散 - 聚集", + "B.实时计算", + "C.增量计算", + "D.流式计算" + ], + "type": "单选", + "answer": "A", + "source_id": "42", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 452 + }, + { + "title": "能够同时支持批处理和流处理的统一计算框架是", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.批流融合计算框架", + "D.内存计算框架" + ], + "type": "单选", + "answer": "C", + "source_id": "43", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 453 + }, + { + "title": "内存计算的核心特点是", + "options": [ + "A.优先使用内存进行计算", + "B.优先使用磁盘进行计算", + "C.分布式计算", + "D.并行计算" + ], + "type": "单选", + "answer": "A", + "source_id": "44", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 454 + }, + { + "title": "分布式列式数据存储的基本存储形式是", + "options": [ + "A.二维表", + "B.键值对", + "C.文档", + "D.图" + ], + "type": "单选", + "answer": "B", + "source_id": "45", + "page_number": 87, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 455 + }, + { + "title": "GB/T38673-2020 定义的大数据系统划分的功能模块数量是", + "options": [ + "A.7个", + "B.8个", + "C.9个", + "D.10个" + ], + "type": "单选", + "answer": "C", + "source_id": "46", + "page_number": 87, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 456 + }, + { + "title": "大数据系统的非功能要求不包括", + "options": [ + "A.可靠性", + "B.兼容性", + "C.功能性", + "D.可扩展性" + ], + "type": "单选", + "answer": "C", + "source_id": "47", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 457 + }, + { + "title": "可靠性要求中的高可用核心是确保", + "options": [ + "A.系统组件不存在单点故障", + "B.数据多副本存储", + "C.自动备份恢复", + "D.故障自动迁移" + ], + "type": "单选", + "answer": "A", + "source_id": "48", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 458 + }, + { + "title": "安全性要求中的权限管理最小粒度是", + "options": [ + "A.系统级", + "B.数据库级", + "C.数据表级", + "D.数据列级" + ], + "type": "单选", + "answer": "D", + "source_id": "49", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 459 + }, + { + "title": "可扩展性要求的核心是支持", + "options": [ + "A.集群在线扩容和减容", + "B.硬件升级", + "C.软件更新", + "D.功能扩展" + ], + "type": "单选", + "answer": "A", + "source_id": "50", + "page_number": 88, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 460 + }, + { + "title": "大数据的 4V 核心特征包括", + "options": [ + "A.体量 (Volume)", + "B.多样性 (Variety)", + "C.速度 (Velocity)", + "D.多变性 (Variability)" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "51", + "page_number": 88, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 461 + }, + { + "title": "大数据参考体系结构的逻辑功能构件包括", + "options": [ + "A.系统协调者", + "B.数据提供者", + "C.大数据应用提供者", + "D.大数据框架提供者", + "E.数据消费者" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "52", + "page_number": 88, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 462 + }, + { + "title": "大数据框架提供者提供的核心框架类型包括", + "options": [ + "A.基础设施框架", + "B.数据平台框架", + "C.处理框架", + "D.消息/通信框架" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "53", + "page_number": 89, + "source_file": "GB/T35295-2017 信息技术大数据 术语", + "id": 463 + }, + { + "title": "大数据参考架构的两个核心价值链是", + "options": [ + "A.信息价值链", + "B.数据价值链", + "C.信息技术价值链", + "D.业务价值链" + ], + "type": "多选", + "answer": "AC", + "source_id": "54", + "page_number": 89, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 464 + }, + { + "title": "大数据应用提供者的核心活动包括", + "options": [ + "A.收集", + "B.预处理", + "C.分析", + "D.可视化", + "E.访问" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "55", + "page_number": 89, + "source_file": "GB/T35589-2017 信息技术大数据 技术参考模型", + "id": 465 + }, + { + "title": "GB/T36073-2025 包含的核心能力域有", + "options": [ + "A.数据战略、数据治理", + "B.数据架构、数据资产", + "C.数据标准、数据质量", + "D.数据安全、数据生存周期", + "E.数据应用流通" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "56", + "page_number": 89, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 466 + }, + { + "title": "DCMM2025 版相比 2018 版的主要技术变化包括", + "options": [ + "A.新增数据资产能力域", + "B.新增数据文化建设能力项", + "C.新增外部数据管理能力项", + "D.将数据应用能力域更改为数据应用流通能力域" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "57", + "page_number": 89, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 467 + }, + { + "title": "DCMM 数据管理能力成熟度等级包括", + "options": [ + "A.初始级", + "B.受管理级", + "C.稳健级", + "D.量化管理级", + "E.优化级" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "58", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 468 + }, + { + "title": "数据资产域的核心能力项包括", + "options": [ + "A.权属管理", + "B.价值评估", + "C.资产运营", + "D.数据服务" + ], + "type": "多选", + "answer": "ABC", + "source_id": "59", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 469 + }, + { + "title": "数据治理域的核心能力项包括", + "options": [ + "A.数据治理组织", + "B.数据制度建设", + "C.数据文化建设", + "D.数据治理沟通" + ], + "type": "多选", + "answer": "ABC", + "source_id": "60", + "page_number": 90, + "source_file": "GB/T36073-2025 数据管理能力成熟度评估模型", + "id": 470 + }, + { + "title": "大数据分析系统的数据准备模块核心功能包括", + "options": [ + "A.数据抽取", + "B.数据清洗", + "C.数据转换", + "D.数据加载" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 471 + }, + { + "title": "分析支撑模块的核心功能包括", + "options": [ + "A.查询", + "B.机器学习", + "C.统计分析", + "D.可视化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "62", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 472 + }, + { + "title": "数据分析模块的核心分析类型包括", + "options": [ + "A.预测型分析", + "B.描述型分析", + "C.诊断型分析", + "D.prescriptive分析" + ], + "type": "多选", + "answer": "AB", + "source_id": "63", + "page_number": 90, + "source_file": "GB/T37721-2019 信息技术大数据分析系统功能要求", + "id": 473 + }, + { + "title": "大数据存储子系统的核心存储类型包括", + "options": [ + "A.分布式文件存储", + "B.分布式结构化数据存储", + "C.分布式列式数据存储", + "D.分布式图数据存储" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "64", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 474 + }, + { + "title": "大数据处理子系统的核心计算框架包括", + "options": [ + "A.批处理框架", + "B.流处理框架", + "C.图计算框架", + "D.内存计算框架", + "E.批流融合计算框架" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "65", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 475 + }, + { + "title": "批流融合计算框架的核心要求包括", + "options": [ + "A.支持批流融合统一查询 SQL 语言", + "B.支持常用时间窗口", + "C.支持事件驱动的流处理", + "D.支持处理乱序事件流" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "66", + "page_number": 91, + "source_file": "GB/T37722-2019 信息技术大数据存储与处理系统功能要求", + "id": 476 + }, + { + "title": "大数据系统的核心功能模块包括", + "options": [ + "A.数据收集、数据预处理", + "B.数据存储、数据处理", + "C.数据分析、数据可视化", + "D.数据访问、资源管理、系统管理" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 91, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 477 + }, + { + "title": "大数据系统的核心非功能要求包括", + "options": [ + "A.可靠性", + "B.兼容性", + "C.安全性", + "D.可扩展性", + "E.维护性、易用性" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "68", + "page_number": 91, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 478 + }, + { + "title": "安全性要求中的用户管理内容包括", + "options": [ + "A.身份标识和鉴别", + "B.密码复杂度要求", + "C.登录失败处理", + "D.权限最小化分配" + ], + "type": "多选", + "answer": "ABC", + "source_id": "69", + "page_number": 92, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 479 + }, + { + "title": "可靠性要求包括的核心方面有", + "options": [ + "A.高可用", + "B.数据冗余存储与分布", + "C.数据备份和恢复", + "D.故障恢复与迁移" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "70", + "page_number": 92, + "source_file": "GB/T38673-2020 信息技术大数据大数据系统基本要求", + "id": 480 + }, + { + "title": "到 2026 年,厦门市数字经济增加值占 GDP 比重目标为超过____", + "options": [ + "A.57%", + "B.60%", + "C.65%", + "D.70%" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 481 + }, + { + "title": "到 2026 年,厦门市公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.3000", + "B.5000", + "C.8000", + "D.10000" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 482 + }, + { + "title": "厦门市试点建设____,打通公共数据汇聚共享堵点", + "options": [ + "A.数据高铁", + "B.数据高速", + "C.数据快线", + "D.数据通道" + ], + "type": "单选", + "answer": "A", + "source_id": "3", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 483 + }, + { + "title": "到 2026 年,厦门市数据交易平台上线数据产品累计目标超过____个", + "options": [ + "A.800", + "B.1000", + "C.1300", + "D.2500" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 484 + }, + { + "title": "到 2026 年,厦门市培育公共数据赋能产业发展典型应用场景目标为____个以上", + "options": [ + "A.20", + "B.30", + "C.50", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 485 + }, + { + "title": "到 2026 年,厦门市关键环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "C", + "source_id": "6", + "page_number": 93, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 486 + }, + { + "title": "厦门市将打造____供应链金融创新中心平台", + "options": [ + "A.鹭江", + "B.思明", + "C.湖里", + "D.集美" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 487 + }, + { + "title": "到 2026 年,厦门市累计推出____项“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "C", + "source_id": "8", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 488 + }, + { + "title": "厦门市将加快建设____数字街区", + "options": [ + "A.海丝", + "B.金砖", + "C.两岸", + "D.自贸" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 489 + }, + { + "title": "到 2026 年,厦门市农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 94, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 490 + }, + { + "title": "我国将深入实施____行动,全方位赋能千行百业", + "options": [ + "A.数字经济 +", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造 +" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 94, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 491 + }, + { + "title": "我国将建立全国数据资源____管理体系", + "options": [ + "A.一本账", + "B.一张网", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 94, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 492 + }, + { + "title": "我国将实施____发展行动计划", + "options": [ + "A.可信数据空间", + "B.数据要素流通", + "C.人工智能大模型", + "D.工业互联网" + ], + "type": "单选", + "answer": "A", + "source_id": "13", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 493 + }, + { + "title": "制造业数字化转型的核心要求是____", + "options": [ + "A.数字化、网络化、智能化", + "B.智改数转网联", + "C.智能制造工程", + "D.工业互联网创新" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 494 + }, + { + "title": "“人工智能 +”行动不包括以下哪个领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.乡村振兴" + ], + "type": "单选", + "answer": "D", + "source_id": "15", + "page_number": 95, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 495 + }, + { + "title": "到 2030 年,厦门市人工智能核心产业规模目标达到____亿元", + "options": [ + "A.500", + "B.650", + "C.850", + "D.1000" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 496 + }, + { + "title": "到 2030 年,厦门市智能体应用普及率目标超过____", + "options": [ + "A.70%", + "B.80%", + "C.90%", + "D.95%" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 497 + }, + { + "title": "厦门市将打造全市____物联感知体系", + "options": [ + "A.一张网", + "B.一本账", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 95, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 498 + }, + { + "title": "“十五五”期间厦门市新增算力目标为____PFLOPS 以上", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 499 + }, + { + "title": "厦门市将建设国际物流供应链国家人工智能应用____基地", + "options": [ + "A.研发", + "B.中试", + "C.示范", + "D.产业化" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 500 + }, + { + "title": "到 2030 年,厦门市目标培育____个优秀行业模型和智能体", + "options": [ + "A.30", + "B.50", + "C.80", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 501 + }, + { + "title": "“数据要素×”行动的核心是通过数据多场景应用实现对经济发展的____效应", + "options": [ + "A.叠加", + "B.倍增", + "C.乘数", + "D.指数" + ], + "type": "单选", + "answer": "B", + "source_id": "22", + "page_number": 96, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 502 + }, + { + "title": "数字中国建设按照____整体框架进行布局", + "options": [ + "A.2322", + "B.2522", + "C.3522", + "D.2532" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 96, + "source_file": "数字中国建设整体布局规划", + "id": 503 + }, + { + "title": "数字中国建设的“两大基础”是数字基础设施和____", + "options": [ + "A.数据资源体系", + "B.技术创新体系", + "C.安全保障体系", + "D.治理体系" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 96, + "source_file": "数字中国建设整体布局规划", + "id": 504 + }, + { + "title": "到____年,数字化发展水平进入世界前列", + "options": [ + "A.2025", + "B.2030", + "C.2035", + "D.2050" + ], + "type": "单选", + "answer": "C", + "source_id": "25", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 505 + }, + { + "title": "数字中国建设的战略路径不包括____", + "options": [ + "A.夯实基础", + "B.赋能全局", + "C.强化能力", + "D.深化改革" + ], + "type": "单选", + "answer": "D", + "source_id": "26", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 506 + }, + { + "title": "数字中国建设要强化数字技术创新体系和____“两大能力”", + "options": [ + "A.数字治理体系", + "B.数字安全屏障", + "C.数字产业体系", + "D.数字服务体系" + ], + "type": "单选", + "answer": "B", + "source_id": "27", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 507 + }, + { + "title": "要引导通用数据中心、超算中心、智能计算中心、____等合理梯次布局", + "options": [ + "A.边缘数据中心", + "B.分布式数据中心", + "C.绿色数据中心", + "D.算力中心" + ], + "type": "单选", + "answer": "A", + "source_id": "28", + "page_number": 97, + "source_file": "数字中国建设整体布局规划", + "id": 508 + }, + { + "title": "到 2026 年,福建省数字经济增加值占 GDP 比重目标为____左右", + "options": [ + "A.50%", + "B.57%", + "C.60%", + "D.65%" + ], + "type": "单选", + "answer": "B", + "source_id": "29", + "page_number": 97, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 509 + }, + { + "title": "到 2026 年,福建省公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.5000", + "B.8000", + "C.10000", + "D.15000" + ], + "type": "单选", + "answer": "C", + "source_id": "30", + "page_number": 97, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 510 + }, + { + "title": "到 2026 年,福建省数据中心平均 PUE 值目标低于____", + "options": [ + "A.1.3", + "B.1.35", + "C.1.4", + "D.1.45" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 511 + }, + { + "title": "福建省大数据交易所采用____建设模式", + "options": [ + "A.一所一站", + "B.一所多站", + "C.多所多站", + "D.区域联盟" + ], + "type": "单选", + "answer": "B", + "source_id": "32", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 512 + }, + { + "title": "到 2026 年,福建省大数据交易所拓展数商目标超过____家", + "options": [ + "A.500", + "B.800", + "C.1000", + "D.1500" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 513 + }, + { + "title": "福建省打造____数据可信智能链网平台", + "options": [ + "A.数通八闽", + "B.福数通", + "C.闽数通", + "D.数字福建" + ], + "type": "单选", + "answer": "A", + "source_id": "34", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 514 + }, + { + "title": "到 2026 年,福建省关键业务环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "B", + "source_id": "35", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 515 + }, + { + "title": "福建省推广____公众养老服务品牌", + "options": [ + "A.福见康养", + "B.闽康养", + "C.智慧养老", + "D.数字养老" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 98, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 516 + }, + { + "title": "福建省打造____省域治理智能化中枢平台", + "options": [ + "A.闽数治", + "B.福数治", + "C.数字福建", + "D.智慧福建" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 99, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 517 + }, + { + "title": "厦门市将建立____科技攻关新机制", + "options": [ + "A.揭榜挂帅", + "B.企业界出题、科技界答题", + "C.赛马制", + "D.定向委托" + ], + "type": "单选", + "answer": "B", + "source_id": "38", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 518 + }, + { + "title": "厦门市将前瞻部署____网络试点", + "options": [ + "A.5G", + "B.5G-A", + "C.6G", + "D.万兆光网" + ], + "type": "单选", + "answer": "D", + "source_id": "39", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 519 + }, + { + "title": "到 2026 年,厦门市限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.28.5%", + "B.30%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "40", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 520 + }, + { + "title": "厦门市将升级构建企业____事务协调服务平台", + "options": [ + "A.窗内", + "B.窗外", + "C.线上", + "D.线下" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 521 + }, + { + "title": "到 2026 年,厦门市“数据最多采一次”覆盖目标超过____政务服务办件量", + "options": [ + "A.90%", + "B.95%", + "C.98%", + "D.100%" + ], + "type": "单选", + "answer": "B", + "source_id": "42", + "page_number": 99, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 522 + }, + { + "title": "厦门市将实现区级以上公共文化场馆数字化服务____覆盖", + "options": [ + "A.80%", + "B.90%", + "C.95%", + "D.100%" + ], + "type": "单选", + "answer": "D", + "source_id": "43", + "page_number": 100, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 523 + }, + { + "title": "我国将推动____与算力协同布局", + "options": [ + "A.绿色电力", + "B.新能源", + "C.可再生能源", + "D.清洁能源" + ], + "type": "单选", + "answer": "A", + "source_id": "44", + "page_number": 100, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 524 + }, + { + "title": "我国将建立健全模型____评估体系", + "options": [ + "A.性能", + "B.能力", + "C.安全", + "D.质量" + ], + "type": "单选", + "answer": "B", + "source_id": "45", + "page_number": 100, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 525 + }, + { + "title": "厦门市将落实国家城市____创新发展试点任务", + "options": [ + "A.可信数据空间", + "B.数据要素市场", + "C.数据流通交易", + "D.数据产权登记" + ], + "type": "单选", + "answer": "A", + "source_id": "46", + "page_number": 100, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 526 + }, + { + "title": "“智赋百景”行动的核心是以____带动人工智能技术产品落地", + "options": [ + "A.技术研发", + "B.场景建设", + "C.产业培育", + "D.政策支持" + ], + "type": "单选", + "answer": "B", + "source_id": "47", + "page_number": 100, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 527 + }, + { + "title": "数字中国建设要优化数字化发展国内国际____", + "options": [ + "A.两个市场", + "B.两个环境", + "C.两种资源", + "D.两个循环" + ], + "type": "单选", + "answer": "B", + "source_id": "48", + "page_number": 100, + "source_file": "数字中国建设整体布局规划", + "id": 528 + }, + { + "title": "要深入实施国家____数字化战略", + "options": [ + "A.文化", + "B.教育", + "C.医疗", + "D.政务" + ], + "type": "单选", + "answer": "A", + "source_id": "49", + "page_number": 101, + "source_file": "数字中国建设整体布局规划", + "id": 529 + }, + { + "title": "要构建以____为核心的智慧水利体系", + "options": [ + "A.数字孪生流域", + "B.智慧水务", + "C.数字水网", + "D.智慧防汛" + ], + "type": "单选", + "answer": "A", + "source_id": "50", + "page_number": 101, + "source_file": "数字中国建设整体布局规划", + "id": 530 + }, + { + "title": "福建省将实施____和“宽带边疆”行动", + "options": [ + "A.信号升格", + "B.双千兆", + "C.万兆光网", + "D.5G-A" + ], + "type": "单选", + "answer": "A", + "source_id": "51", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 531 + }, + { + "title": "到 2026 年,福建省农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "B", + "source_id": "52", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 532 + }, + { + "title": "到 2026 年,福建省限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.25%", + "B.28.5%", + "C.30%", + "D.35%" + ], + "type": "单选", + "answer": "B", + "source_id": "53", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 533 + }, + { + "title": "福建省将打造____文旅线上服务平台", + "options": [ + "A.畅游八闽", + "B.福游福建", + "C.清新福建", + "D.海丝福建" + ], + "type": "单选", + "answer": "A", + "source_id": "54", + "page_number": 101, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 534 + }, + { + "title": "厦门市将统筹____一体化物联感知体系建设", + "options": [ + "A.城市大脑", + "B.数字政府", + "C.智慧城市", + "D.数字孪生" + ], + "type": "单选", + "answer": "A", + "source_id": "55", + "page_number": 102, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 535 + }, + { + "title": "厦门市将深入开展____行动,打造人工智能创新应用示范区", + "options": [ + "A.智赋百景", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造" + ], + "type": "单选", + "answer": "A", + "source_id": "56", + "page_number": 102, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 536 + }, + { + "title": "我国将推动通用大模型和____同步发展", + "options": [ + "A.专用大模型", + "B.行业专用模型", + "C.多模态大模型", + "D.具身智能模型" + ], + "type": "单选", + "answer": "B", + "source_id": "57", + "page_number": 102, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 537 + }, + { + "title": "厦门市将培育____个以上高质量数据集", + "options": [ + "A.20", + "B.25", + "C.30", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "58", + "page_number": 102, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 538 + }, + { + "title": "要加快推进____“一件事一次办”", + "options": [ + "A.政务服务", + "B.民生服务", + "C.企业服务", + "D.公共服务" + ], + "type": "单选", + "answer": "A", + "source_id": "59", + "page_number": 102, + "source_file": "数字中国建设整体布局规划", + "id": 539 + }, + { + "title": "到 2026 年,福建省累计推出____项左右“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "B", + "source_id": "60", + "page_number": 102, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 540 + }, + { + "title": "数字中国建设“2522”整体框架包括____", + "options": [ + "A.夯实两大基础", + "B.推进五位一体融合", + "C.强化两大能力", + "D.优化两个环境" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 541 + }, + { + "title": "数字中国建设的“两大基础”是____", + "options": [ + "A.数字基础设施", + "B.数据资源体系", + "C.技术创新体系", + "D.安全保障体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "62", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 542 + }, + { + "title": "数字中国建设要推进数字技术与____建设深度融合", + "options": [ + "A.经济", + "B.政治", + "C.文化", + "D.社会", + "E.生态文明" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "63", + "page_number": 103, + "source_file": "数字中国建设整体布局规划", + "id": 543 + }, + { + "title": "“人工智能 +”行动包括以下哪些领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.民生福祉", + "E.治理能力" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "64", + "page_number": 103, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 544 + }, + { + "title": "厦门市将围绕以下哪些重点行业打造数据流通专区____", + "options": [ + "A.信用科技", + "B.双碳产业", + "C.供应链金融", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABC", + "source_id": "65", + "page_number": 103, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 545 + }, + { + "title": "厦门市数字化全面赋能的重点领域包括____", + "options": [ + "A.党的建设", + "B.经济发展", + "C.政府治理", + "D.文化发展", + "E.社会发展", + "F.生态文明建设" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "66", + "page_number": 104, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 546 + }, + { + "title": "厦门市将建设以下哪些可信数据空间____", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.个人可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 104, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 547 + }, + { + "title": "“数据全生命周期”包括以下哪些过程____", + "options": [ + "A.数据采集", + "B.数据传输", + "C.数据存储", + "D.数据处理", + "E.数据交换", + "F.数据销毁" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "68", + "page_number": 104, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 548 + }, + { + "title": "福建省将建设以下哪些异地灾备节点构成“多地多中心”灾备体系____", + "options": [ + "A.福州", + "B.安溪", + "C.宁夏", + "D.厦门" + ], + "type": "多选", + "answer": "ABC", + "source_id": "69", + "page_number": 104, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 549 + }, + { + "title": "福建省将围绕以下哪些重点行业培育数据流通服务平台____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.金融服务", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "70", + "page_number": 104, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 550 + }, + { + "title": "数字中国建设要强化以下哪些“两大能力”____", + "options": [ + "A.数字技术创新体系", + "B.数字安全屏障", + "C.数字治理体系", + "D.数字产业体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "71", + "page_number": 105, + "source_file": "数字中国建设整体布局规划", + "id": 551 + }, + { + "title": "要引导以下哪些数据中心合理梯次布局____", + "options": [ + "A.通用数据中心", + "B.超算中心", + "C.智能计算中心", + "D.边缘数据中心" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "72", + "page_number": 105, + "source_file": "数字中国建设整体布局规划", + "id": 552 + }, + { + "title": "厦门市将深入开展“数据要素×”行动,每年在以下哪些重点领域推出典型应用场景____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.交通物流", + "D.金融服务" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "73", + "page_number": 105, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 553 + }, + { + "title": "我国算力设施发展的方向包括____", + "options": [ + "A.规模化", + "B.集约化", + "C.绿色化", + "D.普惠化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "74", + "page_number": 105, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 554 + }, + { + "title": "厦门市人工智能发展行动包括____", + "options": [ + "A.行业大模型能力提升行动", + "B.具身智能发展突破行动", + "C.智赋百景行动", + "D.数据要素×行动" + ], + "type": "多选", + "answer": "AB", + "source_id": "75", + "page_number": 105, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 555 + }, + { + "title": "福建省将重点依托以下哪些产业园建设省级高性能数据中心集群____", + "options": [ + "A.数字福建(长乐)产业园", + "B.数字福建(安溪)产业园", + "C.厦门科学城", + "D.泉州半导体高新区" + ], + "type": "多选", + "answer": "AB", + "source_id": "76", + "page_number": 105, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 556 + }, + { + "title": "福建省数字赋能经济发展的重点包括____", + "options": [ + "A.数字新产业", + "B.农业数字化", + "C.工业数字化转型", + "D.服务业数字化提升" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "77", + "page_number": 106, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 557 + }, + { + "title": "优化数字化发展环境包括____", + "options": [ + "A.建设公平规范的数字治理生态", + "B.构建开放共赢的数字领域国际合作格局", + "C.完善数字基础设施", + "D.强化数据要素流通" + ], + "type": "多选", + "answer": "AB", + "source_id": "78", + "page_number": 106, + "source_file": "数字中国建设整体布局规划", + "id": 558 + }, + { + "title": "厦门市试点建设____,打通公共数据汇聚共享堵点", + "options": [ + "A.数据高铁", + "B.数据高速", + "C.数据快线", + "D.数据通道" + ], + "type": "单选", + "answer": "A", + "source_id": "1", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 559 + }, + { + "title": "厦门市将打造____供应链金融创新中心平台", + "options": [ + "A.鹭江", + "B.思明", + "C.湖里", + "D.集美" + ], + "type": "单选", + "answer": "A", + "source_id": "2", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 560 + }, + { + "title": "厦门市将加快建设____数字街区", + "options": [ + "A.海丝", + "B.金砖", + "C.两岸", + "D.自贸" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 107, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 561 + }, + { + "title": "我国将深入实施____行动,全方位赋能千行百业", + "options": [ + "A.数字经济 +", + "B.人工智能 +", + "C.数据要素×", + "D.智能制造 +" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 562 + }, + { + "title": "我国将建立全国数据资源____管理体系", + "options": [ + "A.一本账", + "B.一张网", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 563 + }, + { + "title": "制造业数字化转型的核心要求是____", + "options": [ + "A.数字化、网络化、智能化", + "B.智改数转网联", + "C.智能制造工程", + "D.工业互联网创新" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 107, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 564 + }, + { + "title": "厦门市将打造全市____物联感知体系", + "options": [ + "A.一张网", + "B.一本账", + "C.一平台", + "D.一体系" + ], + "type": "单选", + "answer": "A", + "source_id": "7", + "page_number": 108, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 565 + }, + { + "title": "数字中国建设按照____整体框架进行布局", + "options": [ + "A.2322", + "B.2522", + "C.3522", + "D.2532" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 566 + }, + { + "title": "数字中国建设的“两大基础”是数字基础设施和____", + "options": [ + "A.数据资源体系", + "B.技术创新体系", + "C.安全保障体系", + "D.治理体系" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 567 + }, + { + "title": "到____年,数字化发展水平进入世界前列", + "options": [ + "A.2025", + "B.2030", + "C.2035", + "D.2050" + ], + "type": "单选", + "answer": "C", + "source_id": "10", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 568 + }, + { + "title": "数字中国建设要强化数字技术创新体系和____“两大能力”", + "options": [ + "A.数字治理体系", + "B.数字安全屏障", + "C.数字产业体系", + "D.数字服务体系" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 569 + }, + { + "title": "要引导通用数据中心、超算中心、智能计算中心、____等合理梯次布局", + "options": [ + "A.边缘数据中心", + "B.分布式数据中心", + "C.绿色数据中心", + "D.算力中心" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 108, + "source_file": "数字中国建设整体布局规划", + "id": 570 + }, + { + "title": "福建省大数据交易所采用____建设模式", + "options": [ + "A.一所一站", + "B.一所多站", + "C.多所多站", + "D.区域联盟" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 571 + }, + { + "title": "福建省打造____数据可信智能链网平台", + "options": [ + "A.数通八闽", + "B.福数通", + "C.闽数通", + "D.数字福建" + ], + "type": "单选", + "answer": "A", + "source_id": "14", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 572 + }, + { + "title": "福建省推广____公众养老服务品牌", + "options": [ + "A.福见康养", + "B.闽康养", + "C.智慧养老", + "D.数字养老" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 109, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 573 + }, + { + "title": "到 2026 年,厦门市数字经济增加值占 GDP 比重目标为超过____", + "options": [ + "A.57%", + "B.60%", + "C.65%", + "D.70%" + ], + "type": "单选", + "answer": "C", + "source_id": "16", + "page_number": 109, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 574 + }, + { + "title": "到 2026 年,厦门市培育公共数据赋能产业发展典型应用场景目标为____个以上", + "options": [ + "A.20", + "B.30", + "C.50", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 109, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 575 + }, + { + "title": "我国将实施____发展行动计划", + "options": [ + "A.可信数据空间", + "B.数据要素流通", + "C.人工智能大模型", + "D.工业互联网" + ], + "type": "单选", + "answer": "A", + "source_id": "18", + "page_number": 109, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 576 + }, + { + "title": "“数据要素×”行动的核心是通过数据多场景应用实现对经济发展的____效应", + "options": [ + "A.叠加", + "B.倍增", + "C.乘数", + "D.指数" + ], + "type": "单选", + "answer": "B", + "source_id": "19", + "page_number": 110, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 577 + }, + { + "title": "厦门市将建立____科技攻关新机制", + "options": [ + "A.揭榜挂帅", + "B.企业界出题、科技界答题", + "C.赛马制", + "D.定向委托" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 110, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 578 + }, + { + "title": "到 2026 年,厦门市“数据最多采一次”覆盖目标超过____政务服务办件量", + "options": [ + "A.90%", + "B.95%", + "C.98%", + "D.100%" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 110, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 579 + }, + { + "title": "我国将推动____与算力协同布局", + "options": [ + "A.绿色电力", + "B.新能源", + "C.可再生能源", + "D.清洁能源" + ], + "type": "单选", + "answer": "A", + "source_id": "22", + "page_number": 110, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 580 + }, + { + "title": "我国将建立健全模型____评估体系", + "options": [ + "A.性能", + "B.能力", + "C.安全", + "D.质量" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 110, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 581 + }, + { + "title": "福建省将实施____和“宽带边疆”行动", + "options": [ + "A.信号升格", + "B.双千兆", + "C.万兆光网", + "D.5G-A" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 110, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 582 + }, + { + "title": "厦门市将统筹____一体化物联感知体系建设", + "options": [ + "A.城市大脑", + "B.数字政府", + "C.智慧城市", + "D.数字孪生" + ], + "type": "单选", + "answer": "A", + "source_id": "25", + "page_number": 111, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 583 + }, + { + "title": "到 2022 年,福建省数字经济增加值目标达到____万亿元以上", + "options": [ + "A.2.0", + "B.2.3", + "C.2.6", + "D.3.0" + ], + "type": "单选", + "answer": "C", + "source_id": "26", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 584 + }, + { + "title": "到 2022 年,福建省目标建成____个以上数字经济领域高水平创新平台", + "options": [ + "A.50", + "B.80", + "C.100", + "D.150" + ], + "type": "单选", + "answer": "C", + "source_id": "27", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 585 + }, + { + "title": "到 2022 年,福建省农产品网络销售额目标突破____亿元", + "options": [ + "A.800", + "B.1000", + "C.1200", + "D.1500" + ], + "type": "单选", + "answer": "B", + "source_id": "28", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 586 + }, + { + "title": "福建省建设____区块链主干网", + "options": [ + "A.数字福建", + "B.闽数链", + "C.福链", + "D.八闽链" + ], + "type": "单选", + "answer": "A", + "source_id": "29", + "page_number": 111, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 587 + }, + { + "title": "国家构建____四合一的数创企业专业化遴选培育机制", + "options": [ + "A.政府 + 企业 + 创新 + 投资", + "B.政府 + 高校 + 企业 + 科研", + "C.政府 + 平台 + 产业 + 资本", + "D.政府 + 人才 + 技术 + 市场" + ], + "type": "单选", + "answer": "A", + "source_id": "30", + "page_number": 111, + "source_file": "关于加强数字经济创新型企业培育的若干措施", + "id": 588 + }, + { + "title": "国家鼓励有条件地区探索发放____,降低企业治数用数成本", + "options": [ + "A.算力券、数据券", + "B.数据券、算法券", + "C.算法券、算力券", + "D.创新券、数据券" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 112, + "source_file": "关于加强数字经济创新型企业培育的若干措施", + "id": 589 + }, + { + "title": "到 2026 年,厦门市公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.3000", + "B.5000", + "C.8000", + "D.10000" + ], + "type": "单选", + "answer": "B", + "source_id": "32", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 590 + }, + { + "title": "到 2026 年,厦门市数据交易平台上线数据产品累计目标超过____个", + "options": [ + "A.800", + "B.1000", + "C.1300", + "D.2500" + ], + "type": "单选", + "answer": "C", + "source_id": "33", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 591 + }, + { + "title": "到 2026 年,厦门市关键环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "C", + "source_id": "34", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 592 + }, + { + "title": "到 2026 年,厦门市累计推出____项“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "C", + "source_id": "35", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 593 + }, + { + "title": "到 2026 年,厦门市农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "36", + "page_number": 112, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 594 + }, + { + "title": "“人工智能 +”行动不包括以下哪个领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.乡村振兴" + ], + "type": "单选", + "answer": "D", + "source_id": "37", + "page_number": 113, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 595 + }, + { + "title": "到 2030 年,厦门市人工智能核心产业规模目标达到____亿元", + "options": [ + "A.500", + "B.650", + "C.850", + "D.1000" + ], + "type": "单选", + "answer": "C", + "source_id": "38", + "page_number": 113, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 596 + }, + { + "title": "到 2030 年,厦门市智能体应用普及率目标超过____", + "options": [ + "A.70%", + "B.80%", + "C.90%", + "D.95%" + ], + "type": "单选", + "answer": "C", + "source_id": "39", + "page_number": 113, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 597 + }, + { + "title": "数字中国建设的战略路径不包括____", + "options": [ + "A.夯实基础", + "B.赋能全局", + "C.强化能力", + "D.深化改革" + ], + "type": "单选", + "answer": "D", + "source_id": "40", + "page_number": 113, + "source_file": "数字中国建设整体布局规划", + "id": 598 + }, + { + "title": "到 2026 年,福建省数字经济增加值占 GDP 比重目标为____左右", + "options": [ + "A.50%", + "B.57%", + "C.60%", + "D.65%" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 113, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 599 + }, + { + "title": "到 2026 年,福建省公共算力 规 模 目 标 达 到____PFLOPS", + "options": [ + "A.5000", + "B.8000", + "C.10000", + "D.15000" + ], + "type": "单选", + "answer": "C", + "source_id": "42", + "page_number": 113, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 600 + }, + { + "title": "到 2026 年,福建省数据中心平均 PUE 值目标低于____", + "options": [ + "A.1.3", + "B.1.35", + "C.1.4", + "D.1.45" + ], + "type": "单选", + "answer": "B", + "source_id": "43", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 601 + }, + { + "title": "到 2026 年,福建省关键业务环节全面数字化企业占比目标超过____", + "options": [ + "A.65%", + "B.71%", + "C.75%", + "D.80%" + ], + "type": "单选", + "answer": "B", + "source_id": "44", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 602 + }, + { + "title": "到 2026 年,厦门市限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.28.5%", + "B.30%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "C", + "source_id": "45", + "page_number": 114, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 603 + }, + { + "title": "要构建以____为核心的智慧水利体系", + "options": [ + "A.数字孪生流域", + "B.智慧水务", + "C.数字水网", + "D.智慧防汛" + ], + "type": "单选", + "answer": "A", + "source_id": "46", + "page_number": 114, + "source_file": "数字中国建设整体布局规划", + "id": 604 + }, + { + "title": "到 2026 年,福建省农业生产信息化率目标达到____", + "options": [ + "A.30%", + "B.34%", + "C.35%", + "D.40%" + ], + "type": "单选", + "answer": "B", + "source_id": "47", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 605 + }, + { + "title": "到 2026 年,福建省限额以上网络零售额占全部限额以上零售额比重目标超过____", + "options": [ + "A.25%", + "B.28.5%", + "C.30%", + "D.35%" + ], + "type": "单选", + "answer": "B", + "source_id": "48", + "page_number": 114, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 606 + }, + { + "title": "到 2026 年,福建省累计推出____项左右“高效办成一件事”服务", + "options": [ + "A.50", + "B.60", + "C.62", + "D.70" + ], + "type": "单选", + "answer": "B", + "source_id": "49", + "page_number": 115, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 607 + }, + { + "title": "到 2022 年,福建省目标培育形成____家以上数字经济领域高新技术企业等创新企业", + "options": [ + "A.2000", + "B.3000", + "C.4000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "50", + "page_number": 115, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 608 + }, + { + "title": "“十五五”期间厦门市新增算力目标为____PFLOPS 以上", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "B", + "source_id": "51", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 609 + }, + { + "title": "厦门市将建设国际物流供应链国家人工智能应用____基地", + "options": [ + "A.研发", + "B.中试", + "C.示范", + "D.产业化" + ], + "type": "单选", + "answer": "B", + "source_id": "52", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 610 + }, + { + "title": "到 2030 年,厦门市目标培育____个优秀行业模型和智能体", + "options": [ + "A.30", + "B.50", + "C.80", + "D.100" + ], + "type": "单选", + "answer": "B", + "source_id": "53", + "page_number": 115, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 611 + }, + { + "title": "到 2026 年,福建省大数据交易所拓展数商目标超过____家", + "options": [ + "A.500", + "B.800", + "C.1000", + "D.1500" + ], + "type": "单选", + "answer": "C", + "source_id": "54", + "page_number": 115, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 612 + }, + { + "title": "福建省打造____省域治理智能化中枢平台", + "options": [ + "A.闽数治", + "B.福数治", + "C.数字福建", + "D.智慧福建" + ], + "type": "单选", + "answer": "A", + "source_id": "55", + "page_number": 116, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 613 + }, + { + "title": "厦门市将升级构建企业____事务协调服务平台", + "options": [ + "A.窗内", + "B.窗外", + "C.线上", + "D.线下" + ], + "type": "单选", + "answer": "B", + "source_id": "56", + "page_number": 116, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 614 + }, + { + "title": "厦门市将落实国家城市____创新发展试点任务", + "options": [ + "A.可信数据空间", + "B.数据要素市场", + "C.数据流通交易", + "D.数据产权登记" + ], + "type": "单选", + "answer": "A", + "source_id": "57", + "page_number": 116, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 615 + }, + { + "title": "我国将推动通用大模型和____同步发展", + "options": [ + "A.专用大模型", + "B.行业专用模型", + "C.多模态大模型", + "D.具身智能模型" + ], + "type": "单选", + "answer": "B", + "source_id": "58", + "page_number": 116, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 616 + }, + { + "title": "厦门市将培育____个以上高质量数据集", + "options": [ + "A.20", + "B.25", + "C.30", + "D.50" + ], + "type": "单选", + "answer": "B", + "source_id": "59", + "page_number": 116, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 617 + }, + { + "title": "福建省省级政府引导基金让利最高不超过政府出资部分收益的____", + "options": [ + "A.30%", + "B.40%", + "C.50%", + "D.60%" + ], + "type": "单选", + "answer": "C", + "source_id": "60", + "page_number": 116, + "source_file": "福建省加强数字经济创新型企业培育十条措施", + "id": 618 + }, + { + "title": "数字中国建设“2522”整体框架包括____", + "options": [ + "A.夯实两大基础", + "B.推进五位一体融合", + "C.强化两大能力", + "D.优化两个环境" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "61", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 619 + }, + { + "title": "数字中国建设的“两大基础”是____", + "options": [ + "A.数字基础设施", + "B.数据资源体系", + "C.技术创新体系", + "D.安全保障体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "62", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 620 + }, + { + "title": "数字中国建设要推进数字技术与____建设深度融合", + "options": [ + "A.经济", + "B.政治", + "C.文化", + "D.社会", + "E.生态文明" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "63", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 621 + }, + { + "title": "数字中国建设要强化以下哪些“两大能力”____", + "options": [ + "A.数字技术创新体系", + "B.数字安全屏障", + "C.数字治理体系", + "D.数字产业体系" + ], + "type": "多选", + "answer": "AB", + "source_id": "64", + "page_number": 117, + "source_file": "数字中国建设整体布局规划", + "id": 622 + }, + { + "title": "“人工智能 +”行动包括以下哪些领域____", + "options": [ + "A.科学技术", + "B.产业发展", + "C.消费提质", + "D.民生福祉", + "E.治理能力" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "65", + "page_number": 117, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 623 + }, + { + "title": "厦门市数字化全面赋能的重点领域包括____", + "options": [ + "A.党的建设", + "B.经济发展", + "C.政府治理", + "D.文化发展", + "E.社会发展", + "F.生态文明建设" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "66", + "page_number": 118, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 624 + }, + { + "title": "我国算力设施发展的方向包括____", + "options": [ + "A.规模化", + "B.集约化", + "C.绿色化", + "D.普惠化" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "67", + "page_number": 118, + "source_file": "中华人民共和国国民经济和社会发展第十五个五年规划纲要(第四篇)", + "id": 625 + }, + { + "title": "优化数字化发展环境包括____", + "options": [ + "A.建设公平规范的数字治理生态", + "B.构建开放共赢的数字领域国际合作格局", + "C.完善数字基础设施", + "D.强化数据要素流通" + ], + "type": "多选", + "answer": "AB", + "source_id": "68", + "page_number": 118, + "source_file": "数字中国建设整体布局规划", + "id": 626 + }, + { + "title": "国家数字经济创新发展试验区(福建)重点打造的产业集聚区包括____", + "options": [ + "A.数字中国样板区", + "B.数字经济发展新高地", + "C.智慧海洋和卫星应用产业集聚区", + "D.\"数字丝路\" 核心区" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "69", + "page_number": 118, + "source_file": "国家数字经济创新发展试验区(福建)工作方案", + "id": 627 + }, + { + "title": "厦门市将围绕以下哪些重点行业打造数据流通专区____", + "options": [ + "A.信用科技", + "B.双碳产业", + "C.供应链金融", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABC", + "source_id": "70", + "page_number": 118, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 628 + }, + { + "title": "“数据全生命周期”包括以下哪些过程____", + "options": [ + "A.数据采集", + "B.数据传输", + "C.数据存储", + "D.数据处理", + "E.数据交换", + "F.数据销毁" + ], + "type": "多选", + "answer": "ABCDEF", + "source_id": "71", + "page_number": 119, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 629 + }, + { + "title": "福建省将围绕以下哪些重点行业培育数据流通服务平台____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.金融服务", + "D.文化旅游" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "72", + "page_number": 119, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 630 + }, + { + "title": "厦门市将前瞻部署以下哪些前沿领域科技攻关____", + "options": [ + "A.6G", + "B.具身智能", + "C.量子计算", + "D.元宇宙" + ], + "type": "多选", + "answer": "ABC", + "source_id": "73", + "page_number": 119, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 631 + }, + { + "title": "厦门市将深入开展“数据要素×”行动,每年在以下哪些重点领域推出典型应用场景____", + "options": [ + "A.工业制造", + "B.商贸流通", + "C.交通物流", + "D.金融服务" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "74", + "page_number": 119, + "source_file": "厦门市加快推进数字化全面赋能经济社会高质量发展实施方案", + "id": 632 + }, + { + "title": "福建省数字赋能经济发展的重点包括____", + "options": [ + "A.数字新产业", + "B.农业数字化", + "C.工业数字化转型", + "D.服务业数字化提升" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "75", + "page_number": 119, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 633 + }, + { + "title": "厦门市将建设以下哪些可信数据空间____", + "options": [ + "A.企业可信数据空间", + "B.行业可信数据空间", + "C.个人可信数据空间", + "D.跨境可信数据空间" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "76", + "page_number": 120, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 634 + }, + { + "title": "福建省将建设以下哪些异地灾备节点构成“多地多中心”灾备体系____", + "options": [ + "A.福州", + "B.安溪", + "C.宁夏", + "D.厦门" + ], + "type": "多选", + "answer": "ABC", + "source_id": "77", + "page_number": 120, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 635 + }, + { + "title": "厦门市人工智能发展行动包括____", + "options": [ + "A.行业大模型能力提升行动", + "B.具身智能发展突破行动", + "C.智赋百景行动", + "D.数据要素×行动" + ], + "type": "多选", + "answer": "AB", + "source_id": "78", + "page_number": 120, + "source_file": "厦门市国民经济和社会发展第十五个五年规划纲要(第八章)", + "id": 636 + }, + { + "title": "福建省将重点依托以下哪些产业园建设省级高性能数据中心集群____", + "options": [ + "A.数字福建(长乐)产业园", + "B.数字福建(安溪)产业园", + "C.厦门科学城", + "D.泉州半导体高新区" + ], + "type": "多选", + "answer": "AB", + "source_id": "79", + "page_number": 120, + "source_file": "福建省加快推进数字化全面赋能经济社会高质量发展总体方案", + "id": 637 + }, + { + "title": "厦门市市级政务信息化项目建设应坚持的推进思路是____", + "options": [ + "A.小平台、小数据、小系统", + "B.大平台、大数据、大系统", + "C.统一平台、统一数据、统一系统", + "D.分散建设、集中管理、共享使用" + ], + "type": "单选", + "answer": "B", + "source_id": "1", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 638 + }, + { + "title": "厦门市市级政务信息化专项资金的归口管理部门是____", + "options": [ + "A.市财政局", + "B.市发改委", + "C.市工信局(大数据局)", + "D.市信息中心" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 639 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用工作的共同牵头单位是市数据管理局和____", + "options": [ + "A.市工信局", + "B.市财政局", + "C.市发改委", + "D.市信息中心" + ], + "type": "单选", + "answer": "B", + "source_id": "3", + "page_number": 121, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 640 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的来源是____", + "options": [ + "A.部门预算资金", + "B.市级政务信息化专项资金", + "C.财政专项拨款", + "D.社会资本" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 641 + }, + { + "title": "以下哪项内容属于厦门市市级政务信息化项目申报范畴____", + "options": [ + "A.桌面办公设备采购", + "B.智能建筑建设", + "C.政务数据系统建设", + "D.科研类硬件设备采购" + ], + "type": "单选", + "answer": "C", + "source_id": "5", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 642 + }, + { + "title": "厦门市市级政务信息化项目立项审批的必备条件是____", + "options": [ + "A.资金落实", + "B.数据登记", + "C.方案编制", + "D.专家评审" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 121, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 643 + }, + { + "title": "厦门市惠企政策“免申即享”的核心目标是实现惠企政策“应上尽上”、符合条件的企业“____”、兑现过程“一键直达”", + "options": [ + "A.应上尽上", + "B.应享尽享", + "C.一键直达", + "D.免申即享" + ], + "type": "单选", + "answer": "B", + "source_id": "7", + "page_number": 122, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 644 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费统一由____向市数据管理局提出申请", + "options": [ + "A.项目业主单位", + "B.项目责任单位", + "C.市信息中心", + "D.市财政局" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 645 + }, + { + "title": "厦门市市级政务信息化项目正式上线前,试运行时间应不少于____", + "options": [ + "A.1个月", + "B.2个月", + "C.3个月", + "D.6个月" + ], + "type": "单选", + "answer": "A", + "source_id": "9", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 646 + }, + { + "title": "厦门市市级政务信息化项目软硬件免费维护期自竣工验收合格之日起不少于____", + "options": [ + "A.1年", + "B.2年", + "C.3年", + "D.5年" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 647 + }, + { + "title": "厦门市惠企政策“免申即享”平台应入驻“i 厦门”移动端和____自助终端", + "options": [ + "A.e 政务", + "B.闽政通", + "C.厦企通", + "D.慧企云" + ], + "type": "单选", + "answer": "A", + "source_id": "11", + "page_number": 122, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 648 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费预算实行____使用机制", + "options": [ + "A.一次性", + "B.滚动", + "C.包干", + "D.专项" + ], + "type": "单选", + "answer": "B", + "source_id": "12", + "page_number": 122, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 649 + }, + { + "title": "厦门市惠企政策“免申即享”兑现时间定义为截止申报日期次日至____", + "options": [ + "A.政策审核通过之日", + "B.政策完成资金拨付之日", + "C.企业收到资金之日", + "D.政策归档之日" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 650 + }, + { + "title": "厦门市市级政务信息化项目中,投资____万元以上的项目应按照规定委托工程监理单位进行全过程监理", + "options": [ + "A.100", + "B.200", + "C.500", + "D.1000" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 123, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 651 + }, + { + "title": "厦门市惠企政策发生调整、变更时,政策归口单位应在政策印发后____个工作日内报送,否则总分内扣 1分", + "options": [ + "A.3", + "B.5", + "C.7", + "D.10" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 652 + }, + { + "title": "厦门市力争到2025年,纳入“免申即享”的政策中100%的政策兑现时间压缩至____个月", + "options": [ + "A.1", + "B.2", + "C.3", + "D.4" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 123, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 653 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费首次下达用款计划一般不超过____", + "options": [ + "A.30%", + "B.40%", + "C.50%", + "D.60%" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 123, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 654 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用中,政策归口单位出台政策数量为51 项及以上的,上线“免申即享”“即申即享”比例不得少于____", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "D", + "source_id": "18", + "page_number": 123, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 655 + }, + { + "title": "厦门市投资预算____万元以上的市级政务信息化项目,需报市政府常务会研究同意后予以立项", + "options": [ + "A.1000", + "B.2000", + "C.3000", + "D.5000" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 656 + }, + { + "title": "厦门市市级政务信息化项目变更涉及资金调整数额不超过批复预算的____且不超过200 万元的,可由责任单位提交调整方案报主管部门审核", + "options": [ + "A.10%", + "B.15%", + "C.20%", + "D.25%" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 657 + }, + { + "title": "厦门市市级政务信息化项目前期工作完成时限超过____年的,原则上不再拨付剩余款项", + "options": [ + "A.1", + "B.2", + "C.3", + "D.5" + ], + "type": "单选", + "answer": "B", + "source_id": "21", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 658 + }, + { + "title": "厦门市市级政务信息化项目实行____在线管理", + "options": [ + "A.全流程", + "B.全过程", + "C.全周期", + "D.全要素" + ], + "type": "单选", + "answer": "B", + "source_id": "22", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 659 + }, + { + "title": "厦门市优先支持____的政务信息化项目立项", + "options": [ + "A.部门独立建设", + "B.跨部门跨领域共建共享", + "C.技术先进", + "D.投资规模大" + ], + "type": "单选", + "answer": "B", + "source_id": "23", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 660 + }, + { + "title": "厦门市各政务部门应按照“____”的模式策划生成政务信息化项目", + "options": [ + "A.一部门一系统", + "B.一业务一系统", + "C.一领域一系统", + "D.一区域一系统" + ], + "type": "单选", + "answer": "A", + "source_id": "24", + "page_number": 124, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 661 + }, + { + "title": "因处置突发事件的政务信息化项目,经报市政府同意后,可____", + "options": [ + "A.简化审批流程", + "B.先建设再补齐审批手续", + "C.直接采购", + "D.免于验收" + ], + "type": "单选", + "answer": "B", + "source_id": "25", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 662 + }, + { + "title": "厦门市政务信息化项目承建单位必须自行组织建设,不得____", + "options": [ + "A.分包", + "B.转包", + "C.委托第三方", + "D.联合建设" + ], + "type": "单选", + "answer": "B", + "source_id": "26", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 663 + }, + { + "title": "厦门市政务信息系统正式上线前,应提交____报告", + "options": [ + "A.试运行", + "B.验收", + "C.安全评估", + "D.绩效评价" + ], + "type": "单选", + "answer": "A", + "source_id": "27", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 664 + }, + { + "title": "厦门市未按要求组织验收的政务信息化项目,项目主管部门原则上不予受理____", + "options": [ + "A.资金拨付申请", + "B.后续项目申报", + "C.运维经费申请", + "D.成果认定申请" + ], + "type": "单选", + "answer": "B", + "source_id": "28", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 665 + }, + { + "title": "厦门市对于未按要求共享数据的政务信息化项目,不支付项目余款和不安排____", + "options": [ + "A.后续项目", + "B.运维经费", + "C.前期经费", + "D.财政补贴" + ], + "type": "单选", + "answer": "B", + "source_id": "29", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 666 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费原则上____安排", + "options": [ + "A.差额", + "B.全额", + "C.按比例", + "D.按需求" + ], + "type": "单选", + "answer": "B", + "source_id": "30", + "page_number": 125, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 667 + }, + { + "title": "厦门市经初审通过的前期工作经费项目,由市数据管理局报____研究批准", + "options": [ + "A.市政府主要领导", + "B.市政府分管领导", + "C.市财政局", + "D.市发改委" + ], + "type": "单选", + "answer": "B", + "source_id": "31", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 668 + }, + { + "title": "厦门市前期工作成果经____通过后,即认定为成果达到要求", + "options": [ + "A.专家评审", + "B.主管部门审核", + "C.评审或审批", + "D.业主单位验收" + ], + "type": "单选", + "answer": "C", + "source_id": "32", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 669 + }, + { + "title": "厦门市市数据管理局每年对前期工作经费使用情况进行____", + "options": [ + "A.审计", + "B.绩效评价", + "C.监督检查", + "D.考核评估" + ], + "type": "单选", + "answer": "B", + "source_id": "33", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 670 + }, + { + "title": "厦门市市级政务信息化项目建设管理办法于____年 9月实施", + "options": [ + "A.2021", + "B.2022", + "C.2023", + "D.2024" + ], + "type": "单选", + "answer": "B", + "source_id": "34", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 671 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费管理办法于____年 8月施行", + "options": [ + "A.2023", + "B.2024", + "C.2025", + "D.2026" + ], + "type": "单选", + "answer": "C", + "source_id": "35", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 672 + }, + { + "title": "厦门市投资预算200 万元以下的政务信息化项目,由____审核并报财政部门备案后予以立项", + "options": [ + "A.项目主管部门", + "B.市政府分管领导", + "C.市财政局", + "D.市信息中心" + ], + "type": "单选", + "answer": "A", + "source_id": "36", + "page_number": 126, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 673 + }, + { + "title": "厦门市投资预算 200 万元到 1000万元的政务信息化项目,由____审核并商财政部门确认后予以立项", + "options": [ + "A.项目主管部门", + "B.市政府专题会议", + "C.市政府常务会", + "D.市发改委" + ], + "type": "单选", + "answer": "A", + "source_id": "37", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 674 + }, + { + "title": "厦门市投资预算 1000 万元到 3000万元的政务信息化项目,报____专题会议研究审定后予以立项", + "options": [ + "A.市政府(数字厦门建设领导小组办公室)", + "B.市发改委", + "C.市工信局", + "D.市财政局" + ], + "type": "单选", + "answer": "A", + "source_id": "38", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 675 + }, + { + "title": "厦门市政务信息化项目批复后逾期____年未实施的,取消立项", + "options": [ + "A.1", + "B.2", + "C.3", + "D.5" + ], + "type": "单选", + "answer": "A", + "source_id": "39", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 676 + }, + { + "title": "厦门市政务信息化项目通过验收并投入运行后____至12个月内,组织对项目进行自评价", + "options": [ + "A.3个月", + "B.6个月", + "C.9个月", + "D.1个月" + ], + "type": "单选", + "answer": "B", + "source_id": "40", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 677 + }, + { + "title": "厦门市对于存在重大安全隐患的政务信息化系统,须____", + "options": [ + "A.限期整改", + "B.暂停运行", + "C.立即拆除", + "D.降级使用" + ], + "type": "单选", + "answer": "B", + "source_id": "41", + "page_number": 127, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 678 + }, + { + "title": "以下关于厦门市政务信息化项目变更的说法,正确的是____", + "options": [ + "A.任何变更都需重新履行立项审批手续", + "B.资金调整不超过15%且不超过200 万元的,可由责任单位审核", + "C.资金调整不超过20%且不超过300 万元的,可由责任单位审核", + "D.变更无需报主管部门备案" + ], + "type": "单选", + "answer": "B", + "source_id": "42", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 679 + }, + { + "title": "以下关于厦门市前期工作经费拨付的说法,正确的是____", + "options": [ + "A.一次性全额拨付", + "B.分两次拨付,首次不超过50%", + "C.分三次拨付,首次不超过30%", + "D.按季度拨付" + ], + "type": "单选", + "answer": "B", + "source_id": "43", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 680 + }, + { + "title": "以下关于厦门市政务信息化项目验收的说法,正确的是____", + "options": [ + "A.所有项目验收都需项目主管部门参与", + "B.投资1000 万元以上的项目验收需主管部门参与", + "C.验收只需提交竣工验收申请书", + "D.试运行结束后即可直接验收" + ], + "type": "单选", + "answer": "B", + "source_id": "44", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 681 + }, + { + "title": "厦门市市级政务信息化项目建设应坚持的原则包括____", + "options": [ + "A.改革创新", + "B.统筹集约", + "C.整合协同", + "D.共享开放", + "E.安全可控" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "45", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 682 + }, + { + "title": "以下哪些内容不列入厦门市市级政务信息化项目申报范畴____", + "options": [ + "A.桌面办公设备采购", + "B.智能建筑建设及维护服务", + "C.业务工作所需专业设备采购", + "D.科研类系统及硬件设备采购", + "E.政务数据共享平台建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "46", + "page_number": 128, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 683 + }, + { + "title": "厦门市市级政务信息化项目前期工作包括____", + "options": [ + "A.项目策划研究", + "B.可行性研究", + "C.项目建设方案编制", + "D.项目使用服务方案编制", + "E.项目施工建设" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "47", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 684 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用的工作目标包括____", + "options": [ + "A.实现惠企政策“应上尽上”", + "B.符合条件的企业“应享尽享”", + "C.兑现过程“一键直达”", + "D.2025年底100%政策兑现时间压缩至2个月", + "E.所有政策实现“零材料”免申模式" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "48", + "page_number": 129, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 685 + }, + { + "title": "厦门市市级政务信息化项目分级审批标准包括____", + "options": [ + "A.200 万元以下:主管部门审核报财政备案", + "B.200-1000 万元:主管部门审核商财政确认", + "C.1000-3000 万元:市政府专题会议审定", + "D.3000 万元以上:市政府常务会研究同意", + "E.5000 万元以上:报省发改委审批" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "49", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 686 + }, + { + "title": "厦门市市级政务信息化项目验收时需提交的材料包括____", + "options": [ + "A.竣工验收申请书", + "B.项目建设总结", + "C.用户使用报告", + "D.项目测评报告", + "E.数据目录登记表" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "50", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 687 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的使用范围包括____", + "options": [ + "A.专业性较强、技术较复杂的项目前期工作", + "B.经市委或市政府研究确定的重大项目相关前期费用", + "C.项目施工建设费用", + "D.项目运维费用", + "E.项目验收费用" + ], + "type": "多选", + "answer": "AB", + "source_id": "51", + "page_number": 129, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 688 + }, + { + "title": "厦门市惠企政策“免申即享”数据共享部门应已实现对接共享的“市场监管、税务、信用、人社”等数据基础上,推动纳入对接范围的数据包括____", + "options": [ + "A.企业资质", + "B.专利", + "C.用电", + "D.用水", + "E.社保" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "52", + "page_number": 130, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 689 + }, + { + "title": "厦门市惠企政策“免申即享”分数评定细则中,针对政策归口单位的评价指标包括____", + "options": [ + "A.政策上线情况", + "B.有效完成兑现情况", + "C.与市免申平台对接情况", + "D.旧政策改造情况", + "E.宣传推广情况" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "53", + "page_number": 130, + "source_file": "厦门市惠企政策“免申即享”推广应用分数评定细则(修订版)", + "id": 690 + }, + { + "title": "厦门市市级政务信息化项目建设管理办法中,关于信息安全保障的要求包括____", + "options": [ + "A.定期开展网络安全检测与风险评估", + "B.同步规划、同步建设、同步运行密码保障系统", + "C.采用自主可控的软硬件产品", + "D.定期开展密码应用安全性评估", + "E.建立数据备份制度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "54", + "page_number": 130, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 691 + }, + { + "title": "厦门市惠企政策“免申即享”推广应用工作方案的主要内容包括____", + "options": [ + "A.梳理惠企政策清单", + "B.优化平台服务功能", + "C.扩大数据共享范围", + "D.精简审批流程", + "E.健全考评体系" + ], + "type": "多选", + "answer": "ABCDE", + "source_id": "55", + "page_number": 130, + "source_file": "厦门市进一步加快惠企政策“免申即享”推广应用工作方案", + "id": 692 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的拨付方式包括____", + "options": [ + "A.一次性全额拨付", + "B.分两次拨付,首次不超过50%", + "C.成果认定后拨付剩余款项", + "D.按季度拨付", + "E.超过2年未完成不再拨付剩余款项" + ], + "type": "多选", + "answer": "BCE", + "source_id": "56", + "page_number": 130, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 693 + }, + { + "title": "厦门市市级政务信息化项目变更的情形包括____", + "options": [ + "A.根据上级工作部署,确需改变建设内容的", + "B.确需对原项目技术方案进行完善优化的", + "C.根据业务发展需要调整相关建设内容及进度的", + "D.因企业要求变更的", + "E.因资金不足变更的" + ], + "type": "多选", + "answer": "ABC", + "source_id": "57", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 694 + }, + { + "title": "厦门市市级政务信息化项目运行管理的要求包括____", + "options": [ + "A.制定系统运维管理制度", + "B.建立安全巡检制度", + "C.建立数据备份制度", + "D.建立应急响应制度", + "E.定期开展绩效评价" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "58", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目建设管理办法(试行)", + "id": 695 + }, + { + "title": "厦门市市级政务信息化项目前期工作经费的监督管理要求包括____", + "options": [ + "A.确保专款专用", + "B.加强进度和质量管理", + "C.接受主管部门监督检查", + "D.接受审计部门监督", + "E.定期向社会公开使用情况" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "59", + "page_number": 131, + "source_file": "厦门市市级政务信息化项目前期工作经费管理办法(试行)", + "id": 696 + }, + { + "title": "《厦门经济特区数据条例》的正式施行日期是____", + "options": [ + "A.2022年12月27日", + "B.2023年1月1日", + "C.2023年3月1日", + "D.2023年6月1日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 697 + }, + { + "title": "《厦门经济特区数据条例》是由厦门市____通过的", + "options": [ + "A.人民政府", + "B.人民代表大会", + "C.人民代表大会常务委员会", + "D.大数据主管部门" + ], + "type": "单选", + "answer": "C", + "source_id": "2", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 698 + }, + { + "title": "厦门市统筹规划、综合协调全市数据管理和发展工作的主管部门是____", + "options": [ + "A.市网信部门", + "B.市发展改革部门", + "C.市大数据主管部门", + "D.市市场监督管理部门" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 699 + }, + { + "title": "本条例规定,公共数据包括政务数据和____", + "options": [ + "A.企业数据", + "B.公共服务数据", + "C.个人数据", + "D.行业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "4", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 700 + }, + { + "title": "厦门市统一的公共数据汇聚、共享、开放基础设施是____", + "options": [ + "A.公共数据资源平台", + "B.大数据交易中心", + "C.政务云平台", + "D.电子证照库" + ], + "type": "单选", + "answer": "A", + "source_id": "5", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 701 + }, + { + "title": "公共数据共享分为无条件共享、有条件共享和____三种类型", + "options": [ + "A.禁止共享", + "B.暂不共享", + "C.依申请共享", + "D.普遍共享" + ], + "type": "单选", + "answer": "B", + "source_id": "6", + "page_number": 132, + "source_file": "厦门经济特区数据条例", + "id": 702 + }, + { + "title": "公共数据开放分为普遍开放和____两种类型", + "options": [ + "A.无条件开放", + "B.有条件开放", + "C.依申请开放", + "D.暂不开放" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 703 + }, + { + "title": "厦门市探索建立数据资源持有权、数据加工使用权和____分置的产权运行机制", + "options": [ + "A.数据收益权", + "B.数据所有权", + "C.数据产品经营权", + "D.数据处置权" + ], + "type": "单选", + "answer": "C", + "source_id": "8", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 704 + }, + { + "title": "数据处理活动的安全责任主体是____", + "options": [ + "A.市大数据主管部门", + "B.数据处理者", + "C.市网信部门", + "D.市公安部门" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 705 + }, + { + "title": "在公共场所安装图像采集、个人身份识别设备,应当为____所必需", + "options": [ + "A.商业运营", + "B.公共安全", + "C.交通管理", + "D.疫情防控" + ], + "type": "单选", + "answer": "B", + "source_id": "10", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 706 + }, + { + "title": "厦门市在____探索建立首席数据官制度", + "options": [ + "A.所有企业", + "B.政务部门和公共服务组织", + "C.事业单位", + "D.国有企业" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 707 + }, + { + "title": "市、区政务部门采购非公共数据,应当由____统筹并统一采购", + "options": [ + "A.本部门自行", + "B.同级财政部门", + "C.同级大数据主管部门", + "D.市公共资源交易中心" + ], + "type": "单选", + "answer": "C", + "source_id": "12", + "page_number": 133, + "source_file": "厦门经济特区数据条例", + "id": 708 + }, + { + "title": "为应对突发事件获取的数据,在应急处置工作结束后应当____", + "options": [ + "A.永久保留", + "B.立即全部删除", + "C.分类评估并采取安全处理措施", + "D.向社会公开" + ], + "type": "单选", + "answer": "C", + "source_id": "13", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 709 + }, + { + "title": "自然人、法人和非法人组织发现与其相关的公共数据不准确、不完整的,可以提出____", + "options": [ + "A.投诉", + "B.举报", + "C.异议申请", + "D.行政复议" + ], + "type": "单选", + "answer": "C", + "source_id": "14", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 710 + }, + { + "title": "厦门市人民政府应当推动____建设,培育数据商和数据交易服务机构", + "options": [ + "A.数据交易市场", + "B.大数据产业园", + "C.数字经济示范区", + "D.数据安全实验室" + ], + "type": "单选", + "answer": "A", + "source_id": "15", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 711 + }, + { + "title": "政务部门、公共服务组织通过共享获取的公共数据,不得用于____之外的目的", + "options": [ + "A.本单位内部使用", + "B.申请时确定的应用场景", + "C.公共服务", + "D.政府决策" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 712 + }, + { + "title": "厦门市建立公共数据____运营机制,确定相应主体管理社会化增值开发利用的公共数据", + "options": [ + "A.特许", + "B.授权", + "C.委托", + "D.承包" + ], + "type": "单选", + "answer": "B", + "source_id": "17", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 713 + }, + { + "title": "违反本条例规定的政务部门、公共服务组织,由____责令限期整改", + "options": [ + "A.市人民政府", + "B.市大数据主管部门", + "C.市网信部门", + "D.市监察机关" + ], + "type": "单选", + "answer": "B", + "source_id": "18", + "page_number": 134, + "source_file": "厦门经济特区数据条例", + "id": 714 + }, + { + "title": "厦门市探索建立数据要素____制度,推动将数据要素纳入国民经济核算体系", + "options": [ + "A.统计核算", + "B.资产评估", + "C.登记结算", + "D.交易撮合" + ], + "type": "单选", + "answer": "A", + "source_id": "19", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 715 + }, + { + "title": "对于符合改革方向、程序合法依规的工作失误,且未牟取私利、未损害公共利益的,可以____", + "options": [ + "A.从轻追究责任", + "B.不予或者免予追究行政责任", + "C.减轻追究责任", + "D.免予刑事处罚" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 716 + }, + { + "title": "本条例所称的数据处理包括下列哪些活动____", + "options": [ + "A.收集、存储", + "B.使用、加工", + "C.传输、提供", + "D.公开、删除" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 717 + }, + { + "title": "公共数据包括下列哪些类型____", + "options": [ + "A.政务数据", + "B.公共服务数据", + "C.企业经营数据", + "D.个人隐私数据" + ], + "type": "多选", + "answer": "AB", + "source_id": "22", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 718 + }, + { + "title": "厦门市数据管理和发展工作遵循的原则包括____", + "options": [ + "A.开发利用与安全保护并举", + "B.创新引领与依法监管并重", + "C.政府主导与市场参与结合", + "D.统一管理与分级负责" + ], + "type": "多选", + "answer": "AB", + "source_id": "23", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 719 + }, + { + "title": "公共数据共享分为下列哪些类型____", + "options": [ + "A.无条件共享", + "B.有条件共享", + "C.暂不共享", + "D.禁止共享" + ], + "type": "多选", + "answer": "ABC", + "source_id": "24", + "page_number": 135, + "source_file": "厦门经济特区数据条例", + "id": 720 + }, + { + "title": "厦门市培育数据要素市场,探索建立的市场运营体系包括____", + "options": [ + "A.数据确权", + "B.资产评估", + "C.登记结算", + "D.交易撮合" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 721 + }, + { + "title": "下列哪些数据不得进行交易____", + "options": [ + "A.危害国家安全、社会公共利益的", + "B.侵害他人合法权益、个人隐私的", + "C.未经合法权利人授权同意的", + "D.法律、法规禁止交易的其他情形" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "26", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 722 + }, + { + "title": "数据处理者应当建立健全的安全管理制度包括____", + "options": [ + "A.全流程数据安全管理制度", + "B.重要系统容灾备份制度", + "C.核心数据容灾备份制度", + "D.数据交易风险监测制度" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 723 + }, + { + "title": "政务部门、公共服务组织及其工作人员有下列哪些情形的,由市大数据主管部门责令限期整改____", + "options": [ + "A.擅自新建跨部门的共享、开放平台", + "B.未按照规定编制公共数据目录", + "C.未按照规定履行公共数据质量管理义务", + "D.未按照规定汇聚公共数据" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 724 + }, + { + "title": "厦门市统一建设的基础数据库包括____", + "options": [ + "A.人口、法人", + "B.自然资源和空间地理", + "C.信用、电子证照", + "D.医疗健康、教育" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 725 + }, + { + "title": "关于公共场所图像采集设备的规定,下列说法正确的有____", + "options": [ + "A.应当为维护公共安全所必需", + "B.应当设置显著提示标识", + "C.收集的信息只能用于维护公共安全目的", + "D.可以作为出入场所的唯一验证方式" + ], + "type": "多选", + "answer": "ABC", + "source_id": "30", + "page_number": 136, + "source_file": "厦门经济特区数据条例", + "id": 726 + }, + { + "title": "《中华人民共和国数据安全法》的正式施行日期是____", + "options": [ + "A.2021年6月10日", + "B.2021年7月1日", + "C.2021年9月1日", + "D.2022年1月1日" + ], + "type": "单选", + "answer": "C", + "source_id": "1", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 727 + }, + { + "title": "负责国家数据安全工作决策和议事协调的最高机构是____", + "options": [ + "A.国务院", + "B.中央国家安全领导机构", + "C.国家网信部门", + "D.工业和信息化部" + ], + "type": "单选", + "answer": "B", + "source_id": "2", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 728 + }, + { + "title": "统筹协调全国网络数据安全和相关监管工作的部门是____", + "options": [ + "A.公安部", + "B.国家安全部", + "C.国家网信部门", + "D.国家发展改革委" + ], + "type": "单选", + "answer": "C", + "source_id": "3", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 729 + }, + { + "title": "本法所称数据安全,是指通过采取必要措施,确保数据处于有效保护和合法利用的状态,以及具备保障____的能力", + "options": [ + "A.数据完整性", + "B.数据保密性", + "C.持续安全状态", + "D.数据可用性" + ], + "type": "单选", + "answer": "C", + "source_id": "4", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 730 + }, + { + "title": "国家建立数据分类分级保护制度,其中实行最严格管理制度的是____", + "options": [ + "A.重要数据", + "B.国家核心数据", + "C.个人信息", + "D.商业秘密" + ], + "type": "单选", + "answer": "B", + "source_id": "5", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 731 + }, + { + "title": "重要数据的处理者应当明确____,落实数据安全保护责任", + "options": [ + "A.数据安全负责人和管理机构", + "B.首席数据官", + "C.数据安全专员", + "D.数据治理委员会" + ], + "type": "单选", + "answer": "A", + "source_id": "6", + "page_number": 137, + "source_file": "中华人民共和国数据安全法", + "id": 732 + }, + { + "title": "国家建立数据安全审查制度,对____的数据处理活动进行国家安全审查", + "options": [ + "A.所有类型", + "B.涉及个人信息", + "C.影响或者可能影响国家安全", + "D.涉及商业秘密" + ], + "type": "单选", + "answer": "C", + "source_id": "7", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 733 + }, + { + "title": "从事数据交易中介服务的机构提供服务时,应当要求数据提供方____", + "options": [ + "A.提供数据备份", + "B.说明数据来源", + "C.承诺数据安全", + "D.缴纳交易保证金" + ], + "type": "单选", + "answer": "B", + "source_id": "8", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 734 + }, + { + "title": "非经中华人民共和国主管机关批准,境内的组织、个人不得向外国司法或者执法机构提供____", + "options": [ + "A.任何数据", + "B.存储于中华人民共和国境内的数据", + "C.公开数据", + "D.商业数据" + ], + "type": "单选", + "answer": "B", + "source_id": "9", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 735 + }, + { + "title": "国家构建的政务数据开放平台应当具备的特点是____", + "options": [ + "A.统一规范、互联互通、安全可控", + "B.集中管理、分级授权、免费开放", + "C.政府主导、市场参与、共建共享", + "D.跨域互通、实时更新、全程追溯" + ], + "type": "单选", + "answer": "A", + "source_id": "10", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 736 + }, + { + "title": "省级以上人民政府应当将数字经济发展纳入____", + "options": [ + "A.本级财政预算", + "B.本级国民经济和社会发展规划", + "C.年度工作计划", + "D.政府工作报告" + ], + "type": "单选", + "answer": "B", + "source_id": "11", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 737 + }, + { + "title": "提供智能化公共服务时,应当充分考虑____的需求,避免对其日常生活造成障碍", + "options": [ + "A.老年人、残疾人", + "B.未成年人", + "C.农村居民", + "D.低收入群体" + ], + "type": "单选", + "answer": "A", + "source_id": "12", + "page_number": 138, + "source_file": "中华人民共和国数据安全法", + "id": 738 + }, + { + "title": "重要数据的处理者应当按照规定对其数据处理活动定期开展风险评估,并向有关主管部门报送____", + "options": [ + "A.数据安全自查报告", + "B.风险评估报告", + "C.数据使用情况报告", + "D.数据泄露应急预案" + ], + "type": "单选", + "answer": "B", + "source_id": "13", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 739 + }, + { + "title": "关键信息基础设施运营者在中华人民共和国境内运营中收集和产生的重要数据的出境安全管理,适用____的规定", + "options": [ + "A.《中华人民共和国数据安全法》", + "B.《中华人民共和国网络安全法》", + "C.《中华人民共和国个人信息保护法》", + "D.《中华人民共和国国家安全法》" + ], + "type": "单选", + "answer": "B", + "source_id": "14", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 740 + }, + { + "title": "发生数据安全事件时,有关主管部门应当依法____,防止危害扩大", + "options": [ + "A.立即删除相关数据", + "B.启动应急预案,采取相应应急处置措施", + "C.向社会公开所有事件细节", + "D.暂停所有数据处理活动" + ], + "type": "单选", + "answer": "B", + "source_id": "15", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 741 + }, + { + "title": "违反本法规定,不履行数据安全保护义务且拒不改正的,最高可处____罚款", + "options": [ + "A.五十万元", + "B.二百万元", + "C.五百万元", + "D.一千万元" + ], + "type": "单选", + "answer": "B", + "source_id": "16", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 742 + }, + { + "title": "违反国家核心数据管理制度,危害国家主权、安全和发展利益的,最高可处____罚款", + "options": [ + "A.二百万元", + "B.五百万元", + "C.一千万元", + "D.二千万元" + ], + "type": "单选", + "answer": "C", + "source_id": "17", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 743 + }, + { + "title": "未经主管机关批准向外国司法或者执法机构提供数据,造成严重后果的,最高可处____罚款", + "options": [ + "A.一百万元", + "B.二百万元", + "C.五百万元", + "D.一千万元" + ], + "type": "单选", + "answer": "C", + "source_id": "18", + "page_number": 139, + "source_file": "中华人民共和国数据安全法", + "id": 744 + }, + { + "title": "有关主管部门在履行数据安全监管职责中,发现数据处理活动存在较大安全风险的,可以按照规定权限和程序对有关组织、个人进行____", + "options": [ + "A.行政处罚", + "B.刑事立案", + "C.约谈", + "D.查封扣押" + ], + "type": "单选", + "answer": "C", + "source_id": "19", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 745 + }, + { + "title": "开展涉及国家秘密的数据处理活动,适用____的规定", + "options": [ + "A.《中华人民共和国数据安全法》", + "B.《中华人民共和国保守国家秘密法》", + "C.《中华人民共和国国家安全法》", + "D.《中华人民共和国网络安全法》" + ], + "type": "单选", + "answer": "B", + "source_id": "20", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 746 + }, + { + "title": "本法所称的数据处理活动包括下列哪些行为____", + "options": [ + "A.收集、存储", + "B.使用、加工", + "C.传输、提供", + "D.公开、删除" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "21", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 747 + }, + { + "title": "下列关于数据安全法适用范围的说法,正确的有____", + "options": [ + "A.在中华人民共和国境内开展数据处理活动及其安全监管,适用本法", + "B.在中华人民共和国境外开展数据处理活动,损害中华人民共和国国家安全的,依法追究法律责任", + "C.在中华人民共和国境外开展数据处理活动,损害中华人民共和国公共利益的,依法追究法律责任", + "D.在中华人民共和国境外开展数据处理活动,损害中华人民共和国公民、组织合法权益的,依法追究法律责任" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "22", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 748 + }, + { + "title": "承担本行业、本领域数据安全监管职责的部门包括____", + "options": [ + "A.工业、电信主管部门", + "B.交通、金融主管部门", + "C.自然资源、卫生健康主管部门", + "D.教育、科技主管部门" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "23", + "page_number": 140, + "source_file": "中华人民共和国数据安全法", + "id": 749 + }, + { + "title": "国家建立的数据安全制度体系包括____", + "options": [ + "A.数据分类分级保护制度", + "B.数据安全风险评估、报告、信息共享、监测预警机制", + "C.数据安全应急处置机制", + "D.数据安全审查制度和数据出口管制制度" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "24", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 750 + }, + { + "title": "国家核心数据包括关系____等方面的数据", + "options": [ + "A.国家安全", + "B.国民经济命脉", + "C.重要民生", + "D.重大公共利益" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "25", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 751 + }, + { + "title": "重要数据的处理者应当履行的义务包括____", + "options": [ + "A.建立健全全流程数据安全管理制度", + "B.组织开展数据安全教育培训", + "C.明确数据安全负责人和管理机构", + "D.定期开展风险评估并报送风险评估报告" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "26", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 752 + }, + { + "title": "从事数据交易中介服务的机构应当履行的义务包括____", + "options": [ + "A.要求数据提供方说明数据来源", + "B.审核交易双方的身份", + "C.留存审核、交易记录", + "D.对交易数据进行加密存储" + ], + "type": "多选", + "answer": "ABC", + "source_id": "27", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 753 + }, + { + "title": "国家机关为履行法定职责收集、使用数据,应当遵守的规定包括____", + "options": [ + "A.在法定职责范围内进行", + "B.依照法律、行政法规规定的条件和程序进行", + "C.对知悉的个人隐私、个人信息、商业秘密依法予以保密", + "D.不得泄露或者非法向他人提供" + ], + "type": "多选", + "answer": "ABCD", + "source_id": "28", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 754 + }, + { + "title": "违反本法规定,可能承担的法律责任类型包括____", + "options": [ + "A.行政责任", + "B.民事责任", + "C.刑事责任", + "D.违宪责任" + ], + "type": "多选", + "answer": "ABC", + "source_id": "29", + "page_number": 141, + "source_file": "中华人民共和国数据安全法", + "id": 755 + }, + { + "title": "下列关于政务数据安全与开放的说法,正确的有____主要内容过车时间、车牌号、车型、车速、方向、卡口编号主要内容断面车流量、平均车速、时间占有率车辆经纬度、线路号、车速;乘客上下车刷卡路段平均速度、拥堵指数(第三方脱敏)天气、降雨量;事故、施工、大型活动plate_no(车牌)", + "options": [ + "A.国家大力推进电子政务建设,提升运用数据服务经济社会发展的能力", + "B.国家机关应当建立健全数据安全管理制度,保障政务数据安全", + "C.国家机关应当按照规定及时、准确地公开所有政务数据", + "D.国家构建统一规范、互联互通、安全可控的政务数据开放平台", + "产生/上报方式", + "逐车产生“过车事件”", + "产生/上报方式", + "周期上报“断面指标”", + "持续上报/刷卡交易", + "第三方接口推送", + "接口/人工录入", + "vehicle_type(车型)" + ], + "type": "多选上报频率逐 条 ( 高频)上报频率每 1 分钟10~30 秒分钟级不定时speed(车速km/h)", + "answer": "ABD时效要求秒级(实时)时效要求分钟级准实时分钟级准实时/离线pass_time(过车时间)", + "source_id": "30", + "page_number": 142, + "source_file": "中华人民共和国数据安全法gantry_id(卡口编号)", + "id": 756 + }, + { + "title": "沪A·O12Z3", + "options": [ + "小型客车" + ], + "type": "45", + "answer": "2026-05-3008:15:03", + "source_id": "1001", + "page_number": 152, + "source_file": "G0207", + "id": 757 + }, + { + "title": "沪A·88K21", + "options": [ + "(空)" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1002", + "page_number": 152, + "source_file": "G0207", + "id": 758 + }, + { + "title": "沪A·88K21", + "options": [ + "小型客车" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1003", + "page_number": 152, + "source_file": "G0207", + "id": 759 + }, + { + "title": "沪A·88K21", + "options": [ + "小型客车" + ], + "type": "62", + "answer": "2026-05-3008:15:05", + "source_id": "1004", + "page_number": 152, + "source_file": "G0207", + "id": 760 + }, + { + "title": "沪B·5566F", + "options": [ + "大型货车" + ], + "type": "263", + "answer": "2026-05-3008:14:58", + "source_id": "1005", + "page_number": 152, + "source_file": "G0311", + "id": 761 + }, + { + "title": "(空)含义过车记录流水号车牌号含义车型瞬时车速(km/h)过车时间卡口编号", + "options": [ + "小型客车", + "类型", + "BIGINT", + "STRING", + "类型", + "STRING", + "INT", + "TIMESTAMP", + "STRING" + ], + "type": "38是否可空否否是否可空是是否否", + "answer": "2026-05-3008:16:10备注主键个人信息,需脱敏管控备注小型客车 /大型货车等合理范围 0~200存在乱序关联卡口点位维表", + "source_id": "1006", + "page_number": 152, + "source_file": "G0311", + "id": 762 + } +] \ No newline at end of file diff --git a/quiz-app/tsconfig.app.json b/quiz-app/tsconfig.app.json new file mode 100644 index 0000000..6830b6f --- /dev/null +++ b/quiz-app/tsconfig.app.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "es2023", + "lib": ["ES2023", "DOM"], + "module": "esnext", + "types": ["vite/client"], + "allowArbitraryExtensions": true, + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src"] +} diff --git a/quiz-app/tsconfig.json b/quiz-app/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/quiz-app/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/quiz-app/tsconfig.node.json b/quiz-app/tsconfig.node.json new file mode 100644 index 0000000..8455dcb --- /dev/null +++ b/quiz-app/tsconfig.node.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "es2023", + "lib": ["ES2023"], + "types": ["node"], + "skipLibCheck": true, + + /* Bundler mode */ + "module": "nodenext", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["vite.config.ts"] +} diff --git a/quiz-app/vite.config.ts b/quiz-app/vite.config.ts new file mode 100644 index 0000000..8b0f57b --- /dev/null +++ b/quiz-app/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/题库.pdf b/题库.pdf new file mode 100644 index 0000000..053f9fd Binary files /dev/null and b/题库.pdf differ