write a script to display mirror image of a entered value
and also check whether Palindrome

Answer Posted / dheeraj

print("Enter the no. to check for Palindrome : ");
my $no = <STDIN>;
chop($no);
my $rev =reverse($no);

print "Palindrom \n" if ($rev eq $no);

#Perl cannot identify the datatype until we force operation
on it;

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

“Perl regular expressions match the longest string possible”. What is the name of this match?

707


Difference between the variables in which chomp function work ?

796


What do you mean by context of a subroutine?

732


What is the main function of cookie server?

706


How to find the length of an array in perl?

748


Explain about typeglobs?

701


Which feature of perl provides code reusability?

736


Which functions in perl allows you to include a module file. State their differences.

689


Explain 'grep' function.

737


What $! In perl?

689


What is posix in perl?

692


List all the features of perl programming?

667


what is Polymorphism in Perl?

703


What is goto statement in perl?

690


What are some of the key features of objects in perl?

700