SlideShare a Scribd company logo
1
A study of Mobile phones
A
PROJECT REPORT ON
โ€œA STUDY OF MOBILE PHONESโ€
SUBMITTED TO,
DEPARTMENT OF STATISTICS,
RAJARAM COLLEGE, KOLHAPUR.
For the SY B.Sc. statistics
By
SHINDE PRASAD VILAS
Under the guidance of,
Miss.PATIL.A.S
2
A study of Mobile phones
RAJARAM COLLEGE, KOLHAPUR
DEPARTMENT OF STATISTICS
This is to certify that the project entitled โ€œTHE
STUDY OF MOBILE PHONESโ€ Is being
submitted by
SHINDE PRASAD VILAS
As a partial SY B.Sc., is a record of bonafide
work carried out by them under my
Supervision and guidance. To the best of our
knowledge the matter Presented in the project
has not been submitted earlier.
Place: Kolhapur
Date:
Project Guide Examiner Head,
Department of statistics,
Rajaram College Kolhapur.
3
A study of Mobile phones
ACKNOWLEDGEMENT
We have a great pleasure while submitting this project
report โ€œA STUDY OF MOBILE PHONESโ€.
We are thankful to Dr.P.B.Lakhani, head of department, for
giving permission for doing this project. We express deep
gratitude towards our project guide Miss. A.S.PATIL, who
gave us guidance and offered us several valuable suggestions
for developing this project in systematic and presentable
manner. Also we are thankful to Miss.P.V.Ransubhe,
A.M.Makandar and Mr.S.L.Patil, all teaching and non-
teaching staff of dept. Of Statistics and Mathematics.
We are also thankful to Mr.A.V.POWAR sir. He is a lecturer in
Shahu College Kolhapur.
We take opportunity to thank those directly or indirectly
related to our project work without their active co-operation
and guidance it would have become extremely difficult to
complete this task in time.
Last but not least, we would like to express our higher regards
to our friends and our parents who inspires us in this work,
without their inspiration the work has almost impossible.
4
A study of Mobile phones
CONTENTS
1. Introduction โ€ฆโ€ฆโ€ฆ.. 5
2. Objectives โ€ฆโ€ฆโ€ฆ.. 6
3. Data Collection Method โ€ฆโ€ฆโ€ฆ.. 7
4. Statistical Tools Used For Data Collection โ€ฆโ€ฆโ€ฆ.. 8
5. Analysis โ€ฆโ€ฆโ€ฆโ€ฆ 9
6. Major Findings โ€ฆโ€ฆโ€ฆโ€ฆ 44
7. Reference โ€ฆโ€ฆโ€ฆโ€ฆ 45
5
A study of Mobile phones
INTRODUCTION
Now a days, there are many mobile companies have
launched the cell phone with advance technologies including
internet browser. According to the prices, so many People have
their own cell phone with some facilities. People use Mobile
phones for various purposes like calls, Internet etc. People also
use some feature like camera, gaming, text messaging etc. This
project is just an attempt to study the Mobile phones by using
methodology of statistics. After the China, India get second
number in mobile phone users in the world.
6
A study of Mobile phones
OBJECTIVES
To study use of Mobile phones in India.
According to following factors:
๏ƒ˜ To verify Most of the People more than 3 hoursโ€™ time
spend on mobile phones.
๏ƒ˜ To verify the Mobile phone type & Quality are dependent.
๏ƒ˜ To verify that internet is most popular.
๏ƒ˜ To check most popular screen size of mobile phones.
๏ƒ˜ To check whether gender & internet usage are
independent or dependent.
๏ƒ˜ To check the time spend on different feature.
๏ƒ˜ To check 18+ how many people use calling even having
unlimited calls facility.
7
A study of Mobile phones
DATA COLLECTION METHOD
In this Project, we want to study the Mobile Phones. For that
purpose the most of the people spend our valuable time mobile
phones, we have collected the data by using the statistical
sampling method.
For implementation of our goal, we have selected a sample of
200 People or students by using simple random sampling
method.
We have prepared a Questionnaire which overlaps all the
maximum characteristics of good Questionnaire.
All the question are mutually exclusive in nature.
8
A study of Mobile phones
STATISTICAL TOOLS USED FOR DATA
ANALYSIS
1. Simple Bar Diagram
2. Pie chart
3. Sub-divided Bar Diagram
4. Multiple Bar Diagram
5. Chi-Square test for independence of attributes.
6. Correlation
7. Rank Correlation
8. Regression analysis
9. Histogram
10. Less & more than ogive curve
SOFTWARE USED
1. MS-Excel
2. R-Software
9
A study of Mobile phones
ANALYSIS
Program:
>lb=seq(9.5,59.5,10)
>ub=seq(19.5,69.5,10)
>m=(lb+ub)/2
>m
[1] 14.5 24.5 34.5 44.5 54.5 64.5
>f=c(72,47,42,18,18,3)
>n=length(m)
>y=rep(m,f)
>m1=c(9.5,m,69.5)
>m1
[1] 9.5 14.5 24.5 34.5 44.5 54.5 64.5 69.5
>f1=c(0,f,0)
>f1
[1] 0 72 47 42 18 18 3 0
>hist(y,xlab="Age
Limits",ylab="Frequency",nclass=n,main="HISTOGRAM",col="pink")
>lines(m1,f1,"l",lwd=2,col="red")
10
A study of Mobile phones
Result:
๏ถMostly people are 10-20 age group.
11
A study of Mobile phones
Program:
> lb=seq(9.5,59.5,10)
> ub=seq(19.5,69.5,10)
> f=c(72,47,42,18,18,3)
> lcf=cumsum(f);lcf
[1] 72 119 161 179 197 200
> k=length(f);k
[1] 6
> mcf=1:k
> for(i in 1:k)
+ {
+ mcf[i]=sum(f[k:i])
+ }
> mcf
[1] 200 128 81 39 21 3
> plot(lb,mcf,"l",xlim=c(9.5,69.5),xlab="Age Limits",ylab="lcf & mcf",main="More
& Less than frequency curve",lwd=2,col=12)
> lines(ub,lcf,"l",lwd=2,col=14)
12
A study of Mobile phones
Result:
The median of age is 28.
13
A study of Mobile phones
Program:
> x=c("0-50","50-100","100-150","150-200")
> a=c(6,8,4,13)
> b=c(21,15,23,25)
> c=c(23,27,23,12)
> d1=data.frame(a,b,c)
> d1
a b c
1 6 21 23
2 8 15 27
3 4 23 23
4 13 25 12
> barplot(t(d1),beside=F,xlab="size",ylab="Frequency",main="Size of
Handset",col=1:3,names.arg=x)
> legend(locator(1),legend=c("small","Medium","Large"),fill=1:3)
14
A study of Mobile phones
Range:
1) Small (Less than 3 inch)
2) Medium (3 to 4.5 inch)
3) Large (more than 4.5 inch)
Conclusion:
๏ƒ˜ Most of the People large (more than 4.5 inch) size of handset refer.
๏ƒ˜ Most of the People large (more than 4.5 inch) size is most popular.
15
A study of Mobile phones
Program:
> Screen=c("Small","Medium","Large","Extra Large")
> choose=c(55,66,53,46)
> choose
[1] 55 66 53 46
> d=data.frame(Screen,choose)
> d
Screen choose
1 Small 55
2 Medium 66
3 Large 53
4 Extra Large 46
> barplot(choose,xlab="Screen",ylab="choice",main="Size of refer
Screen",col=c(2,5,11,12))
> legend(locator(1),legend=Screen,fill=c(2,5,11,12))
16
A study of Mobile phones
Range:
๏ƒผ Small (Less than 2.5 inch)
๏ƒผ Medium (2.5 to 3.5 inch)
๏ƒผ Large (3.5 to 4.5 inch)
๏ƒผ 3) Extra Large (more than 4.5 inch)
Result:
Most of the people medium (2.5 to 3.5 inch) size popular.
Most of the people medium (2.5 to 3.5 inch) size refer
17
A study of Mobile phones
Hypothesis:
H0: Gender & Internet usages are independent
H1: Gender & Internet usages are not independent
Observation Table:
Male Female Total
Yes 81 58 139 0.695
No 16 13 29 0.145
May be 22 10 32 0.16
Total 119 81 200
82.705 56.295
Expected 17.255 11.745 Chisq value 0.4847153
Frequency 19.04 12.96
Observation:
Chi-square tabulated value =5.991
chisq(cal) < chisq(tabulated)
Accept Ho
Conclusion:
Gender & Internet usages are independent
18
A study of Mobile phones
Program:
> x=c("100-249","250-399","400-549","550+")
> y=c(122,47,23,8)
> pie(y, main="Money willing spend on mobile per month", col=c(3,2,1,7), label=x)
> legend(locator(1),legend=x,fill=c(3,2,1,7))
19
A study of Mobile phones
Limitations:
๏ถ 550+ rupees means Money spend more than 550 rupees.
Result:
๏‚ Mostly people are 100-249 rupees willing spend on a mobile.
๏‚ 4% people are 550+ rupees willing spend on a mobile.
20
A study of Mobile phones
Program:
> x=c("Less than 30 min.","30min to 1 hour","1 to 2 hour","more than 2 hour")
> y=c(22,38,46,94)
> pie(y, main="Time Spend on Mobile in a day", col=2:5, label=x)
> legend(locator(1),legend=x,fill=2:5)
21
A study of Mobile phones
Result:
๏‚ง Most People spend more than 2 hourโ€™s time on their
mobile phones. .
22
A study of Mobile phones
Mobile phones & power bank are independent or not using MS Excel.
Hypothesis:
Ho: Mobile phones & power bank are independent.
Ha: Mobile phones & power bank are not independent.
Observation table:
Keypad Touch phone Total
Yes 5 39 44 0.22
No 47 109 156 0.78
Total 52 148 200
11.44 32.56 Expected
40.56 115.44 Value
Chisq value 0.012205
23
A study of Mobile phones
Calculation:
At 5% level of significance
chisquare table value = 3.841
chisquare calculate value = 0.01225
chisquare calculate value < chisquare table value.
Accept Ho.
Therefore 'Ho' is true.
Result:
๏‚ท Mobile phones & power bank are independent.
24
A study of Mobile phones
Program:
> feature=c("CAMERA","INTERNET", "GAMING","TEXT MESSANGING")
> feature
[1] "CAMERA" "INTERNET" "GAMING" "TEXT MESSANGING"
> choose=c(59,127,53,31)
> choose
[1] 59 127 53 31
> d=data.frame(feature,choose)
> d
feature choose
1 CAMERA 59
2 INTERNET 127
3 GAMING 53
4 TEXT MESSANGING 31
> barplot(choose,xlab="feature",ylab="choice",main="simple bar
diagram",col=c(2,3,5,8))
> legend(locator(1),legend=feature,fill=c(2,3,5,8))
25
A study of Mobile phones
Result:
๏ƒš Internet is most popular as well as favorite feature.
26
A study of Mobile phones
Analysis of approximately call receive call in a day.
Program:
> x=c("0-6","6-12","12-18","18+")
> y=c(56,59,40,45)
> pie(y, main="Recieve Call in a Day", col=c("red","green","blue","pink"), label=x)
> legend(locator(1),legend=x,fill=c("red","green","blue","pink"))
27
A study of Mobile phones
Conclusion:
๏ถ Most people receive 6-12 calls per day.
๏ถ Most 18+ people use 22.5 % calling even having unlimited calls
facility
Program:
> x=c("camera","Internet","gaming","messanging","other")
> a=c(95,39,111,119,49)
> b=c(91,61,44,59,85)
28
A study of Mobile phones
> c=c(11,35,33,14,39)
> d=c(2,39,9,5,23)
> e=c(1,26,3,3,4)
> d1=data.frame(a,b,c,d,e)
> d1
a b c d e
1 95 91 11 2 1
2 39 61 35 39 26
3 111 44 33 9 3
4 119 59 14 5 3
5 49 85 39 23 4
>barplot(t(d1),beside=T,xlab="Feature",ylab="population",ylim=c(0,125),main="Ti
me spend on different feature",col=1:5,names.arg=x)
> legend(locator(1),legend=c("Don't use","less than 30min.","30min to
1hour","1to 2hour","2 to3hour"),fill=1:5)
29
A study of Mobile phones
Limitations:
๏ถSome People use any feature more than three hours.
Result:
๏ƒ˜ Most of the people does not use camera , game , messanging
daily.
๏ƒ˜ Some people use less than 30 min Internet & other features.
๏ƒ˜ 13 % people use internet 2 to 3 hours in day today life.
๏ƒ˜ 30% people use internet less than 30 min in daily life.
30
A study of Mobile phones
Hypothesis:
Ho: Mobile phone type & Quality are independent.
Ha: Mobile phone type & Quality are dependent.
Observation table:
Touch keypad Total
low 20 39 59 0.1475
Good 19 41 60 0.15
Very Good 36 49 85 0.2125
Better 45 22 67 0.1675
Best 80 49 129 0.3225
Total 200 200 400
29.5 29.5
30 30
42.5 42.5 Expected
33.5 33.5 Value
64.5 64.5
2.39918E-06
31
A study of Mobile phones
Calculation:
At 5% level of significance
chi-square table value = 9.400
chi-square calculate value = 2.39918E-06
chi-square calculate value > chi-square table value.
Reject Ho.
Therefore 'Ha' is true.
Result:
Alternative Hypothesis is true.
The Mobile phone type & Quality are dependent.
32
A study of Mobile phones
Program:
> x=c("Keypadโ€, โ€œTouch screen")
> a=c(20,39)
> b=c(19,41)
> c=c(36,49)
> d=c(45,22)
> e=c(80,49)
> d1=data.frame(a,b,c,d,e)
> d1
a b c d e
1 20 19 36 45 80
2 39 41 49 22 49
> barplot(t(d1),beside=F,xlab="Mobile
phones",ylab="Rate",ylim=c(0,250),main="Quality of keypad & touch
phone",col=6:10,names.arg=x)
> legend(locator(1),legend=c("Low Good","Good","Very
Good","Better","Best"),fill=6:10)
33
A study of Mobile phones
Result :
๏ƒผ Mobile phones depends upon its qualities.
34
A study of Mobile phones
Observations:
SUMMARY
OUTPUT
Regression
Statistics
Multiple R 0.211712
R Square 0.044822
Adjusted R
Square
-0.27357
Standard
Error
12.46498
Observations 5
ANOVA
Df SS MS F Significance
F
Regression 1 21.87309 21.87309 0.140776 0.732468
Residual 3 466.1269 155.3756
Total 4 488
Coefficients Standard
Error
t Stat P-value Lower 95% Upper
95%
Lower
95.0%
Upper
95.0%
Intercept 36.24496 11.45586 3.16388 0.050719 -0.21269 72.70262 -
0.21269
72.70262
X Variable 1 0.093876 0.250202 0.375201 0.732468 -0.70238 0.89013 -
0.70238
0.89013
35
A study of Mobile phones
Result: the regression equation is
Y=36.24496+0.093876X
36
A study of Mobile phones
Program:
> x=c("List together","List of seprste group","Both")
> x
[1] "List together" "List of seprste group" "Both"
> choose=c(61,79,60)
> choose
[1] 61 79 60
> d=data.frame(x,choose)
> d
x choose
1 List together 61
2 List of seprste group 79
3 Both 60
> barplot(choose,xlab="x",ylab="choice",main="simple bar diagram",col=1:3)
> legend(locator(1),legend=x,fill=1:3).
37
A study of Mobile phones
Note: List together & List of separate group is called as a 'Both'.
Conclusion:
Most People prefer separately listed call log.
38
A study of Mobile phones
Program:
> menu=c("List","Icons")
> menu
[1] "List" "Icons"
> choose=c(67,133)
> choose
[1] 67 133
> d=data.frame(menu,choose)
> d
menu choose
1 List 67
2 Icons 133
> barplot(choose,xlab="menu",ylab="choice",main="Menu
representation",ylim=c(0,140),col=c(2,3))
> legend(locator(1),legend=menu,fill=c(2,3))
39
A study of Mobile phones
Conclusion:
๏ถ # Icons are most popular.
40
A study of Mobile phones
Analysis of data usages in a month.
Program:
> x=c("0-10GB","10-20 GB","20-30 GB","more than 30 GB")
> y=c(94,43,46,17)
> pie(y, main="DATA USAGES", col=3:6, label=x)
> legend(locator(1),legend=x,fill=3:6)
41
A study of Mobile phones
Limitations:
1) If the people are not internet users then their daily data usage
0-10 GB.
Result:
1) Most people use 0 - 10 GB data daily.
2) 8.5 % people use more than 30 GB data.
42
A study of Mobile phones
Program:
> OS=c("ANDROID","MICROSOFT", "iOS","Other")
> OS
[1] "ANDROID" "MICROSOFT" "iOS" "Other"
> choose=c(127,22,35,16)
> choose
[1] 127 22 35 16
> d=data.frame(OS,choose)
> d
OS choose
1 ANDROID 127
2 MICROSOFT 22
3 iOS 35
4 Other 16
> d
[1] 2 39 9 5 23
> barplot(choose,xlab="OS",ylab="choice",main="simple bar diagram",col=2:5)
> legend(locator(1),legend=OS,fill=2:5)
43
A study of Mobile phones
Result:
1) The favorite Operating System is Android.
44
A study of Mobile phones
Observation Table:
Feature Operating
system
Rank Feature Rank
Operating
system
58 127 2 1
96 22 1 3
32 35 3 2
14 16 4 4
Rank
Correlation
0.4
Observation:
Rank Correlation = 0.4
Result:
๏ƒ‡ Rank Correlation between Favorite Feature & Operating
system is 0.4.
๏ƒ‡ Rank Correlation lies between 0 to 1. Hence it is positively
correlated.
45
A study of Mobile phones
MAJOR FINDING
๏ƒ˜ It is concluded that male and female & internet users are
independent.
๏ƒ˜ It concluded that internet is mostly popular.
๏ƒ˜ Samples are taken randomly.
๏ƒ˜ Preference of mobile users only.
๏ƒ˜ It is concluded that mobile phones & its qualities are
dependent.
46
A study of Mobile phones
REFERENCES
1. Fundamental of Mathematical statistics by Gupta and
Kapoor.
2. SY BSc Text Books (Statistics).
3. Programmed Statistics by B.L.Agrawal.
4. 100 Statistical test.
5. Fundamental of Applied statistics by Gupta and .
Kapoor.
47
A study of Mobile phones

More Related Content

What's hot

Study of consumer behaviour towards smartphones
Study of consumer behaviour towards smartphonesStudy of consumer behaviour towards smartphones
Study of consumer behaviour towards smartphones
Suvendu Ghorai
ย 
Questionnaire on mobile phones
Questionnaire on mobile phonesQuestionnaire on mobile phones
Questionnaire on mobile phones
Bethany13
ย 
A survey (Marketing Research) of what customers want in a cell phone design
A survey (Marketing Research) of what customers want in a cell phone designA survey (Marketing Research) of what customers want in a cell phone design
A survey (Marketing Research) of what customers want in a cell phone design
devan_kataria
ย 
Mobile Phone Survey
Mobile Phone SurveyMobile Phone Survey
Mobile Phone Survey
Pradeep R
ย 
Presentation on Consumer Buying Behavior for a Smart Phone: A study on young...
Presentation on Consumer Buying Behavior for a Smart Phone:  A study on young...Presentation on Consumer Buying Behavior for a Smart Phone:  A study on young...
Presentation on Consumer Buying Behavior for a Smart Phone: A study on young...
Sushanka Malakar
ย 
Survey Report on Mobile usage among different age group
Survey Report on Mobile usage among different age groupSurvey Report on Mobile usage among different age group
Survey Report on Mobile usage among different age group
Harsh Tamakuwala
ย 
Vietnam mobile application popularity and user analysis
Vietnam mobile application popularity and user analysisVietnam mobile application popularity and user analysis
Vietnam mobile application popularity and user analysis
Q&Me Vietnam Market Research
ย 
Vietnam Consumer Finance Market Report 2019
Vietnam Consumer Finance Market Report 2019 Vietnam Consumer Finance Market Report 2019
Vietnam Consumer Finance Market Report 2019
FiinGroup JSC
ย 
A study on Usage of Smartphone by College Students
A study on Usage of Smartphone by College StudentsA study on Usage of Smartphone by College Students
A study on Usage of Smartphone by College Students
Siddharth Bhatnagar
ย 
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
IOSR Journals
ย 
Sephora case study
Sephora case studySephora case study
Sephora case study
Sasikumar Sivaraj
ย 
A PROJECT REPORT ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
A PROJECT REPORT  ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONEA PROJECT REPORT  ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
A PROJECT REPORT ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
Vibhor Agarwal
ย 
The Great Indian Smartphone Survey 2022 by 91mobiles
The Great Indian Smartphone Survey 2022 by 91mobilesThe Great Indian Smartphone Survey 2022 by 91mobiles
The Great Indian Smartphone Survey 2022 by 91mobiles
91mobiles
ย 
Consumer perception towards online shopping
Consumer perception towards online shoppingConsumer perception towards online shopping
Consumer perception towards online shopping
Pritam singh
ย 
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€ Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
Prakash Bambhaniya
ย 
How Social Media influence in purchasing decision of Buyer
How Social Media influence in purchasing decision of BuyerHow Social Media influence in purchasing decision of Buyer
How Social Media influence in purchasing decision of Buyer
Nirav Mevcha
ย 
Market Research Proposal for Lenovo
Market Research Proposal for LenovoMarket Research Proposal for Lenovo
Market Research Proposal for Lenovo
TIEZHENG YUAN
ย 
Vietnam bathroom and washing behaviour survey
Vietnam bathroom and washing behaviour surveyVietnam bathroom and washing behaviour survey
Vietnam bathroom and washing behaviour survey
Q&Me Vietnam Market Research
ย 
SMART PHONE PROJECT
SMART PHONE PROJECTSMART PHONE PROJECT
SMART PHONE PROJECT
KALAI ARASAN
ย 
Awareness and usage of mobile applications on post ssss
Awareness and usage of mobile applications on post ssssAwareness and usage of mobile applications on post ssss
Awareness and usage of mobile applications on post ssss
nanthakumar m
ย 

What's hot (20)

Study of consumer behaviour towards smartphones
Study of consumer behaviour towards smartphonesStudy of consumer behaviour towards smartphones
Study of consumer behaviour towards smartphones
ย 
Questionnaire on mobile phones
Questionnaire on mobile phonesQuestionnaire on mobile phones
Questionnaire on mobile phones
ย 
A survey (Marketing Research) of what customers want in a cell phone design
A survey (Marketing Research) of what customers want in a cell phone designA survey (Marketing Research) of what customers want in a cell phone design
A survey (Marketing Research) of what customers want in a cell phone design
ย 
Mobile Phone Survey
Mobile Phone SurveyMobile Phone Survey
Mobile Phone Survey
ย 
Presentation on Consumer Buying Behavior for a Smart Phone: A study on young...
Presentation on Consumer Buying Behavior for a Smart Phone:  A study on young...Presentation on Consumer Buying Behavior for a Smart Phone:  A study on young...
Presentation on Consumer Buying Behavior for a Smart Phone: A study on young...
ย 
Survey Report on Mobile usage among different age group
Survey Report on Mobile usage among different age groupSurvey Report on Mobile usage among different age group
Survey Report on Mobile usage among different age group
ย 
Vietnam mobile application popularity and user analysis
Vietnam mobile application popularity and user analysisVietnam mobile application popularity and user analysis
Vietnam mobile application popularity and user analysis
ย 
Vietnam Consumer Finance Market Report 2019
Vietnam Consumer Finance Market Report 2019 Vietnam Consumer Finance Market Report 2019
Vietnam Consumer Finance Market Report 2019
ย 
A study on Usage of Smartphone by College Students
A study on Usage of Smartphone by College StudentsA study on Usage of Smartphone by College Students
A study on Usage of Smartphone by College Students
ย 
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
Customer Satisfaction in Online Shopping: a study into the reasons for motiva...
ย 
Sephora case study
Sephora case studySephora case study
Sephora case study
ย 
A PROJECT REPORT ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
A PROJECT REPORT  ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONEA PROJECT REPORT  ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
A PROJECT REPORT ON A STUDY ON CONSUMER BUYING BEHAVIOR TOWARDS SMARTPHONE
ย 
The Great Indian Smartphone Survey 2022 by 91mobiles
The Great Indian Smartphone Survey 2022 by 91mobilesThe Great Indian Smartphone Survey 2022 by 91mobiles
The Great Indian Smartphone Survey 2022 by 91mobiles
ย 
Consumer perception towards online shopping
Consumer perception towards online shoppingConsumer perception towards online shopping
Consumer perception towards online shopping
ย 
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€ Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
Research proposal :-โ€œTHE IMPACT OF WHATSAPP ON YOUTH IN BHAVNAGAR CITYโ€
ย 
How Social Media influence in purchasing decision of Buyer
How Social Media influence in purchasing decision of BuyerHow Social Media influence in purchasing decision of Buyer
How Social Media influence in purchasing decision of Buyer
ย 
Market Research Proposal for Lenovo
Market Research Proposal for LenovoMarket Research Proposal for Lenovo
Market Research Proposal for Lenovo
ย 
Vietnam bathroom and washing behaviour survey
Vietnam bathroom and washing behaviour surveyVietnam bathroom and washing behaviour survey
Vietnam bathroom and washing behaviour survey
ย 
SMART PHONE PROJECT
SMART PHONE PROJECTSMART PHONE PROJECT
SMART PHONE PROJECT
ย 
Awareness and usage of mobile applications on post ssss
Awareness and usage of mobile applications on post ssssAwareness and usage of mobile applications on post ssss
Awareness and usage of mobile applications on post ssss
ย 

Similar to ANALYSIS OF MOBILE PHONES

User Activity Analysis Using Accelerometer and Cloud Computing
User Activity Analysis Using Accelerometer and Cloud ComputingUser Activity Analysis Using Accelerometer and Cloud Computing
User Activity Analysis Using Accelerometer and Cloud Computing
Marwan Issa
ย 
PPT_2
PPT_2PPT_2
PPT_2
Rajender Dusa
ย 
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
Neal Lathia
ย 
MANUSCRIPT.docx
MANUSCRIPT.docxMANUSCRIPT.docx
MANUSCRIPT.docx
AlbaracinKingEzekiel
ย 
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPTPERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
Palash Banerjee
ย 
City i-Tick: The android based mobile application for studentsโ€™ attendance at...
City i-Tick: The android based mobile application for studentsโ€™ attendance at...City i-Tick: The android based mobile application for studentsโ€™ attendance at...
City i-Tick: The android based mobile application for studentsโ€™ attendance at...
journalBEEI
ย 
human activity recognization using machine learning with data analysis
human activity recognization using machine learning with data analysishuman activity recognization using machine learning with data analysis
human activity recognization using machine learning with data analysis
Venkat Projects
ย 
Leveraging the Power of Smartphones: Real Time Monitoring of Water Points
Leveraging the Power of Smartphones: Real Time Monitoring of Water PointsLeveraging the Power of Smartphones: Real Time Monitoring of Water Points
Leveraging the Power of Smartphones: Real Time Monitoring of Water Points
IJERA Editor
ย 
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
IRJET Journal
ย 
smartwatch-user-identification
smartwatch-user-identificationsmartwatch-user-identification
smartwatch-user-identification
Sebastian W. Cheah
ย 
Mobile application testing matrix
Mobile application testing matrixMobile application testing matrix
Mobile application testing matrix
csandit
ย 
AUTOMATED PROCTORING SYSTEM
AUTOMATED PROCTORING SYSTEMAUTOMATED PROCTORING SYSTEM
AUTOMATED PROCTORING SYSTEM
IRJET Journal
ย 
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docxAssignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
braycarissa250
ย 
Human Activity Recognition in Android
Human Activity Recognition in AndroidHuman Activity Recognition in Android
Human Activity Recognition in Android
Surbhi Jain
ย 
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptx
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptxAge Estimation And Gender Prediction Using Convolutional Neural Network.pptx
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptx
Bulbul Agrawal
ย 
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-SeriesBehaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
Jiang Zhu
ย 
EyePhone.ppt
EyePhone.pptEyePhone.ppt
EyePhone.ppt
muthu824918
ย 
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
Global Risk Forum GRFDavos
ย 
Report: A Model For Remote Parental Control System Using Smartphones
Report: A Model For Remote Parental Control System Using SmartphonesReport: A Model For Remote Parental Control System Using Smartphones
Report: A Model For Remote Parental Control System Using Smartphones
IJCI JOURNAL
ย 
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUESBEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
ijaia
ย 

Similar to ANALYSIS OF MOBILE PHONES (20)

User Activity Analysis Using Accelerometer and Cloud Computing
User Activity Analysis Using Accelerometer and Cloud ComputingUser Activity Analysis Using Accelerometer and Cloud Computing
User Activity Analysis Using Accelerometer and Cloud Computing
ย 
PPT_2
PPT_2PPT_2
PPT_2
ย 
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
Opportunities and Challenges of Using Smartphones for Health Monitoring and I...
ย 
MANUSCRIPT.docx
MANUSCRIPT.docxMANUSCRIPT.docx
MANUSCRIPT.docx
ย 
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPTPERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
PERCEPTION OF MOBILE APPS AMONG COMMON PEOPLE PPT
ย 
City i-Tick: The android based mobile application for studentsโ€™ attendance at...
City i-Tick: The android based mobile application for studentsโ€™ attendance at...City i-Tick: The android based mobile application for studentsโ€™ attendance at...
City i-Tick: The android based mobile application for studentsโ€™ attendance at...
ย 
human activity recognization using machine learning with data analysis
human activity recognization using machine learning with data analysishuman activity recognization using machine learning with data analysis
human activity recognization using machine learning with data analysis
ย 
Leveraging the Power of Smartphones: Real Time Monitoring of Water Points
Leveraging the Power of Smartphones: Real Time Monitoring of Water PointsLeveraging the Power of Smartphones: Real Time Monitoring of Water Points
Leveraging the Power of Smartphones: Real Time Monitoring of Water Points
ย 
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
ย 
smartwatch-user-identification
smartwatch-user-identificationsmartwatch-user-identification
smartwatch-user-identification
ย 
Mobile application testing matrix
Mobile application testing matrixMobile application testing matrix
Mobile application testing matrix
ย 
AUTOMATED PROCTORING SYSTEM
AUTOMATED PROCTORING SYSTEMAUTOMATED PROCTORING SYSTEM
AUTOMATED PROCTORING SYSTEM
ย 
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docxAssignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
Assignment 5 Multi-ClassificationDue date Mar 13th, 2020.docx
ย 
Human Activity Recognition in Android
Human Activity Recognition in AndroidHuman Activity Recognition in Android
Human Activity Recognition in Android
ย 
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptx
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptxAge Estimation And Gender Prediction Using Convolutional Neural Network.pptx
Age Estimation And Gender Prediction Using Convolutional Neural Network.pptx
ย 
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-SeriesBehaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
Behaviometrics: Behavior Modeling from Heterogeneous Sensory Time-Series
ย 
EyePhone.ppt
EyePhone.pptEyePhone.ppt
EyePhone.ppt
ย 
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
The Study Of Fatigue Compared Between Touch Screen And Keypad Mobile Phones W...
ย 
Report: A Model For Remote Parental Control System Using Smartphones
Report: A Model For Remote Parental Control System Using SmartphonesReport: A Model For Remote Parental Control System Using Smartphones
Report: A Model For Remote Parental Control System Using Smartphones
ย 
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUESBEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
BEHAVIOR-BASED SECURITY FOR MOBILE DEVICES USING MACHINE LEARNING TECHNIQUES
ย 

Recently uploaded

Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
ย 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
ย 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
ย 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
ย 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
ย 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
giancarloi8888
ย 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
ย 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
melliereed
ย 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
ย 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
ย 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
ย 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
ย 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
ย 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
zuzanka
ย 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
ย 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
ย 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
ย 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
ย 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
ย 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
JomonJoseph58
ย 

Recently uploaded (20)

Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
ย 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
ย 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
ย 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
ย 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
ย 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
ย 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
ย 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
ย 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
ย 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
ย 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
ย 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
ย 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
ย 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
ย 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
ย 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
ย 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
ย 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
ย 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ย 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
ย 

ANALYSIS OF MOBILE PHONES

  • 1. 1 A study of Mobile phones A PROJECT REPORT ON โ€œA STUDY OF MOBILE PHONESโ€ SUBMITTED TO, DEPARTMENT OF STATISTICS, RAJARAM COLLEGE, KOLHAPUR. For the SY B.Sc. statistics By SHINDE PRASAD VILAS Under the guidance of, Miss.PATIL.A.S
  • 2. 2 A study of Mobile phones RAJARAM COLLEGE, KOLHAPUR DEPARTMENT OF STATISTICS This is to certify that the project entitled โ€œTHE STUDY OF MOBILE PHONESโ€ Is being submitted by SHINDE PRASAD VILAS As a partial SY B.Sc., is a record of bonafide work carried out by them under my Supervision and guidance. To the best of our knowledge the matter Presented in the project has not been submitted earlier. Place: Kolhapur Date: Project Guide Examiner Head, Department of statistics, Rajaram College Kolhapur.
  • 3. 3 A study of Mobile phones ACKNOWLEDGEMENT We have a great pleasure while submitting this project report โ€œA STUDY OF MOBILE PHONESโ€. We are thankful to Dr.P.B.Lakhani, head of department, for giving permission for doing this project. We express deep gratitude towards our project guide Miss. A.S.PATIL, who gave us guidance and offered us several valuable suggestions for developing this project in systematic and presentable manner. Also we are thankful to Miss.P.V.Ransubhe, A.M.Makandar and Mr.S.L.Patil, all teaching and non- teaching staff of dept. Of Statistics and Mathematics. We are also thankful to Mr.A.V.POWAR sir. He is a lecturer in Shahu College Kolhapur. We take opportunity to thank those directly or indirectly related to our project work without their active co-operation and guidance it would have become extremely difficult to complete this task in time. Last but not least, we would like to express our higher regards to our friends and our parents who inspires us in this work, without their inspiration the work has almost impossible.
  • 4. 4 A study of Mobile phones CONTENTS 1. Introduction โ€ฆโ€ฆโ€ฆ.. 5 2. Objectives โ€ฆโ€ฆโ€ฆ.. 6 3. Data Collection Method โ€ฆโ€ฆโ€ฆ.. 7 4. Statistical Tools Used For Data Collection โ€ฆโ€ฆโ€ฆ.. 8 5. Analysis โ€ฆโ€ฆโ€ฆโ€ฆ 9 6. Major Findings โ€ฆโ€ฆโ€ฆโ€ฆ 44 7. Reference โ€ฆโ€ฆโ€ฆโ€ฆ 45
  • 5. 5 A study of Mobile phones INTRODUCTION Now a days, there are many mobile companies have launched the cell phone with advance technologies including internet browser. According to the prices, so many People have their own cell phone with some facilities. People use Mobile phones for various purposes like calls, Internet etc. People also use some feature like camera, gaming, text messaging etc. This project is just an attempt to study the Mobile phones by using methodology of statistics. After the China, India get second number in mobile phone users in the world.
  • 6. 6 A study of Mobile phones OBJECTIVES To study use of Mobile phones in India. According to following factors: ๏ƒ˜ To verify Most of the People more than 3 hoursโ€™ time spend on mobile phones. ๏ƒ˜ To verify the Mobile phone type & Quality are dependent. ๏ƒ˜ To verify that internet is most popular. ๏ƒ˜ To check most popular screen size of mobile phones. ๏ƒ˜ To check whether gender & internet usage are independent or dependent. ๏ƒ˜ To check the time spend on different feature. ๏ƒ˜ To check 18+ how many people use calling even having unlimited calls facility.
  • 7. 7 A study of Mobile phones DATA COLLECTION METHOD In this Project, we want to study the Mobile Phones. For that purpose the most of the people spend our valuable time mobile phones, we have collected the data by using the statistical sampling method. For implementation of our goal, we have selected a sample of 200 People or students by using simple random sampling method. We have prepared a Questionnaire which overlaps all the maximum characteristics of good Questionnaire. All the question are mutually exclusive in nature.
  • 8. 8 A study of Mobile phones STATISTICAL TOOLS USED FOR DATA ANALYSIS 1. Simple Bar Diagram 2. Pie chart 3. Sub-divided Bar Diagram 4. Multiple Bar Diagram 5. Chi-Square test for independence of attributes. 6. Correlation 7. Rank Correlation 8. Regression analysis 9. Histogram 10. Less & more than ogive curve SOFTWARE USED 1. MS-Excel 2. R-Software
  • 9. 9 A study of Mobile phones ANALYSIS Program: >lb=seq(9.5,59.5,10) >ub=seq(19.5,69.5,10) >m=(lb+ub)/2 >m [1] 14.5 24.5 34.5 44.5 54.5 64.5 >f=c(72,47,42,18,18,3) >n=length(m) >y=rep(m,f) >m1=c(9.5,m,69.5) >m1 [1] 9.5 14.5 24.5 34.5 44.5 54.5 64.5 69.5 >f1=c(0,f,0) >f1 [1] 0 72 47 42 18 18 3 0 >hist(y,xlab="Age Limits",ylab="Frequency",nclass=n,main="HISTOGRAM",col="pink") >lines(m1,f1,"l",lwd=2,col="red")
  • 10. 10 A study of Mobile phones Result: ๏ถMostly people are 10-20 age group.
  • 11. 11 A study of Mobile phones Program: > lb=seq(9.5,59.5,10) > ub=seq(19.5,69.5,10) > f=c(72,47,42,18,18,3) > lcf=cumsum(f);lcf [1] 72 119 161 179 197 200 > k=length(f);k [1] 6 > mcf=1:k > for(i in 1:k) + { + mcf[i]=sum(f[k:i]) + } > mcf [1] 200 128 81 39 21 3 > plot(lb,mcf,"l",xlim=c(9.5,69.5),xlab="Age Limits",ylab="lcf & mcf",main="More & Less than frequency curve",lwd=2,col=12) > lines(ub,lcf,"l",lwd=2,col=14)
  • 12. 12 A study of Mobile phones Result: The median of age is 28.
  • 13. 13 A study of Mobile phones Program: > x=c("0-50","50-100","100-150","150-200") > a=c(6,8,4,13) > b=c(21,15,23,25) > c=c(23,27,23,12) > d1=data.frame(a,b,c) > d1 a b c 1 6 21 23 2 8 15 27 3 4 23 23 4 13 25 12 > barplot(t(d1),beside=F,xlab="size",ylab="Frequency",main="Size of Handset",col=1:3,names.arg=x) > legend(locator(1),legend=c("small","Medium","Large"),fill=1:3)
  • 14. 14 A study of Mobile phones Range: 1) Small (Less than 3 inch) 2) Medium (3 to 4.5 inch) 3) Large (more than 4.5 inch) Conclusion: ๏ƒ˜ Most of the People large (more than 4.5 inch) size of handset refer. ๏ƒ˜ Most of the People large (more than 4.5 inch) size is most popular.
  • 15. 15 A study of Mobile phones Program: > Screen=c("Small","Medium","Large","Extra Large") > choose=c(55,66,53,46) > choose [1] 55 66 53 46 > d=data.frame(Screen,choose) > d Screen choose 1 Small 55 2 Medium 66 3 Large 53 4 Extra Large 46 > barplot(choose,xlab="Screen",ylab="choice",main="Size of refer Screen",col=c(2,5,11,12)) > legend(locator(1),legend=Screen,fill=c(2,5,11,12))
  • 16. 16 A study of Mobile phones Range: ๏ƒผ Small (Less than 2.5 inch) ๏ƒผ Medium (2.5 to 3.5 inch) ๏ƒผ Large (3.5 to 4.5 inch) ๏ƒผ 3) Extra Large (more than 4.5 inch) Result: Most of the people medium (2.5 to 3.5 inch) size popular. Most of the people medium (2.5 to 3.5 inch) size refer
  • 17. 17 A study of Mobile phones Hypothesis: H0: Gender & Internet usages are independent H1: Gender & Internet usages are not independent Observation Table: Male Female Total Yes 81 58 139 0.695 No 16 13 29 0.145 May be 22 10 32 0.16 Total 119 81 200 82.705 56.295 Expected 17.255 11.745 Chisq value 0.4847153 Frequency 19.04 12.96 Observation: Chi-square tabulated value =5.991 chisq(cal) < chisq(tabulated) Accept Ho Conclusion: Gender & Internet usages are independent
  • 18. 18 A study of Mobile phones Program: > x=c("100-249","250-399","400-549","550+") > y=c(122,47,23,8) > pie(y, main="Money willing spend on mobile per month", col=c(3,2,1,7), label=x) > legend(locator(1),legend=x,fill=c(3,2,1,7))
  • 19. 19 A study of Mobile phones Limitations: ๏ถ 550+ rupees means Money spend more than 550 rupees. Result: ๏‚ Mostly people are 100-249 rupees willing spend on a mobile. ๏‚ 4% people are 550+ rupees willing spend on a mobile.
  • 20. 20 A study of Mobile phones Program: > x=c("Less than 30 min.","30min to 1 hour","1 to 2 hour","more than 2 hour") > y=c(22,38,46,94) > pie(y, main="Time Spend on Mobile in a day", col=2:5, label=x) > legend(locator(1),legend=x,fill=2:5)
  • 21. 21 A study of Mobile phones Result: ๏‚ง Most People spend more than 2 hourโ€™s time on their mobile phones. .
  • 22. 22 A study of Mobile phones Mobile phones & power bank are independent or not using MS Excel. Hypothesis: Ho: Mobile phones & power bank are independent. Ha: Mobile phones & power bank are not independent. Observation table: Keypad Touch phone Total Yes 5 39 44 0.22 No 47 109 156 0.78 Total 52 148 200 11.44 32.56 Expected 40.56 115.44 Value Chisq value 0.012205
  • 23. 23 A study of Mobile phones Calculation: At 5% level of significance chisquare table value = 3.841 chisquare calculate value = 0.01225 chisquare calculate value < chisquare table value. Accept Ho. Therefore 'Ho' is true. Result: ๏‚ท Mobile phones & power bank are independent.
  • 24. 24 A study of Mobile phones Program: > feature=c("CAMERA","INTERNET", "GAMING","TEXT MESSANGING") > feature [1] "CAMERA" "INTERNET" "GAMING" "TEXT MESSANGING" > choose=c(59,127,53,31) > choose [1] 59 127 53 31 > d=data.frame(feature,choose) > d feature choose 1 CAMERA 59 2 INTERNET 127 3 GAMING 53 4 TEXT MESSANGING 31 > barplot(choose,xlab="feature",ylab="choice",main="simple bar diagram",col=c(2,3,5,8)) > legend(locator(1),legend=feature,fill=c(2,3,5,8))
  • 25. 25 A study of Mobile phones Result: ๏ƒš Internet is most popular as well as favorite feature.
  • 26. 26 A study of Mobile phones Analysis of approximately call receive call in a day. Program: > x=c("0-6","6-12","12-18","18+") > y=c(56,59,40,45) > pie(y, main="Recieve Call in a Day", col=c("red","green","blue","pink"), label=x) > legend(locator(1),legend=x,fill=c("red","green","blue","pink"))
  • 27. 27 A study of Mobile phones Conclusion: ๏ถ Most people receive 6-12 calls per day. ๏ถ Most 18+ people use 22.5 % calling even having unlimited calls facility Program: > x=c("camera","Internet","gaming","messanging","other") > a=c(95,39,111,119,49) > b=c(91,61,44,59,85)
  • 28. 28 A study of Mobile phones > c=c(11,35,33,14,39) > d=c(2,39,9,5,23) > e=c(1,26,3,3,4) > d1=data.frame(a,b,c,d,e) > d1 a b c d e 1 95 91 11 2 1 2 39 61 35 39 26 3 111 44 33 9 3 4 119 59 14 5 3 5 49 85 39 23 4 >barplot(t(d1),beside=T,xlab="Feature",ylab="population",ylim=c(0,125),main="Ti me spend on different feature",col=1:5,names.arg=x) > legend(locator(1),legend=c("Don't use","less than 30min.","30min to 1hour","1to 2hour","2 to3hour"),fill=1:5)
  • 29. 29 A study of Mobile phones Limitations: ๏ถSome People use any feature more than three hours. Result: ๏ƒ˜ Most of the people does not use camera , game , messanging daily. ๏ƒ˜ Some people use less than 30 min Internet & other features. ๏ƒ˜ 13 % people use internet 2 to 3 hours in day today life. ๏ƒ˜ 30% people use internet less than 30 min in daily life.
  • 30. 30 A study of Mobile phones Hypothesis: Ho: Mobile phone type & Quality are independent. Ha: Mobile phone type & Quality are dependent. Observation table: Touch keypad Total low 20 39 59 0.1475 Good 19 41 60 0.15 Very Good 36 49 85 0.2125 Better 45 22 67 0.1675 Best 80 49 129 0.3225 Total 200 200 400 29.5 29.5 30 30 42.5 42.5 Expected 33.5 33.5 Value 64.5 64.5 2.39918E-06
  • 31. 31 A study of Mobile phones Calculation: At 5% level of significance chi-square table value = 9.400 chi-square calculate value = 2.39918E-06 chi-square calculate value > chi-square table value. Reject Ho. Therefore 'Ha' is true. Result: Alternative Hypothesis is true. The Mobile phone type & Quality are dependent.
  • 32. 32 A study of Mobile phones Program: > x=c("Keypadโ€, โ€œTouch screen") > a=c(20,39) > b=c(19,41) > c=c(36,49) > d=c(45,22) > e=c(80,49) > d1=data.frame(a,b,c,d,e) > d1 a b c d e 1 20 19 36 45 80 2 39 41 49 22 49 > barplot(t(d1),beside=F,xlab="Mobile phones",ylab="Rate",ylim=c(0,250),main="Quality of keypad & touch phone",col=6:10,names.arg=x) > legend(locator(1),legend=c("Low Good","Good","Very Good","Better","Best"),fill=6:10)
  • 33. 33 A study of Mobile phones Result : ๏ƒผ Mobile phones depends upon its qualities.
  • 34. 34 A study of Mobile phones Observations: SUMMARY OUTPUT Regression Statistics Multiple R 0.211712 R Square 0.044822 Adjusted R Square -0.27357 Standard Error 12.46498 Observations 5 ANOVA Df SS MS F Significance F Regression 1 21.87309 21.87309 0.140776 0.732468 Residual 3 466.1269 155.3756 Total 4 488 Coefficients Standard Error t Stat P-value Lower 95% Upper 95% Lower 95.0% Upper 95.0% Intercept 36.24496 11.45586 3.16388 0.050719 -0.21269 72.70262 - 0.21269 72.70262 X Variable 1 0.093876 0.250202 0.375201 0.732468 -0.70238 0.89013 - 0.70238 0.89013
  • 35. 35 A study of Mobile phones Result: the regression equation is Y=36.24496+0.093876X
  • 36. 36 A study of Mobile phones Program: > x=c("List together","List of seprste group","Both") > x [1] "List together" "List of seprste group" "Both" > choose=c(61,79,60) > choose [1] 61 79 60 > d=data.frame(x,choose) > d x choose 1 List together 61 2 List of seprste group 79 3 Both 60 > barplot(choose,xlab="x",ylab="choice",main="simple bar diagram",col=1:3) > legend(locator(1),legend=x,fill=1:3).
  • 37. 37 A study of Mobile phones Note: List together & List of separate group is called as a 'Both'. Conclusion: Most People prefer separately listed call log.
  • 38. 38 A study of Mobile phones Program: > menu=c("List","Icons") > menu [1] "List" "Icons" > choose=c(67,133) > choose [1] 67 133 > d=data.frame(menu,choose) > d menu choose 1 List 67 2 Icons 133 > barplot(choose,xlab="menu",ylab="choice",main="Menu representation",ylim=c(0,140),col=c(2,3)) > legend(locator(1),legend=menu,fill=c(2,3))
  • 39. 39 A study of Mobile phones Conclusion: ๏ถ # Icons are most popular.
  • 40. 40 A study of Mobile phones Analysis of data usages in a month. Program: > x=c("0-10GB","10-20 GB","20-30 GB","more than 30 GB") > y=c(94,43,46,17) > pie(y, main="DATA USAGES", col=3:6, label=x) > legend(locator(1),legend=x,fill=3:6)
  • 41. 41 A study of Mobile phones Limitations: 1) If the people are not internet users then their daily data usage 0-10 GB. Result: 1) Most people use 0 - 10 GB data daily. 2) 8.5 % people use more than 30 GB data.
  • 42. 42 A study of Mobile phones Program: > OS=c("ANDROID","MICROSOFT", "iOS","Other") > OS [1] "ANDROID" "MICROSOFT" "iOS" "Other" > choose=c(127,22,35,16) > choose [1] 127 22 35 16 > d=data.frame(OS,choose) > d OS choose 1 ANDROID 127 2 MICROSOFT 22 3 iOS 35 4 Other 16 > d [1] 2 39 9 5 23 > barplot(choose,xlab="OS",ylab="choice",main="simple bar diagram",col=2:5) > legend(locator(1),legend=OS,fill=2:5)
  • 43. 43 A study of Mobile phones Result: 1) The favorite Operating System is Android.
  • 44. 44 A study of Mobile phones Observation Table: Feature Operating system Rank Feature Rank Operating system 58 127 2 1 96 22 1 3 32 35 3 2 14 16 4 4 Rank Correlation 0.4 Observation: Rank Correlation = 0.4 Result: ๏ƒ‡ Rank Correlation between Favorite Feature & Operating system is 0.4. ๏ƒ‡ Rank Correlation lies between 0 to 1. Hence it is positively correlated.
  • 45. 45 A study of Mobile phones MAJOR FINDING ๏ƒ˜ It is concluded that male and female & internet users are independent. ๏ƒ˜ It concluded that internet is mostly popular. ๏ƒ˜ Samples are taken randomly. ๏ƒ˜ Preference of mobile users only. ๏ƒ˜ It is concluded that mobile phones & its qualities are dependent.
  • 46. 46 A study of Mobile phones REFERENCES 1. Fundamental of Mathematical statistics by Gupta and Kapoor. 2. SY BSc Text Books (Statistics). 3. Programmed Statistics by B.L.Agrawal. 4. 100 Statistical test. 5. Fundamental of Applied statistics by Gupta and . Kapoor.
  • 47. 47 A study of Mobile phones