A few days ago
me

What is a palindrome ? What are palindromic numbers. How can we generate a palindrome from a given number.?

What is a palindrome ? What are palindromic numbers. How can we generate a palindrome from a given number.?

Top 8 Answers
A few days ago
jemhasb

Favorite Answer

hannah. nun, and words such as these – same back as forward.

11, 101, 12233221, etc

numbers same backwards as forwards.

generate them? just repeat the same digits in the reverse order.

0

A few days ago
nike767
A palindrome is any sequence of numbers or letters (or symbols I suppose) that read the same forwards as they do backwards. A numerical palindrome could be 1234321, while the word racecar is a palindrome composed of letters. I’m not sure what you mean by “generating” a palindrome, though.
0

A few days ago
stever002
A palindrome is a phrase or word that is the same forward and backwards. Example:

bob

hannah

a man, a plan, a canal, panama

Each of the above spells the same thing forward and backwards.

Palindromic numbers:

11

1221

123321

0

A few days ago
Mac
A palindrome is anything that when reversed in direction(i.e right to left or vice versa),is the same.Eg. anna,12321,etc.

0

A few days ago
Anonymous
Palindrome is something that reads alike from both right and left. Like MALAYALAM.

The algorithm of making palindome will be (pseudo code)

Function PalindromeNumber(num: Integer): String; // Return Value

Result := Str(Num) + StrRev(Str(Num));

Convert the Number to String and Reverse It and add to the original string

123 becomes 123321

0

A few days ago
BlahBlahBlah
a palindrome is something that is the same when read forwards and backwards. such as mom, dad, and racecar (racecar spelled backwards is r a c e c a r. palindromic numbers are the same like 1234321. That is how you’ll get your number so like if they gave you 5867567 you could do 5678765
0

A few days ago
……
a palindrom is a word that is spelled exactly the same frontwards and backwards. example: race car, hannah, mom, dad, wow

numbers: 787 220022, 121, etc u get the picture!

hope that helps!

0

A few days ago
aisha
A word, number or even a sentence that can be reversed letter for letter or digit by digit and still remain the same. My favorite sentence is: Rats live on no evil star.
0