-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey_coded.xml
6018 lines (6018 loc) · 346 KB
/
survey_coded.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Author>Linda Lee</Author>
<LastAuthor>Linda Lee</LastAuthor>
<Created>2014-09-19T00:22:00Z</Created>
<LastSaved>2014-09-19T07:29:01Z</LastSaved>
<Company>UC Berkeley</Company>
<Version>14.0</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>12820</WindowHeight>
<WindowWidth>28800</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<Date1904/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="12" ss:Color="#000000"/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s62">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
</Style>
</Styles>
<Worksheet ss:Name="WebcamPerceptions.csv">
<Names>
<NamedRange ss:Name="_FilterDatabase"
ss:RefersTo="=WebcamPerceptions.csv!R1C6:R492C8" ss:Hidden="1"/>
<NamedRange ss:Name="Criteria" ss:RefersTo="=WebcamPerceptions.csv!C7"/>
</Names>
<Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="499" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s62" ss:DefaultColumnWidth="135"
ss:DefaultRowHeight="15">
<Row ss:AutoFitHeight="0" ss:Height="156">
<Cell><Data ss:Type="String">Response ID</Data></Cell>
<Cell><Data ss:Type="String">Q5: What is the purpose of the light near the webcam? If you do not know, please mention "I don't know" in the text box below.</Data></Cell>
<Cell><Data ss:Type="String">Linda's Answers</Data></Cell>
<Cell><Data ss:Type="String">Pratyush's Answers</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">Response ID</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Q:22 Do you think it would be possible for a hacker to spy on you through your webcam?</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Q23: Why or Why not?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Linda's Answers</Data></Cell>
<Cell><Data ss:Type="String">Pratyush's Answers</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Q11: Have you ever noticed the webcam light come on at a time when you were not using your webcam?</Data></Cell>
<Cell><Data ss:Type="String">Q12: Yes :Have you ever noticed the webcam light come on at a time when you were not using your webcam (for example, when you were not video chatting, recording video, or anything like that)?</Data></Cell>
<Cell><Data ss:Type="String">Linda's Answers</Data></Cell>
<Cell><Data ss:Type="String">Pratyush's Answers</Data></Cell>
</Row>
<Row ss:Height="120">
<Cell><Data ss:Type="Number">11</Data></Cell>
<Cell><Data ss:Type="String">To illuminate my face or whatever I am taking a video of in-case the lighting is poor in the room I'm in</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">25</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">My webcam is an external one. I have it sit atop my laptop screen when I am using. When I am done using it, I disconnect it and put it away because it sits so awkwardly atop my monitor on my laptop</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">12</Data></Cell>
<Cell><Data ss:Type="String">To notify that it is working.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">55</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">i think it is not possible hacker spy on my webcam because my webcam usage is very low</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">13</Data></Cell>
<Cell><Data ss:Type="String">I think it adjusts the lighting</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">80</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I had installed good antivirus software.It protects unwanted sites.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">14</Data></Cell>
<Cell><Data ss:Type="String">It tells me if the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">84</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">There is a very small chance I would be spied on since I am not rich, am a 33 year old man and I use a Mac. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">Login for my comp.</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">15</Data></Cell>
<Cell><Data ss:Type="String">to indicate when recording</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">85</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I doubt a hacker could wireless access my cam and turn it on.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">16</Data></Cell>
<Cell><Data ss:Type="String">To give better lighting to your picture/video.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">86</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">according to my knowledge i think it is not possible to hack the web camera in my computer</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">18</Data></Cell>
<Cell><Data ss:Type="String">to tell me that the webcam is on or in use</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">88</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I always unplug my webcam when I am not using it. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">19</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">96</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">My webcam has a power switch on it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">21</Data></Cell>
<Cell><Data ss:Type="String">THE PURPOSE OF THE LIGHT NEAR THE WEBCAM IS TO SHOW THE PERSON IN THIS SIDE TO THE PERSON CHATTING OTHER SIDE. </Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">143</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">They would have to turn on my cam without me noticing</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">22</Data></Cell>
<Cell><Data ss:Type="String">To give better lighting for the subject.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">146</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I don't think they can get access to it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">23</Data></Cell>
<Cell><Data ss:Type="String">To show that the webcam is in use.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">148</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">because it is in my home and the PC and webcam is on my personal room </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">24</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">158</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I am not sure how they would do it, so I do not believe it would happen to me.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">25</Data></Cell>
<Cell><Data ss:Type="String">to show that the webcam is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">176</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Because I keep my webcam disabled when I do not need to use it. I also have a small piece of paper covering my webcam just to be safe. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">26</Data></Cell>
<Cell><Data ss:Type="String">I don't know.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">186</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I think anything is possible.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">27</Data></Cell>
<Cell><Data ss:Type="String">To indicate whether the cam is on or not</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">188</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I usually cover the lens to avoid the bright LED's shining into my eyes. Only while using the webcam, I remove the cover.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">29</Data></Cell>
<Cell><Data ss:Type="String">I think it just indicates when it's turned on...?</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">192</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I run full system security scans very frequently and never share access rights to anybody besides myself.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">30</Data></Cell>
<Cell><Data ss:Type="String">It indicates when the camera is on and working.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">199</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">because i don't think hackers can have access to my computer</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">It turned on when my laptop was infected with spyware.</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">31</Data></Cell>
<Cell><Data ss:Type="String">to show when it is on and being used</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">200</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">its good</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">32</Data></Cell>
<Cell><Data ss:Type="String">It is to provide additional light so I am more visible when I am using the webcam</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">201</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I'm using a Mac, and I'm very careful when it comes to install apps and plugins.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">33</Data></Cell>
<Cell><Data ss:Type="String">It indicates the webcam is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">215</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Unless they were able to turn the light off, I would know, and I don't see that as a likelyhood.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">34</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">220</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I believe that I have my security settings adjusted so they don't allow unknown access.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">35</Data></Cell>
<Cell><Data ss:Type="String">face is clearly view</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">224</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">No because my webcam only comes online when I use and it's not connected to specific server that can be hacked.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">36</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">225</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">i do not think he can access the hardware</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">37</Data></Cell>
<Cell><Data ss:Type="String">I dont know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">231</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I don't think it's possible. It would take too much work and I always unplug my webcam when not in usage.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I think when Im booting up the computer it comes on</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">38</Data></Cell>
<Cell><Data ss:Type="String">To illuminate the face, since the picture quality from the webcam tends to be dark. or it means its turned on.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">235</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I have antivirus protection on my computer, so I do not think someone could spy on me.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">39</Data></Cell>
<Cell><Data ss:Type="String">To indicate the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">253</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">security measures</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">40</Data></Cell>
<Cell><Data ss:Type="String">To let me know the webcam is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">256</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">It's always covered</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">41</Data></Cell>
<Cell><Data ss:Type="String">I think its to make it easier to see the images on your screen that the webcam is recording. </Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">264</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">As soon as I notice that the webcam is on without my prior permission, I would take immediate action to counter and block off the intrusion.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">43</Data></Cell>
<Cell><Data ss:Type="String">I don't know.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">269</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">You have to have a password and be connected to the wecam.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="180">
<Cell><Data ss:Type="Number">44</Data></Cell>
<Cell><Data ss:Type="String">It tells me when it is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">274</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">All operating systems have vulnerabilties. I am sure if a hacker really wanted to access my webcam it would be difficult to stop them. However, all I have to do is cover the camera with electrical tape and it would then be impossible for the hacker to receive any useful webcam video.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="Number">45</Data></Cell>
<Cell><Data ss:Type="String">So I know it's on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">277</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Because I take the necessary precautions to prevent someone from spying on my webcam. I am careful on which sites I go to and I have a good anti virus program</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">47</Data></Cell>
<Cell><Data ss:Type="String">i don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">284</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I keep the lens of my camera covered when I'm not using it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">48</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">295</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Not connected to internet and I am not that important to get hacked</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">49</Data></Cell>
<Cell><Data ss:Type="String">TO MAKE USER AWARE THAT WEBCAM IS ON</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">297</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Me personally, no as I take great care to avoid perceived threats. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">50</Data></Cell>
<Cell><Data ss:Type="String">To indicate when the camera is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">302</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">tight security and precautions</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">51</Data></Cell>
<Cell><Data ss:Type="String">used for more brightness</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">307</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Because I do have firewall and K7 anti-virus. Think that will restrict all the spy action.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">52</Data></Cell>
<Cell><Data ss:Type="String">To let me know that the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">313</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Because I am very computer savvy and have multiple virus/malware scans and scan my computer daily.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">53</Data></Cell>
<Cell><Data ss:Type="String">I dont know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">323</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">i just dont see how anyone can</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">54</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">324</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">My webcam is external and attaches by USB and I only attach it when I'm using it and remove it right after.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">When my computer was started.</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">55</Data></Cell>
<Cell><Data ss:Type="String">the light near the webcam not enough in brightness that time use light for the purpose</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">350</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Our home network is very secure.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">56</Data></Cell>
<Cell><Data ss:Type="String">To tell the user the webcam is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">358</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I unplug it when not in use.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">57</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">382</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">safe</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">58</Data></Cell>
<Cell><Data ss:Type="String">It is there to let me know the webcam is currently on and in operation.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">386</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">don know</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">59</Data></Cell>
<Cell><Data ss:Type="String">To indicate if it is active or not</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">390</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I know enough about computers to not let myself be hacked or have a RAT program installed on my computer unknowingly.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="Number">60</Data></Cell>
<Cell><Data ss:Type="String">To let me know that it is running, or to take a picture.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">410</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I would have found some evidence by now of a rouge process stealing bandwidth, storing files. I would blame anti spyware anti virus for not alerting me sooner.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">61</Data></Cell>
<Cell><Data ss:Type="String">to let you know the web cam is operating</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">420</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I know a lot about computers and hardware.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="225">
<Cell><Data ss:Type="Number">62</Data></Cell>
<Cell><Data ss:Type="String">To show that the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">429</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">There is a remote possibility but I answered "no" to this because I always have up to date anti-virus software on my PC and my webcam is only plugged in whenever I intend on using it. There's no way a hacker could spy on me when the cam is unplugged and completely detached from the PC. I've never owned a laptop, only desktop computers.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">63</Data></Cell>
<Cell><Data ss:Type="String">I dont know.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">433</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">My webcam is disabled in my computer. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="120">
<Cell><Data ss:Type="Number">64</Data></Cell>
<Cell><Data ss:Type="String">To know if the camera in on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">446</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I believe the light is hardwired to the webcam so it will turn on whenever the cam is on, and there is no way to make it so the light doesn't turn on when the webcam is on. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="120">
<Cell><Data ss:Type="Number">65</Data></Cell>
<Cell><Data ss:Type="String">to show that it's on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">447</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I believe it's built into the laptop to have the light on immediately when the webcam is in use. I also believe that remotely, it would be hard for someone to turn your webcam on.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">66</Data></Cell>
<Cell><Data ss:Type="String">To tell me it's on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">453</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I personally have never heard of it happening.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">67</Data></Cell>
<Cell><Data ss:Type="String">To let you know the cam is on. </Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">455</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I'm running OS X and am very selective about which programs I install.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="90">
<Cell><Data ss:Type="Number">68</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">457</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I have a separate webcam that I keep unplugged, and the one built in to my laptop has a paper taped across it so it can never be used.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="75">
<Cell><Data ss:Type="Number">69</Data></Cell>
<Cell><Data ss:Type="String">To show that the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">469</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">If I saw my webcam turn on, I would simply turn it off and try to figure out why it happened before any 'spying' could occur.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">70</Data></Cell>
<Cell><Data ss:Type="String">To let me know when the webcam is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">484</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="135">
<Cell><Data ss:Type="Number">71</Data></Cell>
<Cell><Data ss:Type="String">I don't know - maybe a flash?</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">491</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I am behind double firewalls and have my internet security up to date blocking incoming connections to the webcam. As well as when I am not using the webcam I place a piece of tape over it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">72</Data></Cell>
<Cell><Data ss:Type="String">I don't know.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">505</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">no</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="Number">73</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">520</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I take a good amount of precautions, as I am a bit savvy in the use of encryption software and security measures. I also regularly block it's lens when I'm not using it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">74</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">530</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">There is security in place on the laptop to prevent that from happening</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">75</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">534</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">77</Data></Cell>
<Cell><Data ss:Type="String">To let me know if the camera is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">543</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">No</Data><NamedCell ss:Name="_FilterDatabase"/><NamedCell
ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I do not like it.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="Number">78</Data></Cell>
<Cell><Data ss:Type="String">I think to tell me if its on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">16</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="Number">79</Data></Cell>
<Cell><Data ss:Type="String">To notify you that it is on</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">18</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I am very careful which websites I visit and what type of information I share. I regularly update anti spyware and delete cookies and cache on my computers. </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">80</Data></Cell>
<Cell><Data ss:Type="String">The light is for giving quality video.</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">19</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">No idea</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="165">
<Cell><Data ss:Type="Number">82</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">29</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I've never really thought about it... It's not something I've heard about, so if it's been happening a lot lately I've completely missed it. I always connected hackers more with stealing information and ruining things, rather than stalking behavior.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">83</Data></Cell>
<Cell><Data ss:Type="String">To notify the user when the webcam is active.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">48</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I don't know if this is possible or not</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">84</Data></Cell>
<Cell><Data ss:Type="String">To let you know when the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">49</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">WITH SECURITY APPS IS DIFFICULT</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="45">
<Cell><Data ss:Type="Number">85</Data></Cell>
<Cell><Data ss:Type="String">It's to confirm when the webcam is filming or broadcasting.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">51</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">i don't how to possible</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="120">
<Cell><Data ss:Type="Number">86</Data></Cell>
<Cell><Data ss:Type="String">i don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">58</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I have my indication light covered with black tape because it gets on my nerves. I guess someone else could activate it without me realizing it. I'm not sure hackers have that ability, though.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">87</Data></Cell>
<Cell><Data ss:Type="String">to make the picture brighter</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">63</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Well why would they and what would they gain? </Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="105">
<Cell><Data ss:Type="Number">88</Data></Cell>
<Cell><Data ss:Type="String">As far as I know, the light indicates when the webcam is on. </Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">71</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I have no idea. I really hope not. I operate under the assumption that it's not possible because I don't want to feel anxious or paranoid around my computer.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">89</Data></Cell>
<Cell><Data ss:Type="String">To indicate that the camera is on.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">74</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I am not aware</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">90</Data></Cell>
<Cell><Data ss:Type="String">To let me know it's recording</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">90</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">N/A</Data><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">
<Cell><Data ss:Type="Number">91</Data></Cell>
<Cell><Data ss:Type="String">To let you know if it is recording.</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">98</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">If its plugged in its entirely possible. When the webcam isn't then it wouldn't</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="150">
<Cell><Data ss:Type="Number">92</Data></Cell>
<Cell><Data ss:Type="String">I believe it is to let me know that the webcam is actively recording</Data></Cell>
<Cell><Data ss:Type="String">y</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">99</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">I have not given much thought to this before but after all the questions on this survey, now I think it may be possible. Luckily, I have always been in the habit of closing my laptop when I'm not using it and I don't have a desktop computer.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">93</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">101</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">Not sure. but i think it's possible.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">not aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">Not sure</Data></Cell>
</Row>
<Row ss:Height="30">
<Cell><Data ss:Type="Number">94</Data></Cell>
<Cell><Data ss:Type="String">to make the image clearer</Data></Cell>
<Cell><Data ss:Type="String">n</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="Number">104</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">Not sure</Data><NamedCell
ss:Name="_FilterDatabase"/><NamedCell ss:Name="Criteria"/></Cell>
<Cell><Data ss:Type="String">It's always possible but hopefully no one has.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell><Data ss:Type="String">aware</Data></Cell>
<Cell ss:Index="12"><Data ss:Type="String">No</Data></Cell>
</Row>
<Row ss:Height="60">