Write a program to check if a string is a palindrome.

AnswerBot
1y

This program checks if a given string is a palindrome or not.

  • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

  • To check if a string is a ...read more

ABHISEKHA BHUYAN
1y

Public class javaIsPallindrome

Public static boolean main(String args []])

{

String s1="papap";

if(isPallindrome(s1))

{

System.out.println("pallindrome");

}

else

{

System.out.println("not pallindrome");

}

}

Public...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.");

}

}

Select
Add answer anonymously...

TCS Assistant System Engineer interview questions & answers

An Assistant System Engineer was asked 1mo agoQ. What is an API?
An Assistant System Engineer was asked 3mo agoQ. Explain your graduation project in detail.
An Assistant System Engineer was asked 3mo agoQ. Briefly describe the different types of joins in SQL.

Popular interview questions of Assistant System Engineer

An Assistant System Engineer was asked 1mo agoQ1. What is an API?
An Assistant System Engineer was asked 3mo agoQ2. Explain your graduation project in detail.
An Assistant System Engineer was asked 3mo agoQ3. Briefly describe the different types of joins in SQL.

Top HR questions asked in TCS Assistant System Engineer

An Assistant System Engineer was asked 4d agoQ1. Where do you want to see yourself in 5 years?
An Assistant System Engineer was asked 3w agoQ2. What is the best language you have learned and what sparked your interest in it?
An Assistant System Engineer was asked 3w agoQ3. What was your major project?
TCS Assistant System 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