Write code to check if a string is a palindrome.

AnswerBot
2y

Code for palindrome checking

  • Convert the input to lowercase to ignore case sensitivity

  • Use two pointers, one at the start and one at the end of the string

  • Compare the characters at both pointers and move...read more

Komal Goswami
2y

import java.util.*;

class PalindromeExample2

{

public static void main(String args[])

{

String original, reverse = ""; // Objects of String class

Scanner in = new Scanner(System.in);

System.out.println("Enter a string/number to check if it is a palindrome");

original = in.nextLine();

int length = original.length();

for ( int i = length - 1; i >= 0; i-- )

reverse = reverse + original.charAt(i);

if (original.equals(reverse))

System.out.println("Entered string/number is a palindrome.");

else

System.out.println("Entered string/number isn't a palindrome.");

}

}

laxmi yadav
2y

a="palidrom"

b=(a[-1::-1])

if a==b:

print("palidrome")

else:

print("not palidrome")

Select
Add answer anonymously...

Barclays Software Engineer interview questions & answers

A Software Engineer was asked 5mo agoQ. Given a sorted array that has been rotated at some pivot, how would you sort it?
A Software Engineer was asked Q. How can you swap two numbers without using a temporary variable?
A Software Engineer was asked Q. Write any JavaScript code.

Popular interview questions of Software Engineer

A Software Engineer was asked 5mo agoQ1. Given a sorted array that has been rotated at some pivot, how would you sort it?
A Software Engineer was asked 5mo agoQ2. How does polymorphism work?
A Software Engineer was asked Q3. How can you swap two numbers without using a temporary variable?
Barclays Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits