专项考试 · MT 393-1995

矿用差压传感器通用技术条件

MT/T 393-1995

题库来源
MT 393-1995
题目数量
30 题
总分
100 分
合格线
60 分
考试时长
60 分钟
题目类型
单选/多选/判断/填空
考试须知:
本考试为 MT 393-1995 矿用差压传感器通用技术条件 专项练习,涵盖差压传感器的基本技术要求、试验方法、应用场景等核心内容。

单选题每题 2 分,多选题每题 4 分(部分正确得 2 分),判断题每题 2 分,填空题每题 4 分(每空 2 分)。
题型分布
单选题 17 题 多选题 4 题 判断题 5 题 填空题 4 题
MT 393-1995 · 矿用差压传感器
60:00
剩余时间
当前题
已答
已标记
正确
错误
未答
// ======================== // Save Exam Record // ======================== function saveExamRecord(score, correct, wrong) { if (!examUserInfo) return; const record = { name: examUserInfo.name, position: examUserInfo.position, examDate: examUserInfo.examDate, docId: 'MT_393-1995', docTitle: 'MT 393-1995 矿用差压传感器通用技术条件', score: score, stats: { correct: correct, wrong: wrong, total: QUESTIONS.length, accuracy: Math.round(correct / QUESTIONS.length * 100) }, savedAt: new Date().toLocaleString('zh-CN') }; // 保存到 localStorage(兼容) const records = JSON.parse(localStorage.getItem('exam_records_v2') || '[]'); records.push(record); localStorage.setItem('exam_records_v2', JSON.stringify(records)); // 同时发送到服务器 fetch('/api/exam/records', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(record) }).catch(e => console.error('保存到服务器失败:', e)); }