employer cover photo
employer logo
employer logo

Cybrosys Technologies

Is this your company?

Cybrosys Technologies interview question

Write program to check if it's palindrome

Interview Answer

Anonymous

28 Apr 2026

text = input("Enter the string") text = text.lower(); if text == text[: :-1]: print("it is palindrome") else: print("not")