Advertisements
Advertisements
प्रश्न
Define a class to accept a string, convert it into lowercase and check whether the string is a palindrome or not.
A palindrome is a word that reads the same backward as forward.
Example:
madam, racecar etc.
उत्तर
public class Palindrome
{
public static void main(String args[])
{
String a, b = "";
Scanner s = new Scanner(System.in);
System.out.print("Enter the string you want to check:");
a = s.nextLine();
a = a.toLowercase();
int n = a.length();
for{int i = n - 1; i >= 0; i--)
{
b = b + a.charAt(i);
}
if( a;equalsIgnoreCase(b))
{
System.out.println("The string is palindrome.");
}
else
{
System. out.println("The string is not a palindrome.");
}
}
}
APPEARS IN
संबंधित प्रश्न
Write the return data type of the following function:
endsWith( )
Give the output of the following string methods.
"MISSISSIPPI".indexOf('S') + "MISSISSIPPI".lastIndexOf('I')
The String class method to join two strings is ______.
The output of the function "COMPOSITION". substring(3, 6):
Give the output of the following String class method:
"devote". compareTo("DEVOTE")
Define a class to accept a String and print the number of digits, alphabets and special characters in the string.
Example: | S = "KAPILDEV@83" |
Output: | Number of digits - 2 ' Number of Alphabets - 8 Number of Special characters - 1 |
int x = 98; char ch = (char)x; what is the value in ch?
The output of the statement "CONCENTRATION" indexOf('T') is ______.
The output of the statement "talent". compareTo("genius") is ______.
Consider the array given below:
char ch[]={'A','E','I','O','U'};
Write the output of the following statements:
System.out.println(ch[0]*2);;