11, సెప్టెంబర్ 2025, గురువారం

HOW TO WRITE RESIGNATION LETTER FOR AN ENGINEERING COLLEGE, IN AN OFFICIAL MANNER …Mr.RAM. A. DAYINABOYINA ...................................DURING A NOTICE PERIOD, YOU ARE GENERALLY EXPECTED TO CONTINUE YOUR USUAL DUTIES, COMPLETE PENDING PROJECTS, AND ASSIST WITH THE HANDOVER OF RESPONSIBILITIES TO ENSURE A SMOOTH TRANSITION FOR YOUR SUCCESSOR. YOU SHOULD NOT TAKE ON SIGNIFICANT NEW WORK OR PROJECTS .

ఒక ఇంజనీరింగ్ కళాశాలకు రాజీనామా లేఖను అధికారిక పద్ధతిలో ఎలా రాయాలి ... ................................. శ్రీ రామ్. ఎ. దయినాబోయిన

RESIGNATION LETTER

From:

M.VIJAYAKUMAR,

Lecturer,

Department of Mechanical Engineering,

SRG Engineering College,

Namakkal.

To

THE PRINCIPAL,

SRG Engineering College,

Namakkal.

Respected sir,

SUB: requisition for resignation reg:

                         As I am working as a lecturer last five months in SRG Engineering College

in the Department of Mechanical Engineering. I am going to resign my job due to

insufficient salary. I have more than one year experience but not consider my experience

last five months, for which I want leave from our college. So please accept my resignation

letter and relieve me, And I am also want my original certificates and experience

certificates.

Thanking you,

Date: Yours sincerely,

Place: Namakkal

(VIJAYAKUMAR.M)


important information about notice period....

A valid notice period in a private engineering college depends on the college's policies, as outlined in your employment contract or appointment letter. While there's no universal rule, common notice periods range from one to maximum of three months


1, సెప్టెంబర్ 2025, సోమవారం

Mr.Ram@jntuh............

 

S C M.........at JNTU HYDERABAD..........................

 At Jawaharlal Nehru Technological University (JNTUH), "faculty SCM" refers to Faculty Selection Committee Minutes or the process of ratifying faculty qualificationsThese minutes document the decisions of a committee that interviews candidates and assesses their qualifications for faculty positions, a process critical for granting affiliation to the university's colleges. 

Here's a breakdown of the meaning:
  • Faculty: Refers to the teaching staff at JNTUH's affiliated colleges. 
  • SCM: Stands for Selection Committee Minutes. 
  • Purpose:
    • The minutes are generated by the university's Selection Committee, which includes university nominees and college representatives, to select and ratify the qualifications of faculty members for affiliated colleges. 
    • This process is essential for ensuring that colleges meet the university's standards for qualified faculty and maintain proper faculty-student ratios. 
    • Colleges upload their faculty data and SCM/ratification letters to the JNTUH portal for the university's approval. 
Why it's important:
  • Affiliation:
    JNTUH uses the faculty SCM process to verify the eligibility of faculty and grant or renew the affiliation of its colleges. 
  • Compliance:
    It ensures that colleges adhere to the university's norms and qualified faculty standards, especially for new technology courses, reports The Hans India. 
  • Quality Assurance:
    The ratification of qualifications through the SCM process contributes to maintaining the academic quality of JNTUH's affiliated institutions. 

 def reverse_string_slicing(s):

    """Reverses a string using slicing."""

    return s[::-1]


# Example usage

input_string = "hello"

reversed_string = reverse_string_slicing(input_string)

print(f"Original: {input_string}, Reversed: {reversed_string}")



from collections import Counter


s = "Python is Fun!"

v = "aeiouAEIOU"

cnt = Counter([i for i in s if i in v])

print(cnt)


my_list = [1, 2, 3, 1, 4, 2, 1, 5]

item_to_count = 1

count = my_list.count(item_to_count)

print(f"The item {item_to_count} appears {count} times in the list.")