Design A Form To Check Whether A Passed String Is Palindrome or Not.
Design A Form To Check Whether A Passed String Is Palindrome or Not.
MICROPROJECT REPORT
ON
“Design a form to check whether a passed string is
palindrome or not.”
SUBMITTED
BY
14 Sejal Thorat
61 Ashutosh Salave
Under Guidance of -
Mrs. S. M. Mate
PUNE - 411041
ACADEMIC YEAR 2020-2021
Maharashtra State
Board of technical Education
Certificate
This is to certify that Ms. Rutuja Ravikiran Limkar with Roll
No. 25 of Fifth Semester of Diploma in Computer Technology of
Institute Sou. Venutai Chavan Polyechnic (Code : 0040) has
successfully completed the Micro-Project in Client Side
Scripting Language (22519) for the academic year 2020-2021.
Certificate
This is to certify that Ms. Sejal Ganesh Thorat with Roll No. 14
of Fifth Semester of Diploma in Computer Technology of
Institute Sou. Venutai Chavan Polyechnic (Code : 0040) has
successfully completed the Micro-Project in Client Side
Scripting Language (22519) for the academic year 2020-2021.
SR NO CONTENTS PAGE NO
1 Rationale 3
4 Literature Review 4
6 Output of microproject 6
8 Skills Developed 8
Annexure - I
Rutuja Limkar
Searched and selected the
1 02/09/2020 08/09/2020
topic for microproject. Sejal Thorat
Rutuja Limkar
Discussed about the micro
2 09/09/2020 15/09/2020
project. Sejal Thorat
Rutuja Limkar
Distributed the work
3 16/09/2020 22/09/2020
accordingly. Sejal Thorat
Rutuja Limkar
4 Collected and gathered the 23/09/2020 30/09/2020
required data. Sejal Thorat
Rutuja Limkar
5 Started working on the 03/10/2020 09/10/2020
code. Sejal Thorat
Rutuja Limkar
6 Created the first basic steps 10/10/2020 16/10/2020
for the project. Sejal Thorat
Rutuja Limkar
7 Debugged the errors. 02/11/2020 09/11/2020
Sejal Thorat
Rutuja Limkar
Analyze the report and
8 make changes if required. 06/12/2020 12/12/2020 Sejal Thorat
Ashutosh Salave
Rutuja Limkar
9 Edited and prepared the 14/12/2020 21/12/2020 Sejal Thorat
final report.
Ashutosh Salave
Team Members
Roll No. Name
25 Rutuja Limkar
14 Sejal Thorat
61 Ashutosh Salave
Annexure – II
Micro-Project Report
On
“Design a form to check whether a passed string is
palindrome or not.”
6.0 Rationale –
A palindrome is a word, number, phrase, or other sequence of characters which reads
the same backward as forward. There are also numeric palindromes, including date/time
stamps using short digits 11/11/11 11:11 and long digits 02/02/2020. Sentence-length
palindromes ignore capitalization, punctuation, and word boundaries.
The word palindrome was introduced by Henry Peacham in 1638. It is derived from the
Greek roots 'again' and 'way, direction'; a different word is used in Greek, 'carcinic'
(lit. crab-like) to refer to letter-by-letter reversible writing. In recent history, there have
been competitions related to palindromes, such as the 2012 World Palindrome
Championship, set in Brooklyn, USA. The longest palindromic word in the Oxford
English Dictionary is the onomatopoeic tattarrattat, coined by James Joyce
in Ulysses (1922) for a knock on the door.
Palindrome examples-
Below are a few example of Palindrome
1. Mom
2. Madam
3. Dad
4. Level
5. civic
• Split(): Split function will split the string into individual characters.
• Reverse(): Reverse function will reverse the string which is output from the above
function. This means the string will be starting from the last character reading
character by character until the first character.
• Join(): Join function will join the characters which were output in reverse fashion
from the above function.
Code-
<!DOCTYPE html>
<html>
<head>
<script type="text/JavaScript">
function myFunction()
{
var str = document.getElementById('txtbox').value;
orignalStr = str;
str = str.split('');
str = str.reverse();
str = str.join('');
if(orignalStr == reverseStr)
{
return 'Palindrome';
}
else
{
return 'Not Palindrome';
}
}
</script>
</head>
<body>
<form>
<h4><a href=""></a></h4>
1. After working on the allotted microproject topic, We gained various skills like
working in team, making coordination between team members.
2. This project also made me increase my programming skills.
3. Such project work increases our knowledge other from the regular course work.
4. We learnt about palindrome using built-in method.
5. We learnt various methods of palindrome.
2. Most of the poet use palindrome phrases in their poetry so that it is easy to
understand to children.
3. There are many more complicated palindromes poetry. Once you’ve mastered
writing simple palindromes, writing a palindrome poem can be an exciting way to
put your skills to the test.