0% found this document useful (0 votes)
7 views16 pages

ITR Weekly Report

Uploaded by

bhavikjangade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views16 pages

ITR Weekly Report

Uploaded by

bhavikjangade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

Industrial Training Report GHRCEM / CO-Poly / 2024-

25

G H RAISONI COLLEGE OF ENGINEERING & MANAGEMENT, NAGPUR


Accredited by NAAC with A+ Grade
B-37 -39 /1, Shardha Park, Hingna –Wadi Link Road, Nagpur -28
Email: - [email protected] Web: www.ghrietn.raisoni.net
Department of Computer Engineering (Diploma)

Weekly Diary

For
Industrial Training

At

Sampurv Technologies

From 3/06/2024 To 18/07/2024

Name of Supervisor: Prashil Shahakar

Designation of Supervisor: …………………………………………………………

Name of Student: Rajshree S. Bongade

Branch: Computer Engineering

College Name: G.H.Raisoni College of Engineering & Technology, Nagpur

(Special instructions to students:


1) Write down the daily activity on the same day.
2) Make note of the important actual activity/ies only.
3) Summarize at the week -end.
4) Add extra sheets if needed for daily or weekly activity report.)

Signature of Student……………………… Signature of Industrial Supervisor……… ………

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
Week 1: From 3/06/2024 To 9/06/2024

Expected Work: Setting up Local Environment, use of HTML tag

Day Activities Carried Out


1. Html Introduction
Html Introduction We learn about HTML, used of HTML every web page is developed using HTML.
3/06/2024
HTML support the language that browser understand with the use of netbeens editor we can type the

HTML code. And installation process netbeens and how to handle it

2. Html Page Structure

In this module we learn syntax of how to write HTML code, comments, tittle, body of elements
4/06/2024 and also attempts some quizzes and code challenges

3. Tags & Elements

In this we learn about different tags and elements are covered Ex:
5/06/2024 <body>, <HTML>, <head>, <tittle>, <p>

HTML tags are hidden keywords in the web page that defines how the browser must format and
6/06/2024 display the content most of the tags have 2 parts opening tag & closing tag opening tags are
always in opening and closing angular brackets
(<keyword>) and closing tag are enclosed in opening angular bracket forward slash and closing
angular bracket (</keyword>). The text can be added in between opening and closing tag

4 Text Formatting

In text formatting, the different tags are used to define the unique text from the normal text.
7/06/2024. For example: 1) Heading tags- There are 6 heading tags to define the text. h1, h2, h3, h4, h5, h6.
1) Bold tag- It will display the text in bold. is used for this.
2) Italic tag- It will display the text inside tag in italic form.
3)Underline tag- By using this tag the underline will display below the text. is used.
4) Strong tag and em tag- and will indicate the importance of text inside it. In this lesson we also attempt
some quizzes and code challenge.

5. Attributes

There are two types of attributes i.e. Global attributes and Elements specific attributes. Attributes are used
8/06/2024 to define properties in HTML elements. Attributes consists of two parts i.e. attribute name and attribute
value for example: sec attribute, href attribute, id attribute.

6. Hyperlinks

Signature of Student……………………… Signature of Industrial Supervisor… ……………

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25

By adding the hyperlinks on the particular image or text, we can link it to


another page or same page.
Anchor tag is used for the text to link it on other page. <a> </a> is used in
9/06/2024 hyperlink. href attribute is used in anchor tag to link the text and SRC attribute
is used for image to link it.
Example :<a href="https://Internshala.com> click here</a>
Now in above ex the “click here" text is linked. If click on the "click here" the it
will go to the Internshala page.

Weekly summarization of above activities: Introduced to HTML use basic concepts of web development, set
local environment, use HTML tags

Signature of Student……………………… Signature of Industrial Supervisor…… …………

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
Week 2: From 10/06/2024 To 17/06/2024

Expected Work: Use CSS Selectors and Structure the Web Page
Day Activities Carried Out
1. Cascading Style Sheets

In this lesson I have learnt that CSS is used to styles of the HTML page i.e. size,
10/06/2024 colour, font, image styling etc. Browser read the HTML & CSS page together.
There are three types of styling the page:
* Inline style
* Internal style
* External style
Priority level of styling the sheets:
Inline style > Internal style > External style

2. Box Model

Every HTML element is considered as a box. The different elements in box


11/06/2024 model are
* Content: The inner most element in box model. Content can be text or
images.
12/06/2024 * Padding: The space between the contents and border in the padding. It can
be change by giving the values to it.
* Border: The border of the page or the contents. The default color and value
of the border is transparent and 0 px.
* Margin: The default value of margin is 8 px. It can set by giving the different
values to it

3. Colors

Colors are used as two different ways i.e. font color and background color to
apply the text color "color: " property is used and to apply the background
color the "background-color: " property is used.
The values of property can be in hexadecimal or RGB code. There are different
hexadecimal and RGB code for every color.

Fonts
13/06/24
There are two types‟ properties to define font:
* Font style
* Font variant
* Font width
* Font size
* Line height
* Font family
We can define it by giving values to each property. The font size and font
family is mandatory to define.

4. Lists
There are two types of defining the list i.e.

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
There are two types of defining the list i.e.

1) Ordered list: In ordered list the items are displayed in ordered form. <ol>

</ol> tags is used.

2) Unordered list. In unordered list the items are displayed in unordered form.

<ul> </ul> tags is used.

Each item is displayed by using <li> </li> tag. The text defines in the li tag will

added in the list form.

Creating Layout
14/06/2024 In this topic we learn about how to adjust web page in systematic way. And

learn the different tags use to design html pages.


15/06/2024

• < header>- Defines a header for a document or a section

• <nav>- Defines a set of navigation links

• < section>- Defines a section in a document

• < article>- Defines an independent, self-contained content

• <aside>- Defines content aside from the content (like a sidebar)

• <footer>- Defines a footer for a document or a section

• < details >- Defines additional details that the user can open and close on

Demand

Signature of Student……………………… Signature of Industrial Supervisor…… …………

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
5. Navigations
In navigations we learn how to write links in different way. Ex. <ul>

16/06/2024 <li><a href=”default.asp”>Home</a></li>

<li><a href=”news.asp”>News</a></li>

<li><a href=”contact.asp”> Contact </a></li>

<li><a href=”about.asp”>About </a></li>

</ul>

Forms

The form is use to create form for inputting data of user in servers. In this we

use input tag to create text field to input data.

• input[type=text] - will only select text fields

17/06/2024
• input[type=password] - will only select password fields

• input[type=number] - will only select number fields Miscellaneous

Miscellaneous

HTML Character Codes. A collection of various HTML characters and the

codes assigned to them so you can include them in your website.

EX. <a href = “signup.html”><span class =” glyphicon glyphiconuser”></span>Sign up

Weekly summarization of above activities: Used CSS properties, Flexbox, Box Model. Structured the
web page using wireframe, inspected web page elements using inspect Element function

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25

Signature of Student……………………… Signature of Industrial Supervisor… ……………

Week 3: From 18/06/2024 To 24/06/2024

Expected Work: Installation of Bootstrap and set up CSS library.


Day Activities Carried Out
1. Introduction To Bootstrap

• Bootstrap is the most popular HTML, CSS, and JavaScript framework for
developing responsive, mobile-first websites.
• In chapter, we have look at some HTML elements that will be styled a little
bit differently by Bootstrap than browser defaults.
18/06/2024 • Images come in all sizes. So done screens. Responsive images automatically
adjust to fit the size of the screen. Created responsive images by adding an
.img-responsive class to the <img> tag. The image will then scale nicely to the
19/06/2024 parent element.
Installation of Bootstrap

we need three files to executions of Bootstrap framework - Bootstrap.css, Bootstrap_mean.css, jQuery. In


above file jQuery is must

2. Containing Elements
Bootstrap predefined classes.
20/06/2024 Bootstrap classes: visible, hidden.
Bootstrap provides 4 Device and 3 Breakpoints.

Large device >=1200 px Ig


Medium device 992 px to 1199 px Md
Small device 768 px to 991 px Sm
Extra small device <768 px xs

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
3. Jumbotron & Glyphicon

Learn four important topic in Bootstrap that is: Container Elements,


Jumbotron, and Glyphicos and Table class.

Container Elements: there are two bootstrap class in


21/06/2024
Jumbotron: Jumbotron get some extra attention in web page

Glyphicos: Glyphicos is predefined symbol defined in Bootstrap which is used in our web-page.

Table: table are create by using Table class, which is use to represent tabular data. In table provide some
classes to styling the table such as tale, tablestriped, table-bordered, table

Signature of Student……………………… Signature of Industrial Supervisor… ……………

4.
Column
creating a layout generally before creating any web-site we plane, how our
web-site look and their row design created in Page. But Bootstrap provides the
facility of creating layout and test our web how look on deferent devices.
22/06/2024 Bootstrap divides width of web page into 12 equal Column.
Syntax: col-screen_type-number
Row:
row class remove column offset with no padding. Because it give margin-right:
- 15px and margin- left: -15px
Navbar: navbar are created by using Navbar class

5.
Images
To create images as responsive in any device size by using img-responsive
class. Property of img-responsive classes are display:block ;max-width: 100%;
height :auto;
23/06/2024
Thumbnail
Thumbnail are generally used to reduce size and version of images and video.

Form in Bootstrap
In the form two important classes that are used to create form that is formcontrol and form- group it
provides margin-bottom:15px; in form we can
create button, label, checkbox, textile etc.

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
6.
Panel
24/06/2024 A panel in bootstrap is a bordered box with some padding around its content.
There are five styles learn in panel are: panel-primary, panel-success, panelinfo, panel- warning, and
panel-denger. Now our Bootstrap module ended
then we will solve Assignment problem and give some quizzes for practice and
then we will give modal test of Bootstrap

Weekly summarization of above activities: Used Bootstrap library and install Bootstrap

Signature of Student……………………… Signature of Industrial Supervisor…… …………

Week 4: From 25/06/2024 To 1/07/2024

Expected Work: Used Bootstrap library and install Bootstrap.

Day Activities Carried Out


1.
Introduction to Database
25/06/2024 Now in this modal we will learn SQL that is Structure query language to
perform operation on database. In very first we learn what is DBMS and there
type and need of database. Before learning of SQL we need to WAMP to run
the queries. WAMP stands of (Windows, Apache, MySQL, and PHP) for
windows OS. Also learn the installation Linux that is LAMP. LAMP stands for
(Linux, Apache, MySQL, and PHP

2.
Creating First database
26/06/2024 After installation process we will create our first database. Before that we
learn MySQL data type

3.
DDL
27/06/2024 we learn DDL commands: in DDL commands contain CREATE database
command, CREATE TABLE command and also learn Primary-key and autoIncrement

4.
Alter & Drop
learn Alter & Drop commands in SQL and perform some operation on database
which will create in previous day.
Foreign Key & Truncate

Foreign Key

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25
28/06/2024 A FOREIGN KEY is a key used to link two tables together. A FOREIGN KEY is a
field (or collection of fields) in one table that refers to the PRIMARY KEY in
another table. The table containing the foreign key is called the child table, and
29/06/2024 the table containing the candidate key is called the referenced or parent table.
Truncate
In SQL, the TRUNCATE TABLE statement is a Data Definition Language (DDL)
operation that marks the extents of a table for reallocation (empty for reuse).
The result of this operation quickly removes all data from a table, typically
bypassing a number of integrity enforcing mechanisms

5.
DML

Signature of Student……………………… Signature of Industrial Supervisor…… …………

We will learn DML command in SQL, that contains INSERT command, UPDATE
command, DELETE command, and SELECT command.
• SELECT – retrieve data from the a database.
30/06/2024 • INSERT – insert data into a table.
• UPDATE – updates existing data within a table.
• DELETE – deletes all records from a table, the space for the records remain.

SQL Joins
SQL joins are used to access data of two or more table. There are three types
of joins learn which is INNER join, LEFT join, RIGHT join
Also learn ORDER by query in SQL.
6.
Additional SQL features
1/07/2024 We will learn some additional SQL features such as Backup, Export, and
Import.
Then we solve Assignment problem and some quizzes for practice. Then give
module test of SQL.

Weekly summarization of above activities: Run SQL Queries, Designed the databases and create table. Backed up
and Restored the databases.

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25

Signature of Student……………………… Signature of Industrial Supervisor…… …………

Week 5: From 2/07/2024 To 8/07/2024

Expected Work: Run PHP snipped and Connect the Database using PHP

Day Activities Carried Out


1.
PHP Introduction
2/07/2024 • PHP is an acronym for "PHP: Hypertext Pre-processor"
• PHP is a widely-used, open source scripting language
• PHP scripts are executed on the server
• PHP is free to download and us
2.
Basics
Basic Syntaxes of PHP, variable, data type and operator PHP
commands are embedded into HTML by one of several
ways. The preferred method is include the code using the
3/07/2024 special.
Tags <?php PHP_code_goes_here ?>

4/07/2024 PHP supports the following data types:


• Boolean
• integer
• float
• string
• array
• object
Maharashtra State of Board Technical Education
Industrial Training Report GHRCEM / CO-Poly / 2024-
25
• resource

3.
Functions/ Arrays/ Strings

creating function
The real power of PHP comes from its functions. PHP has more than 1000
built-in functions, and in addition you can create your own custom functions.
creating Arrays An array stores multiple values in one single variable n PHP, the
5/07/2024 array() function is used to create an array

• Indexed arrays - Arrays with a numeric index

• Associative arrays - Arrays with named keys

• Multidimensional arrays - Arrays containing one or more arrays

Creating String in PHP.

Signature of Student……………………… Signature of Industrial Supervisor… ……………

Strings can be seen as a stream of characters. For example, “G‟ is a character


and „GeeksforGeeks‟ is a string. We have learned about basics of string data
type in PHP

In PHP Everything inside quotes, single („ ‟) and double (” “) in PHP is treated as


a strin

4.
We learn Iterative statement and conditional statements

6/07/2024 Conditional statement: simple if, if-else, else-if-ladder.


Looping statement: while loop and for loop

5.
Database Connection
7/07/2024 In PHP we used mysqli_connect() function to establish connection.
Syntax: mysqli_connect ("host","username","password","database name”);.

6.
SELECT Query with PHP (Part I)

In this part we learnt:


SELECT query in PHP It is used to select data from database function of MySQL
Query.
The mysqli_query function is used to execute SQL queries. The function can be
8/07/2024 used to execute the following query types:

• Insert
• Select
• Update
• Delete.
Maharashtra State of Board Technical Education
Industrial Training Report GHRCEM / CO-Poly / 2024-
25

Weekly summarization of above activities: Used PHP loops, arrays, strings, functions and connected
the database and save data in database using PHP. Used Cookies and Sessions

Signature of Student……………………… Signature of Industrial Supervisor… ……………

Week 6: From 9/07/2024 To 15/07/2024 and addition 3 days : From 16/07/2024 to 18/07/2024

Expected Work: Debug JS using inspect element

Day Activities Carried Out


1.
SELECT Query with PHP (Part II)
9/07/2024 In this part we learn about:
Display Data Using HTML & Bootstrap. Data Calculation Using Functions

2.
Form
10/07/2024 A web form, web form or HTML form on a web page allows a user to enter
data that is sent to a server for processing. Forms can resemble paper or
database forms because web users fill out the forms using checkboxes, radio
11/07/2024 buttons, or text fields. For example, forms can be used to enter shipping or
credit card data to order a product, or can be used to retrieve search results
from a search engine.

3.
Sessions
12/07/2024 session_start() : with the use of this we can start the session storing user
information to be used across multiple pages (e.g. username, favourite color,
etc.). By default, session variables last until you click logout button then
variable is deleted.

isset() function is use to check whether session is started or not


Maharashtra State of Board Technical Education
Industrial Training Report GHRCEM / CO-Poly / 2024-
25

4.
We learn external file including in our current file using include Security
features:md5($str) is the md5 function in PHP is used to calculate the md5
13/07/2024 hash of a string. It is commonly used to encrypt a string. Which take input and
give output

5.
Validation
14/07/2024 Validation means check the input submitted by the user. PHP validation
function: preg_match(pattern,string) is function used for validation with
pattern.

6.
Now today's at the last day of training we solve some quizzes related to the PHP module and solve

Signature of Student……………………… Signature of Industrial Supervisor… ……………

Assignment problems, After that then we have completed final project. Then we give final test of our 6-
week complete training
15/07/2024

Weekly summarization of above activities: Used AJAX, object and classes, functions, arrays of
javaScript. Breaking the web page into modules

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25

Signature of Student……………………… Signature of Industrial Supervisor…… …………

G H RAISONI COLLEGE OF ENGINEERING & MANAGEMENT, NAGPUR


Accredited by NAAC with A+ Grade
B-37 -39 /1, Shardha Park, Hingna –Wadi Link Road, Nagpur -28
Email: - [email protected] Web: www.ghrietn.raisoni.net
Department of Computer Engineering (Diploma)

Evaluation Sheet for PA of Industrial Training

Academic year: - 2024 - 2025


Name of the industry: Sampurv Technologies

SN Enrolment Name of The Students Marks (5 marks PA PA Total Marks


No. Marks by Marks by (A+B+C)
for each week) by
Industry mentor 75
Mentor & Industry Supervisor faculty
Supervisor jointly (Out of 25) (Out of 20)
(Out of 30) (B) (C)
(A)
1) 2201070078 Rajshree S. Bongade

Maharashtra State of Board Technical Education


Industrial Training Report GHRCEM / CO-Poly / 2024-
25

A) Marks for PA are to be awarded out of 5 for each week considering the level of completeness of
activity observed, from the daily diary maintained.

B) Marks are to be awarded by Industry Supervisor on the basis of General Observation and behavioral
aspects of student.

C) Marks are to be awarded by Mentor faculty on the basis of report, understanding level and work
performance of the student.

Signature-
Prashil Shahakar

Maharashtra State of Board Technical Education

You might also like