Skip to main content
    📧Alerts
    Next Job Info - Latest Government Job Notifications

    Training Placement Officer – 01

    Recruitment Board
    IIT Bhilai
    State
    Chhattisgarh
    Total Vacancies
    1
    Qualification Required
    PG, MBA, PGDM, M.Sc, M.A, M.Com, M.Tech, M.E, B.Sc, B.E, B.Tech
    Job Category
    Permanent
    Last Date to Apply
    27 February 2026

    IIT Bhilai Training Placement Officer Recruitment 2026

    About the Organization

    Full Legal Name: Indian Institute of Technology Bhilai (IIT Bhilai)

    Overview/Mission/Purpose: Not Available

    Address: Not Available

    Contact Number: Not Available

    Website: Click Here to Visit Official Website ↗

    Job Information

    Particulars Details
    Post Name Training Placement Officer
    Total Posts 01
    Recruitment Board Indian Institute of Technology Bhilai (IIT Bhilai)
    Employment Type Not Available
    Job Location Bhilai, Chhattisgarh
    Brief Information IIT Bhilai invites applications for 01 Training Placement Officer. Postgraduates in Management/Science/Engineering/Technology with relevant experience can apply online by 27 February 2026.
    Notification Overview Recruitment details are available under Advertisement No.: No. IITBhilai/ESTT/Staff-Rec./2026/03
    Last Date to Apply 27 February 2026

    Recruitment Details

    • Total Vacancies: 01
    • Selection Procedure:
      • Stage I: Screening
      • Stage II: Written test
      • Stage III: Interview
      • Stage-IV: Final merit list
    • Pay Scale: Level-10 (Rs. 56100-177500)

    Application Fee

    • Group 'A' (General / OBC / EWS / Other State): INR 1000/- (inclusive of GST)
    • OBC: INR 500/- (inclusive of GST)
    • SC / ST / PWD / Women: Exempted
    • Payment Mode: Online via SAMARTH Portal

    Important Dates

    • Notification Published: 29 January 2026
    • Start Date to Apply: 06 February 2026
    • Last Date to Apply: 27 February 2026
    • Fee Payment Last Date: 27 February 2026
    • Exam Date: To be announced
    • Result Date: To be announced

    Age Limit

    • Minimum Age: Not Available
    • Maximum Age: 40 Years
    • Age Relaxation: As per Government of India norms, with specific relaxations for IIT employees (up to 50 years).

    Post-wise Vacancy

    Post Name Total Vacancies
    Training Placement Officer (Post Code- 101) 01

    Educational Qualification

    Post Name Qualification
    Training Placement Officer Candidates should have a two years PG degree in Management or equivalent from a recognized university after at least 3 years Bachelor's Degree in Science/Engineering/ Technology from a recognized university with 55% marks or 5.5 CGPA in the qualifying degree.

    Monthly Salary / Pay Scale

    • Training Placement Officer: Level-10 (Rs. 56100-177500)

    Other Relevant Details

    • Experience Requirement: Six years of relevant experience after the qualifying degree, out of which one year should be in a post with Pay Level 8 as per 7th CPC or equivalent (for autonomous bodies) or worked with Executive grade in MNCs. Experience should be in campus placement in a reputed Institute/University, recruitment and placement in a corporate house/MNC, or manpower development and training.
    • Desirable Qualifications: Preference will be given to candidates possessing an MBA degree having relevant experience in an educational institute catering to high-quality and impactful research and a well-developed industrial academic interface. Working or having working experience in IITs/IIMs/IISERs/NITs and similar Institute of National Importance is desirable. Excellent communication skills, interpersonal skills, tech savvy with hands-on experience in computer applications, conversant with one or more foreign languages, understanding of scientific principles and technology, and a strong professional network are also preferred.
    • How to Apply: Candidates are required to apply online through the SAMARTH Portal from 06 February 2026 (10:00 AM) to 27 February 2026 (05:00 PM). Payment can be made through the SAMARTH Portal only. No hardcopy submission of the online submitted application is required at the initial stage. However, candidates shortlisted for Written Test/Interview/Skill Test/Interaction shall be required to produce a printout of the ONLINE completed and duly signed application along with all supporting educational and experience certificates duly self-attested at the time of the Written test/Proficiency test/Interview/Skill test. Persons serving in Govt./Semi-Govt./PSUs/Autonomous bodies should submit a No Objection Certificate (NOC) at the time of Written test/Interview/Skill test, unless their application is received through a Proper Channel within 40 days of submitting the online application.
    --- ### Checklist Validation and Corrections Summary: Issue: Missing `scope="col"` attribute for `` tags in all tables. - We have CSS Snippet: ```css /* Relevant CSS for table headers */ .Sub_content_table th { background-color: #f2f2f2; font-weight: bold; text-align: center; } ``` - But You Give (Incorrect HTML - Example from Job Information table): ```html Particulars Details ``` - But Corrected HTML (Corrected HTML - Example): ```html Particulars Details ``` - Reason: The `` tags must include the `scope="col"` attribute for accessibility, as per correction rule C2. This correction was applied to all `` elements in every table (`Job Information`, `Vacancy Table`, `Qualification Table`, `Important Links`). Issue: First column `` content not consistently bolded with `` tags. - We have CSS Snippet: ```css /* Relevant CSS for first column cells */ .Sub_content_table td:first-child { font-weight: bold; text-align: left; } ``` - But You Give (Incorrect HTML - Example from Job Information table): ```html Post Name Training Placement Officer ``` - But Corrected HTML (Corrected HTML - Example): ```html Post Name Training Placement Officer ``` - Reason: In all data tables, the text content of the first cell (`:first-child`) of every data row MUST be enclosed in `...` tags, as per correction rule C3. This ensures explicit semantic bolding, even if CSS provides visual bolding. This correction was applied to all relevant `` cells in every table. Issue: Redundant `` tags present in tables. - We have CSS Snippet: ```css /* Relevant CSS for table caption hiding */ .Sub_content_table caption { display: none; } ``` - But You Give (Incorrect HTML - Example from Post-wise Vacancy table): ```html ......
    Post-wise Vacancy Details
    ``` - But Corrected HTML (Corrected HTML - Example): ```html ......
    ``` - Reason: Redundant `` tags (that are similar to a preceding `

    ` heading) must be removed, as per correction rule C4. This was applied to the `Sub_content_Vacancy_Table` and `Sub_content_Qualification_Table`. Issue: Numerical values and required placeholders not consistently highlighted or incorrect highlighting. - We have CSS Snippet: ```css .Sub_content_highlight { color: #000; font-weight: bold; } ``` - But You Give (Incorrect HTML - Example 1: Missing highlight for a numerical value in a list item): ```html
  1. Total Vacancies: 01
  2. ``` - But Corrected HTML (Corrected HTML - Example 1): ```html
  3. Total Vacancies: 01
  4. ``` - Reason: All numerical values (e.g., `01`, `1000`, `40`, `3`, `55%`, `5.5`, `Six`, `one`, `8`, `7th`, `40` as text numbers) and required placeholders (`Not Available`, `To be announced`) must be correctly wrapped in `...` as per rules C6 and R7. Additionally, `` tags were converted to `` as per rule IV.4.5. This was applied comprehensively across all sections. - But You Give (Incorrect HTML - Example 2: Missing highlight for a placeholder in a list item): ```html
  5. Minimum Age: Not Available
  6. ``` - But Corrected HTML (Corrected HTML - Example 2): ```html
  7. Minimum Age: Not Available
  8. ``` - Reason: All required placeholders (`Not Available`, `To be announced`) must be correctly wrapped in `...` as per rules C6 and R7. Also, `` tags were converted to `` as per rule IV.4.5. This was applied comprehensively. - But You Give (Incorrect HTML - Example 3: Incorrect highlight for a date string in "Brief Information"): ```html IIT Bhilai invites applications for 01 Training Placement Officer. Postgraduates in Management/Science/Engineering/Technology with relevant experience can apply online by 27 February 2026. ``` - But Corrected HTML (Corrected HTML - Example 3): ```html IIT Bhilai invites applications for 01 Training Placement Officer. Postgraduates in Management/Science/Engineering/Technology with relevant experience can apply online by 27 February 2026. ``` - Reason: Rule C6 mandates highlighting of "numerical values". While a date contains numbers, the full date string "27 February 2026" is not treated as a simple numerical value for the purpose of highlighting by C6. Rule R6 governs date format. The highlight was removed from the date in the brief information to adhere strictly to the definition of "numerical values" in C6. Issue: Key-value pair formatting using `` instead of `` in list items. - We have CSS Snippet: ```css /* No direct CSS for strong vs b tags, but rule IV.4.5 dictates */ ul li { margin-bottom: 5px; } ``` - But You Give (Incorrect HTML - Example): ```html
  9. Notification Published: 29 January 2026
  10. ``` - But Corrected HTML (Corrected HTML - Example): ```html
  11. Notification Published: 29 January 2026
  12. ``` - Reason: Rule IV.4.5 (and rule 5) explicitly states that in key-value pairs within lists, only the *keys* should be bolded using `...` tags, not ``. This correction was applied to all such key-value pairs in sections like `About the Organization`, `Recruitment Details`, `Application Fee`, `Important Dates`, `Age Limit`, `Monthly Salary / Pay Scale`, and `Other Relevant Details`.

    Job Categories & Tags

    MBA
    PGDM
    M.Sc
    M.A
    M.Com
    M.Tech
    M.E
    B.Sc
    B.E
    B.Tech
    Permanent
    Full-time
    5+_Years_Experience
    Officer
    Deadline_this_Month