SEARCH

11. For All Operating Department Exam - Test - Set- 11

For All Operating Department Exam - Test - Set- 11/title> <style> body { font-family: Arial; padding: 20px; background: #f9f9f9; } .quiz-container { max-width: 600px; margin: auto; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);} h2 { text-align: center; color: #2c3e50; } .question { font-weight: bold; margin-top: 20px; } .options { margin-top: 10px; } button { margin: 10px 5px; padding: 10px 20px; border: none; border-radius: 5px; background: #3498db; color: #fff; cursor: pointer; } .hide { display: none; } .result { margin-top: 20px; font-weight: bold; } .answer-list { background: #ecf0f1; padding: 10px; border-radius: 5px; } </style> </head> <body> <div class="quiz-container"> <h2>🛤 For All Operating Department Exam - Test - Set- 11</h2> <div id="quiz-box"></div> <div id="result" class="result"></div> <div id="answers" class="answer-list hide"></div> </div> <script> const quizData = [ { question: "1. What is a Loco Pilot’s primary responsibility?", options: ["Selling tickets", "Ensuring punctuality", "Safe operation of the train", "Maintaining train records"], answer: 2 }, { question: "2. What is the function of an Advanced Starter signal?", options: ["Control shunting", "Authorize departure from station limits", "Indicate speed", "Guide for loop entry"], answer: 1 }, { question: "3. What is the color of a shunt signal indicating 'stop'?", options: ["Green", "Red", "Yellow", "Blue"], answer: 1 }, { question: "4. What is the use of a Train Signal Register?", options: ["Record signals passed at danger", "Record train signal exchanges", "Store driver signatures", "Signal faults"], answer: 1 }, { question: "5. What does T/609 form authorize?", options: ["Caution order", "Engine movement", "Shunting in block section", "Speed test"], answer: 2 }, { question: "6. What does a detonator on track indicate?", options: ["Fog condition", "Shunting allowed", "Emergency situation", "Track clearance"], answer: 2 }, { question: "7. What must be done if a signal is defective?", options: ["Wait for it to clear", "Proceed at full speed", "Pass at danger after written authority", "Ignore and proceed"], answer: 2 }, { question: "8. What is the purpose of Sand Hump in yards?", options: ["Signal testing", "Train cleaning", "Stop rolling stock", "Drainage"], answer: 2 }, { question: "9. When is the ‘Authority to Proceed’ required?", options: ["On loop line always", "On main line with working block instrument", "When block instruments fail", "During day time only"], answer: 2 }, { question: "10. What color is the banner flag used during speed restriction zones?", options: ["Green", "White", "Red", "Yellow"], answer: 3 } ]; let currentQ = 0, score = 0, userAnswers = []; function loadQuestion() { const quizBox = document.getElementById("quiz-box"); if (currentQ < quizData.length) { const q = quizData[currentQ]; quizBox.innerHTML = ` <div class="question">${q.question}</div> <div class="options"> ${q.options.map((opt, i) => `<div><input type="radio" name="option" value="${i}"> ${opt}</div>`).join('')} <button onclick="submitAnswer()">Submit</button> </div> `; } else { showResult(); } } function submitAnswer() { const selected = document.querySelector('input[name="option"]:checked'); if (!selected) return alert("Please select an answer!"); const answer = parseInt(selected.value); userAnswers.push(answer); if (answer === quizData[currentQ].answer) score++; currentQ++; loadQuestion(); } function showResult() { document.getElementById("quiz-box").classList.add("hide"); document.getElementById("result").innerHTML = `🎯 You scored ${score} out of ${quizData.length}`; let answersHTML = "<h3>✅ Correct Answers:</h3><ul>"; quizData.forEach((q, i) => { answersHTML += `<li>${q.question}<br><b>Answer:</b> ${q.options[q.answer]}</li>`; }); answersHTML += "</ul>"; const ansBox = document.getElementById("answers"); ansBox.innerHTML = answersHTML; ansBox.classList.remove("hide"); } loadQuestion(); </script> </body> </html> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> </span> <span class='post-timestamp'> </span> <span class='post-comment-link'> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post/9194621797982424145/3943513320323746193' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=9194621797982424145&postID=3943513320323746193&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=9194621797982424145&postID=3943513320323746193&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=9194621797982424145&postID=3943513320323746193&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=9194621797982424145&postID=3943513320323746193&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=9194621797982424145&postID=3943513320323746193&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4>No comments:</h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <a href='https://www.blogger.com/comment/fullpage/post/9194621797982424145/3943513320323746193' onclick='javascript:window.open(this.href, "bloggerPopup", "toolbar=0,location=0,statusbar=1,menubar=0,scrollbars=yes,width=640,height=500"); return false;'>Post a Comment</a> </p> </div> </div> <div class='inline-ad'> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_33.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_89.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='https://indianrailwayquestionbank.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='https://indianrailwayquestionbank.blogspot.com/feeds/3943513320323746193/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a> </div> </div> </div><div class='widget Text' data-version='1' id='Text1'> <div class='widget-content'> <p class="MsoNormal" style="background-color: white; font-family: "trebuchet ms", trebuchet, sans-serif; font-size: 13px; text-align: justify;"><span style="color:#ff0000;">Disclaimer:</span><span style="font-weight: normal;color:#666666;"> The Information/News/Video provided in this Platform has been collected from different sources. We Believe that “Knowledge Is Power” and our aim is to create general awareness among people and make them powerful through easily accessible Information.<o:p></o:p></span></p><p class="MsoNormal" style="background-color: white; font-family: "trebuchet ms", trebuchet, sans-serif; font-size: 13px; text-align: justify;"><span style="color:#ff0000;">NOTE:</span><span style="color:#666666;"> We do not take any responsibility of authencity of Information/News/Videos.</span></p> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML5'> <div class='widget-content'> <p style="text-align: center;"><a href="https://informationcenter.co.in/index1.php?page_id=2" target="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfHvpVG75s-v_lThpp9YrhfnVKbBWPduHAruzPxgKivM1TbhwvMpHFTCBieIShwG4NJTFMXDK6BYX7Uf4iW1KTi4RMkUPeYx6vkQYpF267mp3DFhfzY2j4WQq_p1exBFITScCsuweyofo/w640-h52/4.PNG" /></a></p> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML12'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget Label' data-version='1' id='Label2'> <h2>INDEX II</h2> <div class='widget-content cloud-label-widget-content'> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Establishment%20%2F%20Personnel%20Dept.'>Q Bank - Establishment / Personnel Dept.</a> <span class='label-count' dir='ltr'>(83)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Electrical%20Engineering'>Q Bank - Electrical Engineering</a> <span class='label-count' dir='ltr'>(80)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20OS%20%2F%20Clerk%20%20%2F%20Typist'>Q Bank - OS / Clerk / Typist</a> <span class='label-count' dir='ltr'>(72)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20Engg%20%20%28P%20Way%20%26%20Work%29'>Q B Engg (P Way & Work)</a> <span class='label-count' dir='ltr'>(67)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Operating'>Q BANK - Operating</a> <span class='label-count' dir='ltr'>(63)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Group%20%27B%27%20Exam'>Group 'B' Exam</a> <span class='label-count' dir='ltr'>(60)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20APO%20%28%20Asst.%20%20Personnel%20Officer%29'>Q Bank - APO ( Asst. Personnel Officer)</a> <span class='label-count' dir='ltr'>(57)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/QUESTION%20BANK%20WITH%20ANSWER'>QUESTION BANK WITH ANSWER</a> <span class='label-count' dir='ltr'>(55)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20Establishment'>Q B Establishment</a> <span class='label-count' dir='ltr'>(49)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Goods%20Guards'>Q Bank - Goods Guards</a> <span class='label-count' dir='ltr'>(45)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20%20OHE%2FTRD%2FPSI'>Q Bank - OHE/TRD/PSI</a> <span class='label-count' dir='ltr'>(36)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20-%20CIVIL%20ENGINEERING%20%28AEN%29'>Q B - CIVIL ENGINEERING (AEN)</a> <span class='label-count' dir='ltr'>(27)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20-%20Welfare%20Inspector'>Q B - Welfare Inspector</a> <span class='label-count' dir='ltr'>(27)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20C%20%26%20W%20%28%20Carriage%20%26%20Wagon%20%29'>Q BANK - C & W ( Carriage & Wagon )</a> <span class='label-count' dir='ltr'>(26)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Account'>Q Bank - Account</a> <span class='label-count' dir='ltr'>(24)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20LOCO'>Q BANK - LOCO</a> <span class='label-count' dir='ltr'>(23)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20Exam%20-%20Station%20Master'>Q BANK Exam - Station Master</a> <span class='label-count' dir='ltr'>(23)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Commercial'>Q Bank - Commercial</a> <span class='label-count' dir='ltr'>(22)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AOM'>Q Bank - AOM</a> <span class='label-count' dir='ltr'>(19)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Station%20Master'>Q BANK - Station Master</a> <span class='label-count' dir='ltr'>(18)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20S%20%26%20T'>Q Bank - S & T</a> <span class='label-count' dir='ltr'>(15)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/1.%20Syllabus'>1. Syllabus</a> <span class='label-count' dir='ltr'>(13)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20D%20%26%20AR%20%28Discipline%20and%20Appeals%20Rule%29'>Q Bank - D & AR (Discipline and Appeals Rule)</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Medical'>Q Bank - Medical</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Posts%20%28Civil%20Engineering%20%26%20P%20way%29%20Dept'>Q Bank - Posts (Civil Engineering & P way) Dept</a> <span class='label-count' dir='ltr'>(12)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/2.%20Q%20Bank%20-%20Group%20D%20To%20C'>2. Q Bank - Group D To C</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/INDEX'>INDEX</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/QB%20-%20ENGINEERING%20%28%20MECHANICAL%20%29'>QB - ENGINEERING ( MECHANICAL )</a> <span class='label-count' dir='ltr'>(11)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20%20-%20%20LOCO%20%28Diesel%29'>Q Bank - LOCO (Diesel)</a> <span class='label-count' dir='ltr'>(9)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20ACM%20%28Assistant%20Commercial%20Manager%29'>Q Bank - ACM (Assistant Commercial Manager)</a> <span class='label-count' dir='ltr'>(9)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Jr%20Engineer%20%28%20Diesel%20Mechanical%20%29'>Q BANK - Jr Engineer ( Diesel Mechanical )</a> <span class='label-count' dir='ltr'>(8)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20LOCO%20%28AC%29'>Q BANK - LOCO (AC)</a> <span class='label-count' dir='ltr'>(8)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Law%20Assistant'>Q Bank - Law Assistant</a> <span class='label-count' dir='ltr'>(8)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AME%2FAWM'>Q Bank - AME/AWM</a> <span class='label-count' dir='ltr'>(7)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Group%20D%20To%20C'>Q Bank - Group D To C</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20General%20Knowledge'>Q Bank - General Knowledge</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Publicity%20Inspector'>Q Bank - Publicity Inspector</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Rajbhasha%20%28%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE%29'>Q Bank - Rajbhasha (राजभाषा)</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Stores'>Q Bank - Stores</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Question%20%26%20Answer'>Question & Answer</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/RRB%20EXAM'>RRB EXAM</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/NTPC'>NTPC</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20ADSTE%20%2F%20ASTE'>Q Bank - ADSTE / ASTE</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AEE'>Q Bank - AEE</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Appointment%20On%20Compassionate%20Ground%20Exam'>Q Bank - Appointment On Compassionate Ground Exam</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20CLI'>Q Bank - CLI</a> <span class='label-count' dir='ltr'>(4)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Commercial%20Instructor%20Exam'>Q Bank - Commercial Instructor Exam</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Engineering%20%28Bridge%29'>Q Bank - Engineering (Bridge)</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20IT'>Q Bank - IT</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Protocol%20Inspector'>Q Bank - Protocol Inspector</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20RPF%20Department'>Q Bank - RPF Department</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes'>Short Notes</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Jr%20Engineer%20%28%20Mechanical%20%29'>Q BANK - Jr Engineer ( Mechanical )</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20C%20%26%20M'>Q Bank - C & M</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20CCTC'>Q Bank - CCTC</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Carpenter'>Q Bank - Carpenter</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20General%20English'>Q Bank - General English</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Jr%20Engineer%20%28Tele%29'>Q Bank - Jr Engineer (Tele)</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Ministerial%20Staff'>Q Bank - Ministerial Staff</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Track%20Machine'>Q Bank - Track Machine</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-Section%20%20%20%20Controler'>Q Bank -Section Controler</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Video'>Video</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/ABB'>ABB</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Departmental%20Exam'>Departmental Exam</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/FAQ'>FAQ</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/GDCE%20Exam'>GDCE Exam</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/IRMS%20%28Indian%20Railway%20Management%20Service'>IRMS (Indian Railway Management Service</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/JUNIOR%20ENGINEER%20%28Non%20-AC%29%20GRADE%20-%20II'>JUNIOR ENGINEER (Non -AC) GRADE - II</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Minimum%20Wages%20Act'>Minimum Wages Act</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Project%20%26%20Planning'>Project & Planning</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20%26%20Answer%20-%20C%20%26%20W%20%28%20Carriage%20%26%20Wagon%20%29'>Q BANK & Answer - C & W ( Carriage & Wagon )</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Shunting%20Master'>Q BANK - Shunting Master</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20%20Instructor'>Q Bank - Instructor</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AMM'>Q Bank - AMM</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20All%20Department'>Q Bank - All Department</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Ballast%20Train%20Checker'>Q Bank - Ballast Train Checker</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Complaints%20Inspector'>Q Bank - Complaints Inspector</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20GK%20%28Computer%29'>Q Bank - GK (Computer)</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Leave%20Rule'>Q Bank - Leave Rule</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Mason'>Q Bank - Mason</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Maths'>Q Bank - Maths</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20NPS%20%28New%20Pension%20Scheme%29'>Q Bank - NPS (New Pension Scheme)</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20OS%20%2F%20Clerk%20Typist'>Q Bank - OS / Clerk Typist</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Pass%20Rule'>Q Bank - Pass Rule</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Planning%20Inspector'>Q Bank - Planning Inspector</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Railway%20%28GK%29'>Q Bank - Railway (GK)</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Stenographer'>Q Bank - Stenographer</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Technician%20%28Ele%29'>Q Bank - Technician (Ele)</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Traffic%20Costing%20Inspector'>Q Bank - Traffic Costing Inspector</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Question%20Bank%20-%20Technicians%20of%20TLAC%20Group.'>Question Bank - Technicians of TLAC Group.</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes%20-%20Establishment'>Short Notes - Establishment</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes%20-%20Operating%20%2F%20Traffic'>Short Notes - Operating / Traffic</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/p'>p</a> <span class='label-count' dir='ltr'>(1)</span> </span> <div class='clear'></div> </div> </div></div> </div> </div> <div class='column-left-outer'> <div class='column-left-inner'> <aside> <div class='sidebar section' id='sidebar-left-1'><div class='widget PageList' data-version='1' id='PageList1'> <h2>Pages</h2> <div class='widget-content'> <ul> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/about-us.html'>About Us</a> </li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML15'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9975449542465924" crossorigin="anonymous"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget Label' data-version='1' id='Label1'> <h2>INDEX</h2> <div class='widget-content list-label-widget-content'> <ul> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/1.%20Syllabus'>1. Syllabus</a> <span dir='ltr'>(13)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/2.%20Q%20Bank%20-%20Group%20D%20To%20C'>2. Q Bank - Group D To C</a> <span dir='ltr'>(11)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/ABB'>ABB</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Departmental%20Exam'>Departmental Exam</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/FAQ'>FAQ</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/GDCE%20Exam'>GDCE Exam</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Group%20%27B%27%20Exam'>Group 'B' Exam</a> <span dir='ltr'>(60)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/INDEX'>INDEX</a> <span dir='ltr'>(11)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/IRMS%20%28Indian%20Railway%20Management%20Service'>IRMS (Indian Railway Management Service</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/JUNIOR%20ENGINEER%20%28Non%20-AC%29%20GRADE%20-%20II'>JUNIOR ENGINEER (Non -AC) GRADE - II</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Minimum%20Wages%20Act'>Minimum Wages Act</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/NTPC'>NTPC</a> <span dir='ltr'>(4)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/p'>p</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Project%20%26%20Planning'>Project & Planning</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20-%20CIVIL%20ENGINEERING%20%28AEN%29'>Q B - CIVIL ENGINEERING (AEN)</a> <span dir='ltr'>(27)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20-%20Welfare%20Inspector'>Q B - Welfare Inspector</a> <span dir='ltr'>(27)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20Engg%20%20%28P%20Way%20%26%20Work%29'>Q B Engg (P Way & Work)</a> <span dir='ltr'>(67)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20B%20Establishment'>Q B Establishment</a> <span dir='ltr'>(49)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20%20-%20%20LOCO%20%28Diesel%29'>Q Bank - LOCO (Diesel)</a> <span dir='ltr'>(9)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20%20Instructor'>Q Bank - Instructor</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20%20OHE%2FTRD%2FPSI'>Q Bank - OHE/TRD/PSI</a> <span dir='ltr'>(36)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Account'>Q Bank - Account</a> <span dir='ltr'>(24)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20ACM%20%28Assistant%20Commercial%20Manager%29'>Q Bank - ACM (Assistant Commercial Manager)</a> <span dir='ltr'>(9)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20ADSTE%20%2F%20ASTE'>Q Bank - ADSTE / ASTE</a> <span dir='ltr'>(4)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AEE'>Q Bank - AEE</a> <span dir='ltr'>(4)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20All%20Department'>Q Bank - All Department</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AME%2FAWM'>Q Bank - AME/AWM</a> <span dir='ltr'>(7)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AMM'>Q Bank - AMM</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20AOM'>Q Bank - AOM</a> <span dir='ltr'>(19)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20APO%20%28%20Asst.%20%20Personnel%20Officer%29'>Q Bank - APO ( Asst. Personnel Officer)</a> <span dir='ltr'>(57)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Appointment%20On%20Compassionate%20Ground%20Exam'>Q Bank - Appointment On Compassionate Ground Exam</a> <span dir='ltr'>(4)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Ballast%20Train%20Checker'>Q Bank - Ballast Train Checker</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20C%20%26%20M'>Q Bank - C & M</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20C%20%26%20W%20%28%20Carriage%20%26%20Wagon%20%29'>Q BANK - C & W ( Carriage & Wagon )</a> <span dir='ltr'>(26)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Carpenter'>Q Bank - Carpenter</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20CCTC'>Q Bank - CCTC</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20CLI'>Q Bank - CLI</a> <span dir='ltr'>(4)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Commercial'>Q Bank - Commercial</a> <span dir='ltr'>(22)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Commercial%20Instructor%20Exam'>Q Bank - Commercial Instructor Exam</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Complaints%20Inspector'>Q Bank - Complaints Inspector</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20D%20%26%20AR%20%28Discipline%20and%20Appeals%20Rule%29'>Q Bank - D & AR (Discipline and Appeals Rule)</a> <span dir='ltr'>(12)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Electrical%20Engineering'>Q Bank - Electrical Engineering</a> <span dir='ltr'>(80)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Engineering%20%28Bridge%29'>Q Bank - Engineering (Bridge)</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Establishment%20%2F%20Personnel%20Dept.'>Q Bank - Establishment / Personnel Dept.</a> <span dir='ltr'>(83)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20General%20English'>Q Bank - General English</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20General%20Knowledge'>Q Bank - General Knowledge</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20GK%20%28Computer%29'>Q Bank - GK (Computer)</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Goods%20Guards'>Q Bank - Goods Guards</a> <span dir='ltr'>(45)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Group%20D%20To%20C'>Q Bank - Group D To C</a> <span dir='ltr'>(6)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20IT'>Q Bank - IT</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Jr%20Engineer%20%28%20Diesel%20Mechanical%20%29'>Q BANK - Jr Engineer ( Diesel Mechanical )</a> <span dir='ltr'>(8)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Jr%20Engineer%20%28%20Mechanical%20%29'>Q BANK - Jr Engineer ( Mechanical )</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Jr%20Engineer%20%28Tele%29'>Q Bank - Jr Engineer (Tele)</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Law%20Assistant'>Q Bank - Law Assistant</a> <span dir='ltr'>(8)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Leave%20Rule'>Q Bank - Leave Rule</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20LOCO'>Q BANK - LOCO</a> <span dir='ltr'>(23)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20LOCO%20%28AC%29'>Q BANK - LOCO (AC)</a> <span dir='ltr'>(8)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Mason'>Q Bank - Mason</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Maths'>Q Bank - Maths</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Medical'>Q Bank - Medical</a> <span dir='ltr'>(12)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Ministerial%20Staff'>Q Bank - Ministerial Staff</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20NPS%20%28New%20Pension%20Scheme%29'>Q Bank - NPS (New Pension Scheme)</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Operating'>Q BANK - Operating</a> <span dir='ltr'>(63)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20OS%20%2F%20Clerk%20%20%2F%20Typist'>Q Bank - OS / Clerk / Typist</a> <span dir='ltr'>(72)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20OS%20%2F%20Clerk%20Typist'>Q Bank - OS / Clerk Typist</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Pass%20Rule'>Q Bank - Pass Rule</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Planning%20Inspector'>Q Bank - Planning Inspector</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Posts%20%28Civil%20Engineering%20%26%20P%20way%29%20Dept'>Q Bank - Posts (Civil Engineering & P way) Dept</a> <span dir='ltr'>(12)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Protocol%20Inspector'>Q Bank - Protocol Inspector</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Publicity%20Inspector'>Q Bank - Publicity Inspector</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Railway%20%28GK%29'>Q Bank - Railway (GK)</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Rajbhasha%20%28%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE%29'>Q Bank - Rajbhasha (राजभाषा)</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20RPF%20Department'>Q Bank - RPF Department</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20S%20%26%20T'>Q Bank - S & T</a> <span dir='ltr'>(15)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Shunting%20Master'>Q BANK - Shunting Master</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20-%20Station%20Master'>Q BANK - Station Master</a> <span dir='ltr'>(18)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Stenographer'>Q Bank - Stenographer</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Stores'>Q Bank - Stores</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Technician%20%28Ele%29'>Q Bank - Technician (Ele)</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Track%20Machine'>Q Bank - Track Machine</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-%20Traffic%20Costing%20Inspector'>Q Bank - Traffic Costing Inspector</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20Bank%20-Section%20%20%20%20Controler'>Q Bank -Section Controler</a> <span dir='ltr'>(2)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20%26%20Answer%20-%20C%20%26%20W%20%28%20Carriage%20%26%20Wagon%20%29'>Q BANK & Answer - C & W ( Carriage & Wagon )</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Q%20BANK%20Exam%20-%20Station%20Master'>Q BANK Exam - Station Master</a> <span dir='ltr'>(23)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/QB%20-%20ENGINEERING%20%28%20MECHANICAL%20%29'>QB - ENGINEERING ( MECHANICAL )</a> <span dir='ltr'>(11)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Question%20%26%20Answer'>Question & Answer</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Question%20Bank%20-%20Technicians%20of%20TLAC%20Group.'>Question Bank - Technicians of TLAC Group.</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/QUESTION%20BANK%20WITH%20ANSWER'>QUESTION BANK WITH ANSWER</a> <span dir='ltr'>(55)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/RRB%20EXAM'>RRB EXAM</a> <span dir='ltr'>(5)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes'>Short Notes</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes%20-%20Establishment'>Short Notes - Establishment</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Short%20Notes%20-%20Operating%20%2F%20Traffic'>Short Notes - Operating / Traffic</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://indianrailwayquestionbank.blogspot.com/search/label/Video'>Video</a> <span dir='ltr'>(2)</span> </li> </ul> <div class='clear'></div> </div> </div><div class='widget FeaturedPost' data-version='1' id='FeaturedPost1'> <div class='post-summary'> <h3><a href='https://indianrailwayquestionbank.blogspot.com/2019/12/index-railway-question-bank.html'>INDEX - RAILWAY QUESTION BANK</a></h3> </div> <style type='text/css'> .image { width: 100%; } </style> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML4'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Follow This Site</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers/frame/9194621797982424145?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNmZmZmZmYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByMwMDAwMDBaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3den\x26origin\x3dhttps://indianrailwayquestionbank.blogspot.com"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); } } }); } }); } followersIframeOpen("https://www.blogger.com/followers/frame/9194621797982424145?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNmZmZmZmYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByMwMDAwMDBaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3den\x26origin\x3dhttps://indianrailwayquestionbank.blogspot.com"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML13'> <div class='widget-content'> <tr> <td style="width: 50%; text-align: center;" colspan="2"> <p><span style="font-size: 14pt; color: #ff0000;"><strong><a href="https://kutumb.app/rail-news-center?ref=BOT4Y" target="_blank"><span style="color: #ff0000;">Join</span></a></strong></span></p> <p><span style="font-size: 14pt;"><strong><a href="https://kutumb.app/rail-news-center?ref=BOT4Y" target="_blank"> RAIL NEWS CENTER Community</a></strong></span></p> <p class="_19s-"><span style="font-size: 14pt; color: #003300;"><a href="https://kutumb.app/rail-news-center?ref=BOT4Y" target="_blank"><span style="color: #003300;">For Rail employee Information, railway News, Manual, Circular, News, Rules, Departmental Question Bank,  Mutual Transfer</span></a></span></p> <p class="_19s-"><span style="font-size: 14pt; color: #ff0000;"><strong><a href="https://kutumb.app/rail-news-center?ref=BOT4Y" target="_blank"><span style="color: #ff0000;">Click Here</span></a></strong></span></p> </td> </tr> </div> <div class='clear'></div> </div></div> </aside> </div> </div> <div class='column-right-outer'> <div class='column-right-inner'> <aside> <div class='sidebar section' id='sidebar-right-1'><div class='widget HTML' data-version='1' id='HTML8'> <div class='widget-content'> <table style="width: 240px; margin-left: auto; margin-right: auto;"> <tbody> <tr> <td style="height: 10px; text-align: center;"> <p><span style="color: #ff0000; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;">Subscribe</span></strong></span></p> <p><span style="color: #339966; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;"><a href="https://www.youtube.com/c/InformationcenterCoIn1" target="_blank"><span style="color: #339966;">Our YouTube Channel</span></a></span></strong></span></p> <td style="height: 10px; text-align: center;"> <p><span style="color: #ff0000; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;"><a href="https://www.facebook.com/groups/indianrailwayemployee/" target="_blank"><span style="color: #ff0000;">Join</span></a></span></strong></span></p> <p><span style="color: #339966; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;"><a href="https://www.facebook.com/groups/indianrailwayemployee/" target="_blank"><span style="color: #339966;">Railway & Employee Group</span></a></span></strong></span></p> <td style="height: 10px; text-align: center;"> <p dir="rtl"><span style="color: #ff0000; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;"><a href="https://t.me/railnewscenter" target="_blank"><span style="color: #ff0000;">Join</span></a></span></strong></span></p> <p><span style="color: #339966; font-size: 10pt;"><strong><span style="font-family: arial, helvetica, sans-serif;"><a href="https://t.me/railnewscenter" target="_blank"><span style="color: #339966;">Rail News Telegram Group</span></a></span></strong></span></p> </td> </td></td></tr> </tbody> </table> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML10'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9975449542465924" crossorigin="anonymous"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML21'> <div class='widget-content'> <p></p><br /><br /><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://whatsapp.com/channel/0029Va9h4oMDZ4LXcyoiV91Z" imageanchor="1" style="margin-left: 1em; margin-right: 1em;" target="_blank"><img border="0" data-original-height="1536" data-original-width="1024" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiac5tGDGWRip3YdeCXSGanqXPUBiFvEKbm3ktW6w6BV7bDBqbwZG8gvrtQQb93vd7CQDB7aM0iAMABATWVpOo-6WnI15z8ebwEqMKmf3r90GR2Q_ckd2ByXb37exP6f3PIHrfmGPxclPLtHrPsuMNjwbN2UsJ4aVKthzhDr-u1xWtK3B6fjeKoPyVbNnLm/s320/adds1.jpg" width="213" /></a></div><br /> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML19'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget BlogList' data-version='1' id='BlogList1'> <h2 class='title'>My Blog List</h2> <div class='widget-content'> <div class='blog-list-container' id='BlogList1_container'> <ul id='BlogList1_blogs'> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tWaLEpApmbwhTmNIiJ8X8sCRSf9gyfqs-auGMUEFVSqEa-qGaeDjOEzNlSy05nxitg15Iz08dtHuXvQpcHX-onN1k5zlro00RVAbtPLgx16uFluw=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://defenceemployee.blogspot.com/' target='_blank'> DEFENCE EMPLOYEE</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vz_5V0ZmFC6VCbSb9rrebPjXFUZ700H943o4KKYTc1FJhmjMttGyKo-7BUqGFMvYA2JH1m4LY__cKUIPoO-A9Tb8_LaobFZh9rvA2OO6uXx99kMgWhqCUPGGgnQLs=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://indianrailwayquestionbank.blogspot.com/' target='_blank'> INDIAN RAILWAY QUESTION BANK</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vaXlE0AXuM7SN_dVYdENVVxrD9LeSqVURw_1tjnw3QbsVhsvzS-AELwpaEzfjFi6DtYJ-gFUpVCPh5Ts6bQxNqFduHbPQeXo_IN8b6BQICnTEq-LY=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://zeneralknowledge.blogspot.com/' target='_blank'> जेनरल नॉलेज General Knowledge</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_v8lE7aqK__sqguca9ZZXiUzJQ0VO9zQQr5j4A1ufhHpgeH6JlRDHcwXlTZTPGRT-vrHzAhI69RzTxR0-ClqPjSpxTEzKVw8UmbjCpvKApk2hXkvb2GhA=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://employeenewscenter.blogspot.com/' target='_blank'> EMPLOYEE NEWS TODAY</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_u_en73TBP3Lpf2iO1n3_BkcfwJDYruYx3jVZJjjUE8n52fz3W9T5BHyuK0z_HVpRIkngRRW9A8Dutd1e-Nvy3iDAfosuRanztpRrg3In9gxjc=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='http://railnewscenter.blogspot.com/' target='_blank'> RAIL NEWS CENTER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_sJZHAPujMlAZd1N04ulW3jANoiZ9GXCfEan_FqIthVm7yxlBI8b8rKiYOIW0iB5mTjp_W67MyulD175wUsgD9-miXpHxk4IdYT4rwj117-1VZX10U=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://healthnewscentre.blogspot.com/' target='_blank'> HEALTH NEWS CENTER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_uwBfzGheVJhFwz1p99zmMHAUBvSKTgcP_hyes8OZAsgTR1sXTDbPYUd0xr60clUTolVJtAxB1ACrbqhlkdKociYdfVB96qCPkC9lNNPcMkTLqXFqGcCw06VlYq=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://recipeinformationcenter.blogspot.com/' target='_blank'> RECIPE INFORMATION CENTER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_sivb-CoR5gDJjoE6sugujctyzuslj4Z3bvbjFHGIcoo5UqzzDFTACEgyYfoF52EhKEbxgRT3jrNmeu1B4ue5kXuC2Yb1PiO84Lm2GZ5bO-1IzHAkUW=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://stationmasternews.blogspot.com/' target='_blank'> STATION MASTER NEWS</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_siEAJv2QUpjKK93hKSzJeoE8F3x4sTmFV-bjvJA5TfnZ5bSRW4Lp3WzcyB2yR-JwGsyg5xFatC95rvievK-CM-oFBBfF7P7vX6PurrzygGt7cD5jDZ=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://biharemployeeinfo.blogspot.com/' target='_blank'> BIHAR EMPLOYEE INFORMATION CENTER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: block;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_uOS-2gACYhFqSlFJdxIPRuJ6sXqIUpILZRUhBvLo9zhsIW8aZgmbvzHfXWi1UAXwjtL6bgNC-G-ADR8wYq086rvZVVduVg6Lqe075YJs96JL3KpRaogy0d=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://informationcenterblog.blogspot.com/' target='_blank'> INFORMATION CENTER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vQNibiO01UOir4w7rL0ywJ5nWSuxA2wOGGdWSnl_4TK0mawwzmn538FC7V6bjwnpJi1eA8i6afZMWdYiJpmILzBY18TpNxtFDAaSMjrISrfdKtJhnI=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://hindicomputerinfo.blogspot.com/' target='_blank'> COMPUTER INFO (HINDI) कंप्यूटर इन्फो (हिंदी)</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_u5afqvumMYJHJyCVBbEdyWLSx-kSQMHvRm1S9Z8joII7oR89t9kDckwm3Z06dugkG6hVqfuwATTcpYzOmnGpPL7BUlrFLkYhuudS_5mGwSk8QivW306c4cE-m1=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://entertainmentnewscentre.blogspot.com/' target='_blank'> ENTERTAINMENT TADKA</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_teqvnlvCbev54GFa1ZEUAJs0J6M1J_lPuvyCYxqYT2Lr2s4CpPEN8r4bYG16E4NLyvX9Ay6jTE0hVc1o_J5ExS5Yqp6DEX4f6xNTSlbMU=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://railmanual.blogspot.com/' target='_blank'> RAILWAY MANUAL & CODES</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tkZkkizLIlzSUz79rihgn6Sh3k_3fV0mrQY0hsCdUmaY_AXvptKU4mBrKKf01I0JdsJ3_6o14EhHk6tfM1Hi3-rm-Uf9a24Ir60LPVAdc9XN0HaYe-NPir5lLXwyEx=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://7thpaycommissionnewscenter.blogspot.com/' target='_blank'> EMPLOYEE NEWS & 7th CPC</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_sSx7wyBe0bASskEN9zpRfNgrPGOQKz7zHAl2XJX7V8y1FLhJOXheTN1k1GlAUF-4IU3s_hiDmzOFsbJP3PsOipst60WMA_1z0LvzPb-JGYUocG=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='https://sochpariwartan.blogspot.com/' target='_blank'> Soch Pariwartan</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_t4nyDN8zUcy3yF64yx0C3jCVXzSh7c9aFllutwRymaHOX6r74XDiYspeVFHxawyk97gil40WyKEAHUf0eXCSr0bS3hczSqqhGFgqyWeiLWPDI=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='http://newsinfocentre.blogspot.com/' target='_blank'> BREAKING NEWS SPECIAL</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_sktLhTLg0LP56-I-e02rxIVQtH2IhgFkroPFhNu6xSbnpOpPbN5Wv9FvTO_GRopDNM4NxfjCo72gnEEKFwhQY4nkYz69Ouh0A3kHEKs3JZBUdl63gY17yIaw=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='http://ladiesinformationcenter.blogspot.com/' target='_blank'> LADIES CORNER</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> <li style='display: none;'> <div class='blog-icon'> <img data-lateloadsrc='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_tY_dIJuZz8gCKjkVfmLbwUu_6ljGFb4dZ6Es2eooFWXG22Uq_NcPtB6zj42J3gCekCo_7kN7RFLoWknSJmQ8YeK03WuNHWRm2APSp66zSxy7I=s16-w16-h16' height='16' width='16'/> </div> <div class='blog-content'> <div class='blog-title'> <a href='http://www.breakingnewsspecial.com/feeds/posts/default' target='_blank'> BREAKING NEWS SPECIAL</a> </div> <div class='item-content'> </div> </div> <div style='clear: both;'></div> </li> </ul> <div class='show-option'> <span id='BlogList1_show-n' style='display: none;'> <a href='javascript:void(0)' onclick='return false;'> Show 10 </a> </span> <span id='BlogList1_show-all' style='margin-left: 5px;'> <a href='javascript:void(0)' onclick='return false;'> Show All </a> </span> </div> <div class='clear'></div> </div> </div> </div><div class='widget HTML' data-version='1' id='HTML7'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div><div class='widget PageList' data-version='1' id='PageList2'> <h2>Pages</h2> <div class='widget-content'> <ul> <li> <a href='https://www.informationcenter.co.in/index1.php?page_id=448'>INDEX - Question Papers - Welfare Inspector</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/q-bank-account.html'>Q Bank - Account & Finance Department</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/indian-railway-departmental-examination.html'>Rly Question Bank, Departmental Exam & Preparation Material</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/q-bank-rajbhasa.html'>Q Bank - Rajbhasa</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_20.html'>Syllabus - Departmental examination Railway</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/establishment-rule-question-bank-answer.html'>Establishment Rule - Question Bank & Answer</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-for-selection-of-sr.html'>Question Bank & Syllabus - Gr 'B' LDCE</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/a.html'>Question Bank - Group D To C</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_2.html'>Question Bank - Goods Guards Selection</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-paper-bank-for-station-master.html'>Question Bank (Operating) - Station Master & Guard Selection</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-papers.html'>Q Bank - For Personnel Dep ( APO / WI /OS / Clerk / Typist)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/ouestion-bank-e.html'>Question Bank - Establishment</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_7.html'>Question Bank - Loco Department</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-paper-bank.html'>Question Paper & Bank - Signal & Telecommunication ( S & T)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_27.html'>Railway Question Bank & Paper - C & W</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_19.html'>Question Bank & Ans - Gr "B" / Guard / Station Master</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_29.html'> RRB Exam (Railway) - Previous Paper with Answer </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/q.html'>Question Bank - TRD / OHE / PSI</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_42.html'>Question Bank - Gr 'B' (ACM)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-papers-for-ldce-apo.html'>Question Bank - Gr 'B' (APO)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-paper-for-ldce-aen.html'>Question Bank - Gr 'B' AEN / ADEN</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/previous-question-paper-ame-30-ldce.html'>Question Bank - Gr 'B' (AME / AWM)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-with-answer-group-b-amm.html'>Q Bank With Ans - Gr ‘B’ AMM ( Stores)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-papers-selection-of.html'>Question Bank - Medical Department, Departmental Examination</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/ac-traction-rolling-stock-question-bank.html'>AC Traction L0CO (Rolling Stock) - Question Bank ...</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_25.html'>Index - Question Bank - LOCO (Diesel)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page.html'>Question Bank - LOCO (Traction) </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question.html'>Question Bank - P WAY / Work</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-with-solution-on-youtube.html'>Question & Answer (New Pattern Exam) on YouTube</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/rrb-exam-railway-previous-paper-answer.html'>RRB Exam (Railway) - Previous Paper & Answer</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/blog-page_80.html'>Rly Q Bank Group D To C Exam (Math)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/p/question-bank-commercial-department.html'>QUESTION BANK - COMMERCIAL DEPARTMENT (INDIAN RAILWAY)</a> </li> </ul> <div class='clear'></div> </div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>Information Center - https://informationcenter.co.in/</h2> <div class='widget-content'> <ul> <li><a class='profile-name-link g-profile' href='https://www.blogger.com/profile/03945463561130103864' style='background-image: url(//www.blogger.com/img/logo-16.png);'>INFORMATION CENTER</a></li> <li><a class='profile-name-link g-profile' href='https://www.blogger.com/profile/02018819402531087254' style='background-image: url(//www.blogger.com/img/logo-16.png);'>SGOOD10001</a></li> </ul> <div class='clear'></div> </div> </div></div> </aside> </div> </div> </div> <div style='clear: both'></div> <!-- columns --> </div> <!-- main --> </div> </div> <div class='main-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> <footer> <div class='footer-outer'> <div class='footer-cap-top cap-top'> <div class='cap-left'></div> <div class='cap-right'></div> </div> <div class='fauxborder-left footer-fauxborder-left'> <div class='fauxborder-right footer-fauxborder-right'></div> <div class='region-inner footer-inner'> <div class='foot section' id='footer-1'><div class='widget HTML' data-version='1' id='HTML3'> <div class='widget-content'> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class='clear'></div> </div></div> <table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-3'> <tbody> <tr> <td class='first columns-cell'> <div class='foot section' id='footer-2-1'><div class='widget PopularPosts' data-version='1' id='PopularPosts2'> <h2>Popular Posts of Month</h2> <div class='widget-content popular-posts'> <ul> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2024/08/rajbhasha-question-answer.html'>राजभाषा वस्तुनिष्ठ प्रश्नोत्तर (RAJBHASHA QUESTIONS & ANSWER FOR DEPARTMENTAL EXAM )</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2025/07/Solved-question-paper-for-compassionate-Appointment-Group-C-Category-Exam.html'>Solved Question Paper - Compassionate Appointment of Group 'C' Category Exam Date 10.07.25</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2025/06/question-paper-answer-sr-clerk-level-5-exam.html'>Question Paper & Answer - Sr.Clerk (L-5) Exam Dated: -23-06-2025 </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2017/11/railway-recruitment-board-rrb-exam.html'>Railway Recruitment Board (RRB) Exam – Question Paper Solved</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2021/05/question-paper-chief-law-assistant-cla.html'>Question Paper -Chief Law Assistant, Level-7 ( Promotional Quota)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/q-bank-d-rules.html'>QUESTION BANK WITH ANSWER - D & A RULES</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2023/09/question-paper-answer-commercial-clerk-cum-ticket.html'>Q Paper & Answer - CCTC (Commercial Clerk-Cum-Ticket Clerk) In L – 3 - Commercial Dept. - dt 14-09-2023</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2024/10/question-paper-of-staff-welfare.html'>Q Paper & Answer of Staff & Welfare Inspector (L - 6) Exam date 20.02.2022</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank.html'>1. For All Operating Departmental Exam - Test -Set 1</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/leave-rules.html'>QUESTION BANK WITH ANSWER - LEAVE RULES</a> </li> </ul> <div class='clear'></div> </div> </div></div> </td> <td class='columns-cell'> <div class='foot section' id='footer-2-2'><div class='widget PopularPosts' data-version='1' id='PopularPosts3'> <h2>Popular Posts Of Year</h2> <div class='widget-content popular-posts'> <ul> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2023/09/question-paper-answer-commercial-clerk-cum-ticket.html'>Q Paper & Answer - CCTC (Commercial Clerk-Cum-Ticket Clerk) In L – 3 - Commercial Dept. - dt 14-09-2023</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2017/11/railway-recruitment-board-rrb-exam.html'>Railway Recruitment Board (RRB) Exam – Question Paper Solved</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/q-bank-d-rules.html'>QUESTION BANK WITH ANSWER - D & A RULES</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2021/05/question-paper-chief-law-assistant-cla.html'>Question Paper -Chief Law Assistant, Level-7 ( Promotional Quota)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2024/08/rajbhasha-question-answer.html'>राजभाषा वस्तुनिष्ठ प्रश्नोत्तर (RAJBHASHA QUESTIONS & ANSWER FOR DEPARTMENTAL EXAM )</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2020/02/railway-question-bank-c-objective_3.html'>Q Bank - C & W (Carriage & Wagon)(हिंदी ) - रिक्त स्थानों की पूर्ती </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2017/07/question-bank-for-selection-rcs-70-for.html'>QUESTION BANK - APO ( ASSISTANT PERSONNEL OFFICER ) IN GROUP 'B' (PERSONNEL) </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2019/04/previous-question-paper-for-welfare_17.html'>PREVIOUS QUESTION PAPER FOR WELFARE INSPECTOR</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2019/11/question-bank-with-answer-for-clerk-cum.html'>Railway Q & A (New Pattern) Establishment Part- 1(भारतीय रेलवे - सामान्य) </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2023/10/questions-paper-welfare-Inspector-Personnel-Department.html'> Q Paper Staff & Welfare Inspector (Personnel Dept.) Dt 17-03-2023</a> </li> </ul> <div class='clear'></div> </div> </div></div> </td> <td class='columns-cell'> <div class='foot section' id='footer-2-3'><div class='widget PopularPosts' data-version='1' id='PopularPosts1'> <h2>All Time Popular Posts</h2> <div class='widget-content popular-posts'> <ul> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/q-bank-d-rules.html'>QUESTION BANK WITH ANSWER - D & A RULES</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2017/12/rajbhasha-questions-answer-for.html'> RAJBHASHA QUESTIONS & ANSWER FOR DEPARTMENTAL EXAM</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/leave-rules.html'>QUESTION BANK WITH ANSWER - LEAVE RULES</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2009/07/pass-rules_20.html'> PASS RULES - QUESTION BANK WITH ANSWER ( SET - 1) - Establishment </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2020/02/railway-question-bank-c-objective_3.html'>Q Bank - C & W (Carriage & Wagon)(हिंदी ) - रिक्त स्थानों की पूर्ती </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2018/03/blog-post.html'>राजभाषा के विभागीय परीक्षाओं में पूछे जानेवाले प्रश्न</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2018/03/question-with-answer-ldce-goods-gaurd_57.html'>Q Bank with Answer - SM & Goods Guard Selection (PART - 3)</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2019/04/previous-question-paper-for-welfare_17.html'>PREVIOUS QUESTION PAPER FOR WELFARE INSPECTOR</a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2019/11/question-bank-with-answer-for-clerk-cum.html'>Railway Q & A (New Pattern) Establishment Part- 1(भारतीय रेलवे - सामान्य) </a> </li> <li> <a href='https://indianrailwayquestionbank.blogspot.com/2019/12/question-bank-group-b-amm-stores.html'>QUESTION BANK WITH ANSWER - GROUP ‘B’ AMM ( Stores) PART I</a> </li> </ul> <div class='clear'></div> </div> </div></div> </td> </tr> </tbody> </table> <!-- outside of the include in order to lock Attribution widget --> <div class='foot section' id='footer-3' name='Footer'><div class='widget HTML' data-version='1' id='HTML1'> <div class='widget-content'> <table style="width: 95%; background-color: #99d9ea;" border="5" cellpadding="5"> <tbody> <tr> <td style="text-align: justify;"> <span style="color: #000000;"> <span style="color: #ff0000;"><strong>Disclaimer:</strong></span>The Information/News/Video provided in this Platform has been collected from different sources. We Believe that “Knowledge Is Power” and our aim is to create general awareness among people and make them powerful through easily accessible Information. <strong><span style="color: #0000ff;">NOTE:</span></strong> We do not take any responsibility of authenticity of Information/News/Videos.</span></td> </tr> </tbody> </table> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- 1AUTO RESPONSIVE SQUARE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-9975449542465924" data-ad-slot="9577148832" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <table style="width: 95%;background-color: #99d9ea; margin-left: auto; margin-right: auto;" border="5" cellspacing="2" cellpadding="2"> <tbody> <tr> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ-GrKKp3t_4aG83Vjlp0gYeydiH41EGBpttmsZWudQbaFQ1tZbiQ" alt="" width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=252" target="_blank"><span style="color: #003300;">Entertainment</span></a></span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="http://directoryplus.in/assets/uploads/type_images/thumb/1426428353_directory_type.png" alt="" width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=343" target="_blank"><span style="color: #003300;">Health</span></a></span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://share.tafensw.edu.au/share/file/f308e22b-e279-4601-a670-abd87a8bc4e0/1/EventsTravel_icon.png" alt="" width="25" height="25" /> </span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=1" target="_blank"><span style="color: #003300;">Travel</span></a> </span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBd3hEfCquXNPkls7ZLgf8KHPrMHnCmwmyL49OPNYox9wcehQKFWiA7kK9XuakU1y6J7-4S2NgSWMcy_2TEiHvkdWeebLts4BKLlhUO7DHYrYYrC5VK93ru4jfRUcgqW-MaJGDJbTmeh8/w188-h133/download.png" alt="" width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.youtube.com/c/InformationcenterCoIn1" target="_blank"><span style="color: #003300;">Our Youtube</span></a></span></p> </td> </tr> <tr> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="http://directoryplus.in/assets/uploads/type_images/thumb/1563542584_directory_type.png" alt="" width="width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=2" target="_blank"><span style="color: #003300;">Rly Employee</span></a></span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="http://directoryplus.in/assets/uploads/type_images/thumb/1426433440_directory_type.jpg" alt="" width="width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=405" target="_blank"><span style="color: #003300;">Employee</span></a> </span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://directoryplus.in/assets/uploads/type_images/thumb/1558174069_directory_type.jpg" alt="" width="width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=133" target="_blank"><span style="color: #003300;">Ladies Corner</span></a></span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://directoryplus.in/assets/uploads/type_images/thumb/1426520216_directory_type.jpg" alt="" width="width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=327" target="_blank"><span style="color: #003300;">Religious</span></a></span></p> </td> </tr> <tr> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://directoryplus.in/assets/uploads/type_images/thumb/1426432614_directory_type.jpg" alt="" width="width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="https://www.informationcenter.co.in/index1.php?page_id=4" target="_blank"><span style="color: #003300;">News Papers & Magazines</span></a></span></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkzuJTxG1Tvp2PM2KBWgorFWXsolch-_hHPP4D9t7QAAeYnVvcBUvxbmBDqEC1VwrjfHqAcVTAmfbPsWly2JVWq5kYvSVrKAnW6qvt0O7YRudNHRcKik4ocraCcPf6vmpSJgAxG-ZJ99s/w149-h163/images+%25285%2529.jpg" alt="" width="width="25" height="25" /></span></p> <p><a href="https://www.informationcenter.co.in/index1.php?page_id=3" target="_blank"><span style="font-size: 12pt; color: #003300;"><span style="color: #003300;">Education & Career</span></span></a></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVlQlXAP8L1j5x5MbwDgREMr9w6CPPSqONUcD_39Phz0XtIq5w7Vyx3UVEIugSuTY9ASpalycjroKrlXUSbHC9pUIPB68fCDb6iNPf5nObjTHESalgyex-Kn1Dx0qXlXvDwYKg1And8kE/s0/gk.jpg" alt="" width="width="25" height="25" /></span></p> <p><a href="http://informationcenter.co.in/index1.php?page_id=16" target="_blank"><span style="font-size: 12pt; color: #003300;"><span style="color: #003300;">General Knowledge</span></span></a></p> </td> <td style="width: 25%; text-align: center;"> <p><span style="font-size: 12pt; color: #003300;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd_SZKldXFwjv7feFDZ0oSu42Fp-GUX3XUmAFkS5uhCZWAfOVzoVdV8pARxz8_ky9fCPSs-wXQiVziWQGhk4tlUAVQj-gOJlkOmaAyCE4SRCm7NazB9LeIngjmkuY1Zwt8pig1zT4n15A/s0/LoginBanner.png" alt="" width="25" height="25" /></span></p> <p><span style="font-size: 12pt; color: #003300;"><a href="http://informationcenter.co.in/index1.php?page_id=6" target="_blank"><span style="color: #003300;">General Information</span></a></span></p> </td> </tr> </tbody> </table> <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9975449542465924" crossorigin="anonymous"></script> </div> <div class='clear'></div> </div><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div></div> </div> </div> <div class='footer-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </footer> <!-- content --> </div> </div> <div class='content-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </div> <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3000588928-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7OMbrJdwlrTCCfYw53YpX4A_Vo-w:1753603131327';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d9194621797982424145','//indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_57.html','9194621797982424145'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '9194621797982424145', 'title': 'Indian Railway Question Bank', 'url': 'https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_57.html', 'canonicalUrl': 'https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_57.html', 'homepageUrl': 'https://indianrailwayquestionbank.blogspot.com/', 'searchUrl': 'https://indianrailwayquestionbank.blogspot.com/search', 'canonicalHomepageUrl': 'https://indianrailwayquestionbank.blogspot.com/', 'blogspotFaviconUrl': 'https://indianrailwayquestionbank.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'G-JECLECVJCQ', 'analytics4': true, 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Indian Railway Question Bank - Atom\x22 href\x3d\x22https://indianrailwayquestionbank.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Indian Railway Question Bank - RSS\x22 href\x3d\x22https://indianrailwayquestionbank.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Indian Railway Question Bank - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/9194621797982424145/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Indian Railway Question Bank - Atom\x22 href\x3d\x22https://indianrailwayquestionbank.blogspot.com/feeds/3943513320323746193/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-9975449542465924', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/8a67ddfb3e3580e6', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': true, 'jumpLinkMessage': 'Read more\xbb', 'pageType': 'item', 'postId': '3943513320323746193', 'pageName': '11. For All Operating Department Exam - Test - Set- 11', 'pageTitle': 'Indian Railway Question Bank: 11. For All Operating Department Exam - Test - Set- 11', 'metaDescription': ''}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': '11. For All Operating Department Exam - Test - Set- 11', 'description': 'A Portal of Railway Question Bank (Examination Paper / Sample Paper, Objective Question with Answer For Various Departmental Exam \x26 Interview).', 'url': 'https://indianrailwayquestionbank.blogspot.com/2025/07/operating-department-question-bank_57.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 3943513320323746193}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML16', 'crosscol', document.getElementById('HTML16'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML11', 'crosscol-overflow', document.getElementById('HTML11'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'crosscol-overflow', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML9', 'main', document.getElementById('HTML9'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'main', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3301882144-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/123180807-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text1', 'main', document.getElementById('Text1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'main', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML12', 'main', document.getElementById('HTML12'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'main', document.getElementById('Label2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'sidebar-left-1', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/about-us.html', 'id': '3504985757666753977', 'title': 'About Us'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML15', 'sidebar-left-1', document.getElementById('HTML15'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar-left-1', document.getElementById('Label1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeaturedPostView', new _WidgetInfo('FeaturedPost1', 'sidebar-left-1', document.getElementById('FeaturedPost1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar-left-1', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar-left-1', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML13', 'sidebar-left-1', document.getElementById('HTML13'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'sidebar-right-1', document.getElementById('HTML8'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML10', 'sidebar-right-1', document.getElementById('HTML10'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML21', 'sidebar-right-1', document.getElementById('HTML21'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML19', 'sidebar-right-1', document.getElementById('HTML19'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogListView', new _WidgetInfo('BlogList1', 'sidebar-right-1', document.getElementById('BlogList1'), {'numItemsToShow': 10, 'totalItems': 18}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'sidebar-right-1', document.getElementById('HTML7'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList2', 'sidebar-right-1', document.getElementById('PageList2'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'https://www.informationcenter.co.in/index1.php?page_id\x3d448', 'title': 'INDEX - Question Papers - Welfare Inspector'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/q-bank-account.html', 'id': '6904195643989309959', 'title': 'Q Bank - Account \x26amp; Finance Department'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/indian-railway-departmental-examination.html', 'id': '6209130949503286029', 'title': 'Rly Question Bank, Departmental Exam \x26amp; Preparation Material'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/q-bank-rajbhasa.html', 'id': '8711421021552817179', 'title': 'Q Bank - Rajbhasa'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_20.html', 'id': '2154857530164050966', 'title': 'Syllabus - Departmental examination Railway'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/establishment-rule-question-bank-answer.html', 'id': '6534780858842641595', 'title': 'Establishment Rule - Question Bank \x26amp; Answer'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-for-selection-of-sr.html', 'id': '4496243219006963389', 'title': 'Question Bank \x26amp; Syllabus - Gr \x26#39;B\x26#39; LDCE'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/a.html', 'id': '4967420595538962719', 'title': 'Question Bank - Group D To C'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_2.html', 'id': '5186982913271125240', 'title': 'Question Bank - Goods Guards Selection'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-paper-bank-for-station-master.html', 'id': '8485000263732906665', 'title': 'Question Bank (Operating) - Station Master \x26amp; Guard Selection'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-papers.html', 'id': '922104610811982281', 'title': 'Q Bank - For Personnel Dep ( APO / WI /OS / Clerk / Typist)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/ouestion-bank-e.html', 'id': '8650367281338142794', 'title': 'Question Bank - Establishment'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_7.html', 'id': '2923007632765796598', 'title': 'Question Bank - Loco Department'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-paper-bank.html', 'id': '8734552865992887848', 'title': 'Question Paper \x26amp; Bank - Signal \x26amp; Telecommunication ( S \x26amp; T)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_27.html', 'id': '5346713896479009793', 'title': 'Railway Question Bank \x26amp; Paper - C \x26amp; W'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_19.html', 'id': '994955176883043899', 'title': 'Question Bank \x26amp; Ans - Gr \x26quot;B\x26quot; / Guard / Station Master'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_29.html', 'id': '6577310799536558994', 'title': ' RRB Exam (Railway) - Previous Paper with Answer '}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/q.html', 'id': '289477501740126729', 'title': 'Question Bank - TRD / OHE / PSI'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_42.html', 'id': '2676928177331004376', 'title': 'Question Bank - Gr \x27B\x27 (ACM)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-papers-for-ldce-apo.html', 'id': '3639831907044787531', 'title': 'Question Bank - Gr \x27B\x27 (APO)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-paper-for-ldce-aen.html', 'id': '398779694292981846', 'title': 'Question Bank - Gr \x27B\x27 AEN / ADEN'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/previous-question-paper-ame-30-ldce.html', 'id': '4084032281517812822', 'title': 'Question Bank - Gr \x27B\x27 (AME / AWM)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-with-answer-group-b-amm.html', 'id': '3502709514458780534', 'title': 'Q Bank With Ans - Gr \u2018B\u2019 AMM ( Stores)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-papers-selection-of.html', 'id': '4199802972058430167', 'title': 'Question Bank - Medical Department, Departmental Examination'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/ac-traction-rolling-stock-question-bank.html', 'id': '930438210416386297', 'title': 'AC Traction L0CO (Rolling Stock) - Question Bank ...'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_25.html', 'id': '3532209521490085603', 'title': 'Index - Question Bank - LOCO (Diesel)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page.html', 'id': '3367772269491904052', 'title': 'Question Bank - LOCO (Traction) '}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question.html', 'id': '7494074928609683585', 'title': 'Question Bank - P WAY / Work'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-with-solution-on-youtube.html', 'id': '459110982234384784', 'title': 'Question \x26amp; Answer (New Pattern Exam) on YouTube'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/rrb-exam-railway-previous-paper-answer.html', 'id': '7541422871143010778', 'title': 'RRB Exam (Railway) - Previous Paper \x26amp; Answer'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/blog-page_80.html', 'id': '7720637610734936871', 'title': 'Rly Q Bank Group D To C Exam (Math)'}, {'isCurrentPage': false, 'href': 'https://indianrailwayquestionbank.blogspot.com/p/question-bank-commercial-department.html', 'id': '3684475584259152555', 'title': 'QUESTION BANK - COMMERCIAL DEPARTMENT (INDIAN RAILWAY)'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar-right-1', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'footer-1', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts2', 'footer-2-1', document.getElementById('PopularPosts2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts3', 'footer-2-2', document.getElementById('PopularPosts3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'footer-2-3', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'footer-3', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull')); </script> </body> </html>