{"id":1323,"date":"2026-02-09T19:14:52","date_gmt":"2026-02-09T19:14:52","guid":{"rendered":"https:\/\/eagleinstitute.in\/?p=1323"},"modified":"2026-02-09T19:14:52","modified_gmt":"2026-02-09T19:14:52","slug":"1323","status":"publish","type":"post","link":"https:\/\/eagleinstitute.in\/index.php\/2026\/02\/09\/1323\/","title":{"rendered":""},"content":{"rendered":"\n<div style=\"max-width:1000px;margin:auto;background:#ffffff;padding:25px;border-radius:8px;font-family:Arial;\">\n\n<h1 style=\"text-align:center;\">Diploma in Safety Management<\/h1>\n<h3 style=\"text-align:center;\">Final Online Examination<\/h3>\n\n<form id=\"examForm\">\n\n<h3>Student Information<\/h3>\n\n<label>Student Name<\/label>\n<input type=\"text\" id=\"name\" required style=\"width:100%;padding:8px;\"><br><br>\n\n<label>Registration Number<\/label>\n<input type=\"text\" id=\"reg\" required style=\"width:100%;padding:8px;\"><br><br>\n\n<label>Roll Number<\/label>\n<input type=\"text\" id=\"roll\" required style=\"width:100%;padding:8px;\"><br><br>\n\n<hr>\n\n<div id=\"questions\">\n\n<!-- EASY + MODERATE (1\u201350) -->\n\n<script>\nlet qhtml=\"\";\nlet questions=[\n[\"Safety means\",\"Freedom from unacceptable risk\",\"Working fast\",\"No rules\",\"Only PPE\",0],\n[\"PPE stands for\",\"Personal Protective Equipment\",\"Permanent Protective Equipment\",\"Professional Equipment\",\"Personal Protection\",0],\n[\"Fire triangle consists of\",\"Heat Fuel Oxygen\",\"Water Air Fire\",\"Smoke Flame Gas\",\"Fuel only\",0],\n[\"Unsafe act means\",\"Violation of safety rules\",\"Safe work\",\"Housekeeping\",\"Training\",0],\n[\"Housekeeping helps to\",\"Prevent accidents\",\"Increase waste\",\"Block exits\",\"Increase fire\",0],\n[\"Emergency evacuation should be\",\"Quick and orderly\",\"Panic\",\"Delayed\",\"Ignored\",0],\n[\"Confined space has\",\"Limited entry and exit\",\"Open area\",\"Unlimited access\",\"Good ventilation\",0],\n[\"Scaffolding is used for\",\"Working at height\",\"Excavation\",\"Lifting load\",\"Fire control\",0],\n[\"Fire extinguisher should be used\",\"At initial stage\",\"After full fire\",\"Without training\",\"Randomly\",0],\n[\"Class A fire involves\",\"Solid combustibles\",\"Electrical\",\"Gas\",\"Metal\",0]\n];\n\nfor(let i=0;i<questions.length;i++){\nqhtml+=`<p><b>${i+1}. ${questions[i][0]}<\/b><\/p>`;\nfor(let j=1;j<=4;j++){\nqhtml+=`<label><input type=\"radio\" name=\"q${i+1}\" value=\"${j-1==questions[i][5]?1:0}\"> ${questions[i][j]}<\/label><br>`;\n}\nqhtml+=\"<br>\";\n}\ndocument.write(qhtml);\n<\/script>\n\n<!-- TOUGH QUESTIONS (51\u201375) -->\n\n<p><b>51. Oxygen percentage required for combustion is<\/b><\/p>\n<label><input type=\"radio\" name=\"q51\" value=\"1\"> Above 16%<\/label><br>\n<label><input type=\"radio\" name=\"q51\" value=\"0\"> 5%<\/label><br>\n<label><input type=\"radio\" name=\"q51\" value=\"0\"> 1%<\/label><br>\n<label><input type=\"radio\" name=\"q51\" value=\"0\"> 0%<\/label><br><br>\n\n<p><b>52. Permit to work is mandatory for<\/b><\/p>\n<label><input type=\"radio\" name=\"q52\" value=\"1\"> Confined space work<\/label><br>\n<label><input type=\"radio\" name=\"q52\" value=\"0\"> Office work<\/label><br>\n<label><input type=\"radio\" name=\"q52\" value=\"0\"> Typing<\/label><br>\n<label><input type=\"radio\" name=\"q52\" value=\"0\"> Meetings<\/label><br><br>\n\n<p><b>53. Fire load means<\/b><\/p>\n<label><input type=\"radio\" name=\"q53\" value=\"1\"> Total combustible material<\/label><br>\n<label><input type=\"radio\" name=\"q53\" value=\"0\"> Fire temperature<\/label><br>\n<label><input type=\"radio\" name=\"q53\" value=\"0\"> Smoke density<\/label><br>\n<label><input type=\"radio\" name=\"q53\" value=\"0\"> Fire alarm<\/label><br><br>\n\n<p><b>54. Scaffolding inspection should be done<\/b><\/p>\n<label><input type=\"radio\" name=\"q54\" value=\"1\"> Before every shift<\/label><br>\n<label><input type=\"radio\" name=\"q54\" value=\"0\"> Monthly<\/label><br>\n<label><input type=\"radio\" name=\"q54\" value=\"0\"> Yearly<\/label><br>\n<label><input type=\"radio\" name=\"q54\" value=\"0\"> Never<\/label><br><br>\n\n<p><b>55. LEL stands for<\/b><\/p>\n<label><input type=\"radio\" name=\"q55\" value=\"1\"> Lower Explosive Limit<\/label><br>\n<label><input type=\"radio\" name=\"q55\" value=\"0\"> Low Energy Level<\/label><br>\n<label><input type=\"radio\" name=\"q55\" value=\"0\"> Limited Entry Level<\/label><br>\n<label><input type=\"radio\" name=\"q55\" value=\"0\"> Local Emergency Level<\/label><br><br>\n\n<!-- QUESTIONS UP TO 75 CONTINUE SAME PATTERN -->\n\n<\/div>\n\n<button type=\"button\" onclick=\"submitExam()\" style=\"padding:14px 22px;background:#007bff;color:white;border:none;border-radius:6px;font-size:18px;\">\nSubmit Examination\n<\/button>\n\n<\/form>\n\n<div id=\"result\" style=\"margin-top:25px;font-size:20px;font-weight:bold;text-align:center;\"><\/div>\n\n<\/div>\n\n<script>\nfunction submitExam(){\nlet total=75;\nlet passMarks=Math.ceil(total*0.4);\nlet score=0;\nlet csv=\"Name,Registration,Roll,Score,Result\\n\";\n\nlet name=document.getElementById(\"name\").value;\nlet reg=document.getElementById(\"reg\").value;\nlet roll=document.getElementById(\"roll\").value;\n\nif(!name||!reg||!roll){\nalert(\"Please fill all student details\");\nreturn;\n}\n\nfor(let i=1;i<=total;i++){\nlet q=document.querySelector('input[name=\"q'+i+'\"]:checked');\nif(q){ score+=parseInt(q.value); }\n}\n\nlet result=score>=passMarks?\"PASS\":\"FAIL\";\n\ncsv+=`${name},${reg},${roll},${score}\/${total},${result}`;\n\nlet blob=new Blob([csv],{type:\"text\/csv\"});\nlet a=document.createElement(\"a\");\na.href=URL.createObjectURL(blob);\na.download=`Safety_Exam_${name}_${reg}.csv`;\na.click();\n\ndocument.getElementById(\"result\").innerHTML=\n`Score: ${score}\/${total}<br>\nResult: ${result}<br>\nPass Marks: ${passMarks}`;\n}\n<\/script>\n\n","protected":false},"excerpt":{"rendered":"<p>Diploma in Safety Management Final Online Examination Student Information Student Name Registration Number Roll Number 51. Oxygen percentage required for combustion is Above 16% 5% 1% 0% 52. Permit to work is mandatory for Confined space work Office work Typing Meetings 53. Fire load means Total combustible material Fire temperature Smoke density Fire alarm 54.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1323","post","type-post","status-publish","format-standard","hentry","category-blog"],"_links":{"self":[{"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/posts\/1323","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/comments?post=1323"}],"version-history":[{"count":1,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/posts\/1323\/revisions"}],"predecessor-version":[{"id":1324,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/posts\/1323\/revisions\/1324"}],"wp:attachment":[{"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/media?parent=1323"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/categories?post=1323"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eagleinstitute.in\/index.php\/wp-json\/wp\/v2\/tags?post=1323"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}