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

MAHARASHTRA STATE BOARD OF TECHNICAL

EDUCATION

SHRI H. H. J. B POLYTECHNIC,
CHANDWAD-423101 (Nashik)

MICRO PROJECT
Academic year 2022-23

TITLE OF PROJECT
ARRAY FUNCTION

Program: Computer Technology Program Code:CM

Course: Array Function Course code: 22619


Teacher Evaluation Sheet
Name of Student: Shewale Nikita Sharad
Enrolment No: 2000790269
Name of Program: Computer Technology Semester:-VI
Course Title: WBP Code: -22619
Title of the Micro Project: Array Function

Course Outcomes Achieved:-


a) CO- a Develop program using control statement.
b) CO-b Perform operations based on arrays and graphics.
c) CO-c Develop programs by applying various object oriented concepts.
d) CO-d Use form controls with validation to collect user's input.
e) CO-e Perform database operations in PHP.

Evaluation as per Suggested Rubric for Assessment of Micro-Project:

Sr.
Characteristic to be Poor Average Good Excellent
No.
assessed (Marks 1-3) (Marks 4-5) (Marks 6 - 8) (Marks 9-10)
(A) Process and Product Assesssment (Convert above total marks out of 6 marks)
1 Relevance to the Course
Literature Survey /
2
Information Collection
Completion of the Target as
3
per project proposal
Analysis of data and
4
representation
5 Quality of Prototype / Model
6 Report Preparation
(B) Individual Presentation / Viva (Convert above total marks out of 4 marks)
8 Presentation
9 Viva
Micro – Project Evaluation Sheet:
Process Assessment Product Assessment
Part Project Part Individual Total
A – project Methodology B – Project Presentation / Marks 10
Name of Student Proposal (2 marks) Report / Working Viva (4 marks)
(2 marks) Model(2 marks)

Shewale nikita Sharad


Comments / Suggestions about team work / leadership / inter – personal communication (if any)

Any Other Comment

Name and designation of the faculty Member: Miss. S.V. Shelke Signature
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Sr.No. Name of Student Roll No Enrollment No Seat No


1. Shewale Nikita sharad 53 2000790269

CERTIFICATE
This is to certify 1) Student name

of 6th Semester of Diploma in Computer Technology of Institute, SHHJB


POLYTECHNIC, CHANDWAD (Code: 0079) has completed the Micro-Project
satisfactorily in Subject WBP (22619) for the academic year 2022- 2023 as prescribed in the
curriculum.

Place: CHANDWAD

Date: / /2023

Subject Teacher Head of the Department Principal


(Miss. S.V.Shelke) (Mr.P.R.Sali) (Dr. V.A.Wankhede)
INDEX

SR_NO. CONTENT PAGE NO.

Part A

1.0 Brief Introduction

2.0 Aim of Micro Project

3.0 Action Plan

4.0 Resources Required

Part B

1.0 Brief Description

2.0 Aim of Micro Project

3.0 Course Outcome Integrated

4.0 Actual Procedure Followed

5.0 Actual Resource Used

6.0 Outputs of the Micro-projects

7.0 Skill Developed

8.0 Applications of this Microproject


PART A-Plan

Title of micro-project: Array Function

1.0 Aim/Benefits of the Micro-Project-

An array formula is a formula that can perform multiple calculations on one or more items in
an array. The array functions allow you to access and manipulate arrays.Simple and multi-
dimensional arrays are supported. The array functions are part of the PHP core. There is no
installation needed to use these functions.

2.0 Course Outcomes Addressed-

CO- a Develop program using control statement.


CO-b Perform operations based on arrays and graphics
CO-c Develop programs by applying various object oriented concepts.
CO-d Use form controls with validation to collect user's input.
CO-e Perform database operations in PHP.

3.0 Action Plan-

Planned Start Planned Finish


Sr no. Details of activity
Date Date
1. Finalization of topic
2. Preparation of Abstract
3. Collection of data
4. Preparation of concept
5. Seminar / Presentation
6. Submission of Micro Project
5.0 Resources Required:

Sr.No Name of Resource/Material Specification Quantity Remarks


1. Computer (Desktop/Laptop) i3,RAM 2GB 1
2. Microsoft office word 2010 1
3. Books
4. Websites
5. Softwares XAMPP 1
PART B-Plan
Title of micro-project: Array Function

1.0 Brief Description:

An array formula is a formula that can perform multiple calculations on one or more
items in an array. The array functions allow you to access and manipulate arrays.Simple
and multi-dimensional arrays are supported. The array functions are part of the PHP
core. There is no installation needed to use these functions.

2.0 Aims/Benefits of Micro Project:

a) Array Functions allow you to interact with and manipulate arrays in various ways.
b) PHP arrays are essential for storing, managing, and operating on sets of variables
c) PHP supports simple and multi-dimensional arrays and may be either user created or
created by another function.

3.0 Course Outcomes Achieved:

CO-a Display message on screen using Python script on IDE.


CO-b Develop Python Program to demonstrate use of operators.
CO-c Perform operations on data structures in Python .
CO-d Develop functions for given problem.
CO-e Design classes for given problem.
CO-f Handle exception.

4.0 Actual Methodology/Procedure Followed:

 With subject teacher, I decided the topic of the micro-project.


 After reading the book of the Management as well as referring some of the websites I
gather useful information about what actually directing is.
 I made the proposal for the project at the starting period which contains brief
description, aims and resources required.
 I started searching for how the direction is important and how it works in organization.
 I created the Report for the project.
 All the related data about the project is in the outputsection itself
5.0 Actual Resources Used:

Sr.No Name of Resource/Material Specification Quantity Remarks


1. Computer (Desktop/Laptop) i3,RAM 2GB 1
2. Microsoft office word 2010 1
3. Books
4. Websites
5. Softwares IDLE & Pycharm 1
ARRAY FUNCTION

Function Discription Example


array() PHP array() function creates and returns <?php
an array. It allows you to create indexed,
associative and multidimensional arrays. $season=array("summer","winter",
"spring","autumn");
echo "Season are: $season[0], $seas
on[1], $season[2] and $season[3]";

?>

array_chunk() PHP array_chunk() function splits array <?php


into chunks. By using array_chunk()
method, you can divide array into many $salary=array("Sonoo"=>"550000
parts. ","Vimal"=>"250000","Ratan"=>"2
00000");
print_r(array_chunk($salary,2));
?>

-[-Array_Sort() PHP sort() function sorts all the <?php


elements in an array.
$season=array("summer","winter",
"spring","autumn");
sort($season);
foreach( $season as $s ){
echo "$s<br />";
}
?>

array_reverse() PHP array_reverse() function returns <?php


an array containing elements in
reversed order. $season=array("summer","winter",
"spring","autumn");
$reverseseason=array_reverse($sea
son);
foreach( $reverseseason as $s ){
echo "$s<br />";
}
?>
array_search() PHP array_search() function searches <?php
the specified value in an array. It
returns key if search is successful. $season=array("summer","winter",
"spring","autumn");
$key=array_search("spring",$seaso
n);
echo $key;
?>

array_intersect() PHP array_intersect() function returns <?php


the intersection of two array. In other
words, it returns the matching $name1=array("sonoo","john","viv
elements of two array. ek","smith");
$name2=array("umesh","sonoo","
kartik","smith");
$name3=array_intersect($name1,$n
ame2);
foreach( $name3 as $n ){
echo "$n<br />";
}
?>

7.0 Applications of this Microproject:

1. Array stores data elements of the same data type.


2. Maintains multiple variable names using a single name. Arrays help to maintain large
data under a single variable name. This avoids the confusion of using multiple
variables.
3. Arrays can be used for performing matrix operations. Many databases, small and
large, consist of one-dimensional and two-dimensional arrays whose elements
are records.
4. Arrays can be used for CPU scheduling.

You might also like