Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

Sahyadri Shikshan Santha’s

SAHYADRI POLYTECHNIC SAWARDE

MICRO PROJECT

ON

“Chess Board”
Submitted To

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

IN THE PARTIAL FULFILLMENT OF THE REQUIRMENT FOR DIPLOMA IN INFORMATION


TECHNOLOGY SUBMITTED BY

Mr. Deep Sanjay Jadhav

Mr. Soham Sunil Raut

Mr. Abdul Rahiman Hanif Kasu

UNDER THE GUINDANCE OF

Mr. Gawade E. N.
Year

2023-2024
SAHYADRI POLYTECHNIC SAWARDE

MICRO PROJECT

Academic Year: 2023-24

TITLE OF PROJECT
Chess Board

Program: TY.IF Program Code: IF6I


Course: WBP Course Code: 22619

Group Details:

TITLE OF PROJECT: Chess Board

Sr Name of group members Roll Enrollment Number Seat Number


No Number
1 Mr. Deep Sanjay Jadhav 3503 2101080003

2 Mr. Soham Sunil Raut 3525 2101080008

3 Mr. Abdul Rahiman Hanif Kasu 3526 2101080009


Name of Guide: Mr. Gawade E. N.

MAHARASHTRA STATE BOARD TECHNICAL EDUCATION

Certificate
This is to certify that Mr. Deep Sanjay Jadhav, Mr. Soham Sunil Raut and Mr. Abdul Rahiman Hanif
Kasu, Roll no: 3503-25-26 Of 6th semester diploma in Information Technology of Sahyadri polytechnic
Sawarda (Code:0108) has completed the Micro Project satisfactory in subject WBP for the academic year
2023-24 as prescribed in the curriculum.

Place: Sawarde Enrollment Number : 2101080003

2101080008

2101080009

Date: _______________ Exam Seat No: __________________

Subject Teacher HOD Principal


Micro Project Report

Title: Chess Board

1.0 Rationale: -
A chessboard is a gameboard used to play chess. It consists of 64 squares, 8 rows by 8 columns,
on which the chess pieces are placed. It is square in shape and uses two colours of squares, one
light and one dark, in a chequered pattern. During play, the board is oriented such that each
player's near-right corner square is a light square.
The columns of a chessboard are known as files, the rows are known as ranks, and the lines of
adjoining same-coloured squares (each running from one edge of the board to an adjacent
edge) are known as diagonals. Each square of the board is named using algebraic, descriptive,
or numeric chess notation; algebraic notation is the FIDE standard. In algebraic notation, using
White's perspective, files are labeled a through h from left to right, and ranks are labeled 1
through 8 from bottom to top; each square is identified by the file and rank which it occupies.
The a- through d-files comprise the queenside, while the e- through h-files comprise the
kingside.

2.0 Aims/Benefits of the Micro-Project: -


1) Chess is an affordable game that helps improve intellectual capabilities, and encourages
inclusivity and tolerance, mutual respect and fairness among people.

2) It has an important part to play in the UN's Sustainable Development Goals and the 2030
Agenda for Sustainable Development, as noted on the UN website.

3) Chess is the gymnasium of the mind.

4) Chess has been proven to increase your IQ, improve memory function, help develop higher
levels of creativity, simultaneously exercise both sides of the brain, help prevent Alzheimer's and
dementia, and increase a child's problem solving skills.

3.0 Course Outcomes Achieved: -


a) Develop program using control statement.

b) Develop programs by applying various object oriented concepts.


c) Perform operations based on arrays graphics.
4.0 Literature review: -
Chessboards have been made from numerous materials over the years, such
as ebony, ivory, marble, metal, glass, and plastic. They can also be found as decorative elements in
plazas, gardens, and living rooms.
High-level games generally use wooden boards, while vinyl, plastic, and cardboard are common
for less important tournaments and matches, as well as for home use. Additionally, some very
large chessboards are built into or drawn on the ground. Rarely, decorative glass and marble
boards are permitted for games conducted by national or international chess federations.
Wooden boards are traditionally made of unstained woods that are light brown and dark brown in
colour. To reduce cost, some boards are made with veneers of more expensive woods glued to an
inner piece of plywood or chipboard. A variety of colour combinations are used for plastic, vinyl,
and silicone boards. Common dark-light combinations are black and white, as well as brown,
green or blue with buff or cream.
The board may also be made of marble, as long as there is an appropriate contrast between the
light and dark squares. The finishing should be neutral or frosted but never shiny. The squares
should be from 5 to 6 cm in length, at least twice the diameter of a pawn's base. If the table and
the board are two separate pieces, the latter must be fixed so it stays in place

5.0 Actual Methodology Followed:-

<!DOCTYPE html>
<html>
<body>
<table width="400px" border="1px" cellspacing="0px">
<?php echo "Chess Board";
$value = 0; for($col = 0; $col
< 8; $col++)
{ echo "<tr>";
$value = $col; for($row = 0;
$row < 8; $row++)
{
if($value%2 == 0)
{
echo"<td height=40px width=20px bgcolor=black></td>";
$value++;

} else
{
echo"<td height=40px width=20px bgcolor=white></td>";
$value++;
}
} echo
"</tr>";
}
?>
</table>
</body>
</html>

6.0- Actual Resources Used: -

Sr Name of Resource/ Material


No Specification QTY Remark

Intel i3, 8GB RAM,


1) Computer 512 SSD 1

2) Operating System Windows 11 1


7.0 Outputs of the Micro Projects: -

..

8.0 Skill Develop/ Learning outcome of this micro Project: -

1) Chess helps build individual friendships and teaches children about sportsmanship.
Children learn how to win graciously, and more importantly, how not to give up when
encountering defeat. Chess encourages and rewards hard work. Children learn that those who
practice and study the strategies win more games.

2) It Improves cognitive skills (including concentration, pattern recognition, decision making,


algebraic and geometric thinking, problem-solving, spatial reasoning, and critical thinking)
Improves self-confidence and self-worth. Increases attention span.
9.0 Application of this Micro Project: -
1) Playing chess can improve cognitive skills like memory, planning, and problemsolving. It may
also help reduce symptoms of certain brain conditions.

2) Chess develops the ability to see from someone else’s perspective. Chess improves memory.

3) It’s also interesting to note that experienced chess players show higher performance related to
a particular kind of recollection: auditory memory. This is the ability to remember what you’ve
learned through hearing.

4) Chess enables you to enter a flow state. Chess elevates your creativity, chess leads to better
planning skills.

Evaluation Sheet for the Micro Project


Name of Student - Enrollment No-

Mr. Deep Sanjay Jadhav 2101080003

Mr. Soham Sunil Raut 2101080008

Mr. Abdul Rahiman Hanif Kasu 2101080009

Name of Program: TY IF Semester:- Sixth

Course Title:- Web based application development with PHP Code:- 22619

Title of Micro Project:- Chess Board

Sr Poor Average Good (Marks


No Characteristics to be assessed (Marks 1-3) (Marks4-5) 6-8) Excellent
(Marks 9-10)
1 Relevance to the course

2 Literature survey / Information collection

3 Completion of the target as per project proposal

4 Analysis of data and representation

5 Quality of prototype / Model

6 Report Presentation

(A) Process and Product Assessment (Convert above total marks out of 6 marks)
8 Presentation

9 Viva

(B) Individual Presentation /Viva (Convert above total marks out of 4 marks)

(A)
Process and Product Assessment Total marks
(B) Individual Presentation / Viva (4
(6 marks) 10
marks)

Comments/Suggestions above team work/leadership/inter-personal communication (if any)


____________________________________________________________________________________
_____________________________________________________________________________________
Name and designation of the Teacher:-_____________________________________________________

Dated Signature:-______________________________________________________________________

You might also like