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
“Perl regular expressions match the longest string possible”. What is the name of this match?
Difference between the variables in which chomp function work ?
What do you mean by context of a subroutine?
What is the main function of cookie server?
How to find the length of an array in perl?
Explain about typeglobs?
Which feature of perl provides code reusability?
Which functions in perl allows you to include a module file. State their differences.
Explain 'grep' function.
What $! In perl?
What is posix in perl?
List all the features of perl programming?
what is Polymorphism in Perl?
What is goto statement in perl?
What are some of the key features of objects in perl?