Digital clockProgram Book for Short-Term Internship
Digital clockProgram Book for Short-Term Internship
INTERNSHIP
(On-Site/Virtual)
ANDHRAPRADESH
STATECOUNCILOFHIGHEREDUCATION
(ASTATUTORYBODYOFGOVERNMENTOFANDHRAPRADESH)
PROGRAMBOOKFOR
SHORT-TERMINTERNSHIP
(Onsite/Virtual)
University
An Internship Report on
Department of
Submitted by:
Reg.No:
Department of
Please read the detailed Guidelines on Internship hosted on the website of AP State
Council of Higher Education https://apsche.ap.gov.in
<<@>>
Page No
Student’s Declaration
College do hereby declare that I have completed the mandatory internship from
to __________________________________________________ in (Name of
the intern organization) under the Faculty Guideship of (Name of the Faculty
Endorsements
Faculty Guide
Principal
Page No
Certificate from Intern Organization
PageNo:
Acknowledgements
up my Internship in such a great institution which has well qualified scientists and
excellent equipment.
PageNo:
Contents
SNo Tableof contents Page No.
1. Programme book for semester internship
2. Internship report
3. Student’s declaration
4. Official certification
5. Certificate from intern organization
6. Acknowledgements
7. Chapter1Executivesummary
8. Chapter2Overviewoftheorganization
9. Chapter3internshippart
10. Chapter4Activitylogandweeklyreport[week1to15]
11. Chapter5Outcomesdescription
12. Student’ self-evaluation
13. Evaluation by the supervisor
14. Photos and videos links
15. Marks statements
PageNo:
CHAPTER1: EXECUTIVE SUMMARY
The internship report shall have only a one-page executive summary. It shall include
five or more Learning Objectives and Outcomes achieved, a brief description of the
sector of business and intern organization and summary of all the activities done by
the intern during the period.
This executive summary provides a concise over view of my internship experience, high-
lighting key achievements and insights gained during the programme.
Objectives
PageNo:
Responsibilities
PageNo:
CHAPTER2:OVERVIEWOFTHEORGANIZATION
Suggestive contents
PageNo:
PageNo:
CHAPTER3: INTERNSHIP PART
Skill acquired
The intern will acquire a variety of skills during their internship
including Communication skills
Team work skills
Problem solving skills
Research skills
Writing skills
Professanalisam
In addition to the skills listed above, the intern will also gain valuable experience in their
field of interest .This experience will help them to prepare for a career after graduation
PageNo:
PageNo:
PageNo:
ACTIVITY LOG BOOK FOR FIRST WEEK
DAY PERSON
BRIEF DESCRIPTION OF THE DAILY LEARNING OUTCOMES INCHARGE
&DATE
ACTIVITY SIGNATURE
DAY-5 The initialization of the Got an idea about the initialization part of
python the python
software(pycharm)
WEEK–1(From- to- )
What is Python?
Python can be used on a server to create web applications..Python can be used alongside
software to create work flows. Python can connect to database systems. It can also read and
modify files. Python can be used to handle big data and perform complex mathematics. Python
can be used for rapid prototyping, or for production-ready software development.
Why Python?
Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc).Python has a
simple syntax similar to the English language.
Python sense lines to complete command, as opposed to other programming languages which
often use semicolons or parentheses .Python relies on indentation, using whitespace, to define
scope; such as the scope of loops, functions and classes. Other programming languages often u se
curly-brackets for this purpose.
DAY PERSON IN
BRIEF DESCRIPTION OF THE DAILY LEARNING OUTCOMES CHARGE
&DATE
ACTIVITY SIGNATUR E
A=10B=20
C=A+B
PRINT(C)
OUTPUT:
30
Funnctions in Python
1.reusable
2.debugging is easy Syntax of function:- def function_name():
Sum=a+bRet
urn sum
a=int(input(“enter a number:”))
b=int(input(“enter a
number:”))res=add(a,b) print(“result
is,”res)
output:-
a:10b:20
Resultis20
Variables in python
DAY PERSON
BRIEF DESCRIPTION OF THE LEARNING OUTCOMES INCHARGE
& DATE
DETAILY ACTIVITY SIGNATURE
1. learnaboutconvertingbase2
DAY- Binary number concept in number to base 10 numbers
5
python 2. Converting of any number in to
the system code i.e., 0 and 1
WEEK–3(From- to- )
LISTS IN PYTHON
TUPLES IN PYTHON
* Tuple is immutable
* A tuple Is a collection which is ordered and unchangeable.
* Tuples are written with()Methods
1. Concatenation
a=(1,4,7,9) b=(2,5,6,8)
c=a+b
print(c
)
output:(1,4,7,9,2,5,6,8)
LIST TO TUPLE
a=[1,4,7,9]
print (tuple(a))
output:(1,4,7,9)
Sets :-sets are used to store multiple items in a single variable..Set is one of 4 built in data types in
Python used to store collections of data, the other 3 are List, Tuple, and Dictionary, all with different
qualities and usage.
A set is a collection which is un ordered, un changeable*, and un indexed.
Method :-union
x={"apple","banana","cherry"}
Dictionary:-It is having the key value
Denoted by{}
Methods :-Clear():Removes all the elements from the dictionary car={ "brand": "Ford",
"model": "Mustang","year":
1964
print(x)
output :dict_values(['Ford','Mustang',1964])
ACTIVITYLOGBOOKFORFOURTH WEEK
DAY PERSON IN
BRIEFDESCRIPTIONOF LEARNING OUTCOMES CHARGE
&DATE
THEDAILYACTIVITY SIGNATURE
WEEK–4(From- to- )
1. if statement
2. if else statement
3. Ladder if else statement(if-elif-else)
If statements
This construct of python program consist of one if condition with one block of
statements. When condition becomes true then executes the block given below it.
Syntax:
if(condition):
…………………..
…………………..
EXAMPLEPROGRAM:
This construct of python program consist of one if condition with two blocks. When
condition becomes true then executes the block given below it. If condition
evaluates result as false, it will executes the block given below else.
Syntax:
if(condition):
…………
………..
else:
…………………..
PageNo:
EXAMPLEPROGRAM:
OUTPUT:
EnterAge:20
This construct of python program consist of more than one if condition. When first
condition evaluates result as true then executes the block given below it. If
condition evaluates result as false, it transfer.
Syntax:
if(condition-1):
…………………..
…………
………..
elif
(conditi
on-2):
…………………..
…………
………..
elif
(conditi
on-3):
…………………..
…………
………..
else:
…………………..
…………………..
PageNo:
ACTIVITYLOGBOOKFORFIFTHWEEK
DAY PERSON
BRIEF DESCRIPTION OF THE LEARNING OUTCOMES INCHARGE
&DATE
DAILYACTIVITY SIGNATURE
WEEK–5(From- to- )
Numeric Data Type
PageNo:
ACTIVITY LOG BOOK FOR SIXTH WEEK
DAY PERSON
BRIEF DESCRIPTION OF THE DAILY LEARNING OUTCOMES INCHARGE
&DATE
ACTIVITY SIGNATURE
WEEK–6(From- to - )
1. DEFAULT ARGUMENT
2. REQUIRED ARGUMENT
3. VARIABLE LENGTH ARGUMENT
4. KEY WORD ARGUMENT
1. DEFAULTARGUMENT
* No of arguments need not to became in function call and function
definition def display(“name”,”branch”:”cse”)Print(name)
Print(branch) display(Sai,ece) display(Rajesh) OUTPUT:
Sai,ece
Rajesh ,cse
2. REQUIREDARGUMENT
* No of arguments should to be same in function call and function
definition def display(a,b)
Print(a,b)
display(4,
OUTPUT:
4
3. VARIABLELENGTHARGUMENT
* It has no fixed length
def display(*courses)
Print(courses)
display(“MSC”,”MCA”,”MS”) OUTPUT:
MSCMCA MS
DAY PERSON
BRIEF DESCRIPTION OF THE LEARNING OUTCOMES INCHARGE
&DATE
DAILY ACTIVITY SIGNATURE
WEEK–7(From- to- )
The method is a function that is associated with an object .In Python, a method is not unique to
class instances .Any object type can have methods.
1.INHERITANCE
By using inheritance, we can create a class which uses all the properties and behavior of an
other class. The new class is known as a derived class or child class, and the one whose
properties are acquired is known as a base class or parent class.
Inheritance in Python
Types of Inheritance depend upon the number of child and parent classes involved.
There are four types of inheritance in Python:
Single Inheritance:
Single inheritance enables a derived class to inherit properties from a single parent class , thus
enabling code reusability and the addition of new features to existing code.
Example:
Class Parent:
DAY PERSON IN
BRIEF DESCRIPTION OF THE LEARNING OUTCOMES CHARGE
&DATE
DAILY ACTIVITY SIGNATURE
WEEK–8(From- to - )
import time
import date time as dt
import turtle
# create screen
s = turtle.Screen()
while True:
t.hideturtle()
t.clear()
# display the time
t.write(str(hr).zfill(2)
+ ":"+str(min).zfill(2)+":"
+ str(sec).zfill(2),
font=("Arial Narrow", 35, "bold"))
time.sleep(1)
sec += 1
if sec == 60:
sec = 0
min += 1
if min == 60:
min = 0
hr += 1
if hr == 13:
hr = 1
Output:
CHAPTER5:OUTCOMESDESCRIPTION
Describe the work environment you have experienced (in terms of people interactions,
facilities available and maintenance, clarity of job roles, protocols, procedures, processes,
discipline, time management, harmonious relationships, socialization, mutual support and
teamwork, motivation, space and ventilation, etc.)
The work environment is very free to work and the people there are very interactive
to us and the guiders teaching very well.
The organization provided multiple facilities to us during the internship like
samples, water facilities ,computer facilities everything they provided to us what we
need. We have multiple mentors in respective departments they are very friendly we
felt very close to ask any doubts without any fear.
The protocols they provided are very easy to understand and procedures are
explained by the mentors in a very easy way. We cant judge the Practical time period
but the mentors made us to do each and every practical in time in a very accurate
way.
We was spitted into different teams while doing the practical, we feel very
supportive with our team members during the work. ultimately during our
internship we felt very happy with our work about gaining lots of knowledge.
Describe the real time technical skills you have acquired (in terms of the job-
related skills and hands on experience)
Communication is how we connect to others. It’s how we express our thoughts, feelings
and ideas to the people around us, and it’s also how we come to understand them.
Unfortunately not all of us have the ability to convey our message clearly. Here I improved
some of the communication skills like:-Listening properly while others are talking,
conveying my views with proper terminology ,taking notes on each and every point ,being
confident without any fear while talking to others, controlling my anxiety while learning a
new things, I started thing about others and understanding them and getting understood
by them, I learn how to start communication and end the communication with others .
Describe how could you could enhance your abilities in group discussions, participation
in teams, contribution as a team member, leading a team/activity.
Before keeping my points in the group discussion first I will observe the team members
thought process and there by I will keep my points in there manner which is easy to
understand by them, and while involving in the team discussions we can improve our
thought process and gain the knowledge to.
Describe the technological developments you have observed and relevant to the
subject area of training (focus on digital technologies relevant to your job role)
Compared to the olden days practical process now the technology was improved a lot
based on instrumentation .past complete practical work was done manually we are
practiced more time .The clarify doubts clearly.
Student Self Evaluation of the Short-Term Internship
Date of Evaluation:
1 Oral communication 1 2 3 4 5
2 Written communication 1 2 3 4 5
3 Proactiveness 1 2 3 4 5
4 Interaction ability with community 1 2 3 4 5
5 Positive Attitude 1 2 3 4 5
6 Self-confidence 1 2 3 4 5
7 Ability to learn 1 2 3 4 5
8 Work Plan and organization 1 2 3 4 5
9 Professionalism 1 2 3 4 5
10 Creativity 1 2 3 4 5
11 Quality of work done 1 2 3 4 5
12 Time Management 1 2 3 4 5
13 Understanding the Community 1 2 3 4 5
14 Achievement of Desired Outcomes 1 2 3 4 5
15 OVERALLPERFORMANCE 1 2 3 4 5
Date of Evaluation:
Please note that your evaluation shall be done independent of the Student’s self-
evaluation
1 Oral communication 1 2 3 4 5
2 Written communication 1 2 3 4 5
3 Proactiveness 1 2 3 4 5
4 Interaction ability with community 1 2 3 4 5
5 Positive Attitude 1 2 3 4 5
6 Self-confidence 1 2 3 4 5
7 Ability to learn 1 2 3 4 5
8 Work Plan and organization 1 2 3 4 5
9 Professionalism 1 2 3 4 5
10 Creativity 1 2 3 4 5
11 Quality of work done 1 2 3 4 5
12 Time Management 1 2 3 4 5
13 Understanding the Community 1 2 3 4 5
14 Achievement of Desired Outcomes 1 2 3 4 5
15 OVERALLPERFORMANCE 1 2 3 4 5
PageNo:
PHOTOS&VIDEOLINKS
PageNo:
EVALUATION
PageNo:
Internal Evaluation for Short Term Internship (On-
site/Virtual)
Objectives:
To integrate theory and practice.
To learn to appreciate work and its function towards the future.
To develop work habits and attitudes necessary for job success.
To develop communication, interpersonal and other critical skills in the
future job.
To acquire additional skills required for the world of work.
Assessment Model:
There shall only be internal evaluation.
The Faculty Guide assigned is in-charge of the learning activities of the
students and for the comprehensive and continuous assessment of the
students.
Theassessmentistobeconductedfor100marks.
The number of credits assigned is 4. Later the marks shall be converted into
grades and grade points to include finally in the SGPA and CGPA.
The weightings shall be:
o Activity Log 25marks
o Internship Evaluation 50marks
o Oral Presentation 25marks
Activity Log is the record of the day-to-day activities. The Activity Log is
assessed on an individual basis ,thus allowing for individual members within
groups to be assessed this way. The assessment will take into consideration
the individual student’s involvement in the assigned work.
While evaluating the student’s Activity Log, the following shall be considered
–
a. The individual student’s effort and commitment.
b. The originality and quality of the work produced by the individual
student.
c. The student’s integration and co-operation with the work assigned.
d. The completeness of the Activity Log.
TheInternshipEvaluationshallincludethefollowingcomponentsandbased on
Weekly Reports and Outcomes Description
a. Description of the Work Environment.
PageNo:
b. Real Time Technical Skills acquired.
c. Managerial Skills acquired.
d. Improvement of Communication Skills.
e. Team Dynamics
f. Technological Developments recorded.
PageNo:
MARKSSTATEMENT
(To be used by the Examiners)
PageNo:
INTERNAL ASSESSMENT STATEMENT
Certified by
PageNo:
PageNo: