Close

Contractual Staff

 

body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
padding: 20px;
}
.faq-container {
width: 80%;
max-width: 800px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.faq-item {
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
}
.faq-question {
font-size: 18px;
font-weight: bold;
padding: 15px;
background: #f1f1f1;
cursor: pointer;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-answer {
padding: 15px;
display: none;
font-size: 16px;
background: white;
}
.faq-question:hover {
background: #e0e0e0;
}

 

Contractual Staff – FAQ

+ What are the service rules to teachers engaged on a contractual basis?
  • The teacher should possess the required educational qualifications prescribed for direct recruitment.
  • Minimum and maximum age limit shall be 18 and 65 years respectively.
  • Engagement is valid until a regular teacher joins or the academic session ends.
  • Past contractual teachers may be considered for fresh appointments through the selection committee.
  • Teachers must accept formal terms and conditions outlined in the offer.
+ What are the duties of the teacher engaged on a contractual basis?

The teacher is responsible for lesson planning, student engagement, classroom management, and assessments as per school guidelines.

+ Give a brief on the process of engaging a contractual teacher?

The selection is done through an interview process, based on eligibility and qualification criteria, conducted by a selection committee.

+ What are the norms for payment for contractual teachers?

Payment is based on a fixed monthly salary structure set by the institution.

function toggleAnswer(index) {
let answers = document.querySelectorAll(“.faq-answer”);
let questions = document.querySelectorAll(“.faq-question”);

if (answers[index].style.display === “block”) {
answers[index].style.display = “none”;
questions[index].innerHTML = “+ ” + questions[index].textContent.slice(2);
} else {
answers.forEach(answer => answer.style.display = “none”);
questions.forEach(question => question.innerHTML = “+ ” + question.textContent.slice(2));

answers[index].style.display = “block”;
questions[index].innerHTML = “- ” + questions[index].textContent.slice(2);
}
}