-
Notifications
You must be signed in to change notification settings - Fork 0
/
survey_raw.xml
10299 lines (10299 loc) · 699 KB
/
survey_raw.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>Report</Author>
<LastAuthor>Linda Lee</LastAuthor>
<Created>2014-09-18T23:41:06Z</Created>
<LastSaved>2014-09-19T00:29:07Z</LastSaved>
<Company>SGizmo</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>18260</WindowHeight>
<WindowWidth>38280</WindowWidth>
<WindowTopX>120</WindowTopX>
<WindowTopY>140</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style ss:ID="Default" ss:Name="Normal">
<Alignment ss:Vertical="Bottom"/>
<Borders/>
<Font/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s27" ss:Name="Bad">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="12" ss:Color="#F20884"/>
<Interior ss:Color="#FF99CC" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s35" ss:Name="Note">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<Interior ss:Color="#FFFF99" ss:Pattern="Solid"/>
</Style>
<Style ss:ID="s62">
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s65" ss:Parent="s35">
<Font/>
</Style>
<Style ss:ID="s66" ss:Parent="s35">
<Font/>
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s68" ss:Parent="s27">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s69" ss:Parent="s35">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<Font/>
</Style>
<Style ss:ID="s70" ss:Parent="s35">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<Font/>
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s71" ss:Parent="s27">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
</Style>
<Style ss:ID="s72">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
</Style>
<Style ss:ID="s73">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s74">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s75">
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s76" ss:Parent="s35">
<Borders/>
<Font/>
</Style>
<Style ss:ID="s77" ss:Parent="s35">
<Borders/>
<Font/>
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s78" ss:Parent="s27">
<Borders/>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s79" ss:Parent="s27">
<Borders/>
</Style>
<Style ss:ID="s81" ss:Parent="s35">
<Font/>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s82" ss:Parent="s35">
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="12" ss:Color="#F20884"/>
</Style>
<Style ss:ID="s83">
<Borders/>
</Style>
<Style ss:ID="s84">
<Borders/>
<NumberFormat ss:Format="m/d/yy\ h:mm;@"/>
</Style>
<Style ss:ID="s85">
<Borders/>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s86" ss:Parent="s35">
<Borders/>
<Font/>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
<Style ss:ID="s87" ss:Parent="s35">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"
ss:Color="#C0C0C0"/>
</Borders>
<Font/>
<NumberFormat ss:Format="h:mm:ss;@"/>
</Style>
</Styles>
<Worksheet ss:Name="survey results raw">
<Table ss:ExpandedColumnCount="18" ss:ExpandedRowCount="503" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65" ss:DefaultRowHeight="12">
<Column ss:Index="2" ss:StyleID="s62" ss:Width="101"/>
<Column ss:StyleID="s62" ss:AutoFitWidth="0" ss:Width="105"/>
<Column ss:Index="7" ss:AutoFitWidth="0" ss:Width="79"/>
<Column ss:Index="9" ss:AutoFitWidth="0" ss:Width="75"/>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Response ID</Data></Cell>
<Cell><Data ss:Type="String">Time Started</Data></Cell>
<Cell><Data ss:Type="String">Date Submitted</Data></Cell>
<Cell><Data ss:Type="String">Survey Time</Data></Cell>
<Cell><Data ss:Type="String">Do you have a webcam?</Data></Cell>
<Cell><Data ss:Type="String">What kind of webcam do you have on your computer(s)? Check all that apply</Data></Cell>
<Cell><Data ss:Type="String">Is there a small light near your webcam?</Data></Cell>
<Cell><Data ss:Type="String">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">Q11 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">Q14 If you use a laptop, when you're at home, do you close the lid when you're not using it? Check all that apply.</Data></Cell>
<Cell><Data ss:Type="String">Q22 Do you think it would be possible for a hacker to spy on you through your webcam?</Data></Cell>
<Cell><Data ss:Type="String">Q23 Why or Why not?</Data></Cell>
<Cell><Data ss:Type="String">What is your age?</Data></Cell>
<Cell><Data ss:Type="String">What is your gender?</Data></Cell>
<Cell><Data ss:Type="String">What is the highest level of education you have completed?</Data></Cell>
<Cell><Data ss:Type="String">How much do you agree with the following statement? "Consumers have lost all control over how personal information is collected and used by companies."</Data></Cell>
<Cell><Data ss:Type="String">How much do you agree with the following statement?"Most businesses handle the personal information they collect about consumers in a proper and confidential way."</Data></Cell>
<Cell><Data ss:Type="String">How much do you agree with the following statement?"Existing laws and organizational practices provide a reasonable level of protection for consumer privacy today."</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15" ss:StyleID="s65">
<Cell><Data ss:Type="Number">3</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="DateTime">2013-10-14T19:03:55.000</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="DateTime">2013-10-14T19:51:39.000</Data></Cell>
<Cell ss:StyleID="s81" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:47:44.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s71"><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String"></Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15" ss:StyleID="s65">
<Cell><Data ss:Type="Number">8</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="DateTime">2013-10-28T19:46:54.000</Data></Cell>
<Cell ss:StyleID="s66"><Data ss:Type="DateTime">2013-10-28T19:47:11.000</Data></Cell>
<Cell ss:StyleID="s68" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:00:17.000</Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:StyleID="s65">
<Cell ss:StyleID="s72"><Data ss:Type="Number">11</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="DateTime">2013-12-02T13:51:56.000</Data></Cell>
<Cell ss:StyleID="s73"><Data ss:Type="DateTime">2013-12-02T13:56:46.000</Data></Cell>
<Cell ss:StyleID="s74" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:04:50.000</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s72"><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 ss:StyleID="s72"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">I don't use a laptop.</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">I think with today's technology and the advancement of hackers anyone can be spied on no matter how secure they think their computer system is.</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Some College</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s72"><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">12</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T13:52:05.000</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T14:01:44.000</Data></Cell>
<Cell ss:StyleID="s75" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:09:39.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">To notify that it is working.</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I imagine a hacker could do just about anything on my pc if they were so inclined and I was vulnerable. This would include operating and viewing my webcam feed.</Data></Cell>
<Cell><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">Some College</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">13</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T13:53:23.000</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T14:02:06.000</Data></Cell>
<Cell ss:StyleID="s75" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:08:43.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I think it adjusts the lighting</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">If the webcam was hacked and I didn't have the camera covered with a piece of tape when I'm not using it, I suppose it might be possible.</Data></Cell>
<Cell><Data ss:Type="String">41 - 50 years old</Data></Cell>
<Cell><Data ss:Type="String">Female</Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">14</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T13:56:04.000</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T14:28:33.000</Data></Cell>
<Cell ss:StyleID="s75" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:32:29.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">It tells me if the webcam is on.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">If they can get my webcam to turn on, they might be able to see me do things.</Data></Cell>
<Cell><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">15</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T14:23:10.000</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-02T14:36:12.000</Data></Cell>
<Cell ss:StyleID="s75" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:13:02.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">to indicate when recording</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">They can use any function of the computer once they hack it</Data></Cell>
<Cell><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">Some College</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="Number">16</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-09T21:19:59.000</Data></Cell>
<Cell><Data ss:Type="DateTime">2013-12-09T21:22:48.000</Data></Cell>
<Cell ss:StyleID="s75" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:02:49.000</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">To give better lighting to your picture/video.</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell><Data ss:Type="String">Not sure</Data></Cell>
<Cell><Data ss:Type="String">Not sure</Data></Cell>
<Cell><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">18</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:20:17.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:26:14.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:57.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">to tell me that the webcam is on or in use</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><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></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">41 - 50 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">19</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:20:17.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:29:27.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:09:10.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't know</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No idea</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Master's Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">21</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:20:48.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:30:47.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:09:59.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><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 ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I never close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">NO IT IS NOT POSSIBLE</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Master's Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">22</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.889513888891</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.892175925925</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">2.6620370335876942E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">To give better lighting for the subject.</Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I think they could remotely access my camera if they hacked my computer.</Data></Cell>
<Cell><Data ss:Type="String">41 - 50 years old</Data></Cell>
<Cell><Data ss:Type="String">Female</Data></Cell>
<Cell><Data ss:Type="String">Some College</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">23</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:20:58.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:30:39.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:09:41.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">To show that the webcam is in use.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Because, I don't think it's possible yet to be able to access someone's webcam. It would probably be very difficult to hack into someone's webcam.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">24</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:21:03.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:31:17.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:10:14.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't know</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I guess hacker might turn on webcam and use it if he/she can remote use my laptop.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">51 - 60 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Master's Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">25</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:21:05.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:29:03.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:07:58.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">to show that the webcam is on</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><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></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">41 - 50 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">High School/GED</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">26</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:21:10.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:25:50.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:04:40.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't know.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Hackers are capable of shutting down nuclear reactors in Iran, I assume that hackers can do virtually anything if they are so inclined.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Some College</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">27</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:21:23.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:36.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:03:13.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">To indicate whether the cam is on or not</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't use a laptop.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I think they could hack into any part of my computer including the web cam if so motivated.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Master's Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">29</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:21:49.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:28:52.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:07:03.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I think it just indicates when it's turned on...?</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><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></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Less than High School</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">30</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:22:29.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:27:55.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:26.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It indicates when the camera is on and working.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I never close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">If software turns the webcam on, I suppose it's possible for a hacker to write software that does the same thing.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">31</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.889953703707</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.896377314813</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">6.4236111065838486E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">to show when it is on and being used</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">Hackers are pretty smart, I guess if they wanted to they could do it.</Data></Cell>
<Cell><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell><Data ss:Type="String"></Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Strongly disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">32</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:22:41.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:27:08.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:04:27.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It is to provide additional light so I am more visible when I am using the webcam</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I feel like a hacker could potentially access my webcam if they hacked in through my network and could turn it on.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Master's Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">33</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:22:42.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:37:18.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:14:36.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It indicates the webcam is on</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Hackers can do a lot, they can get into the FBI for goodness sake</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">34</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.890856481485</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.894004629627</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">3.1481481419177726E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">Hackers are extremely smart and determined</Data></Cell>
<Cell><Data ss:Type="String">51 - 60 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">Some College</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">35</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:22:52.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:37:28.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:14:36.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">face is clearly view</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String"></Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Steven Fox, an IT security expert, was chatting with friends on his webcam one night when he started receiving some strange emails. Imagine his surprise when he opened one and found images of himself chatting.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">18 - 21 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">36</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:23:10.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:38:07.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:14:57.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't know</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">webcam is external device and when connected to computer it a device which is control through software. if hacker can access the software then there is high chance he can use webcam without my knowledge</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">37</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:23:22.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:29:28.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:06:06.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I dont know</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Remotely accessing my computer and operating its hardware should be no problem for some experienced hacker.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">38</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.89130787037</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.895474537036</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">4.166666665696539E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">No</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">No</Data></Cell>
<Cell><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">with technology advancing, anything is pretty much possible these days. Hackers are getting smarter and more creative in their methods of hacking on people's computers.</Data></Cell>
<Cell><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">2-year Associate's College Degree</Data></Cell>
<Cell><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">39</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:23:31.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:29:23.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:52.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">To indicate the webcam is on.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It sounds entirely plausible.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">40</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:23:17.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:33:53.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:10:36.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">To let me know the webcam is on</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I've seen news reports about it</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">41</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:08.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:34:06.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:09:58.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><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 ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It is possible. I have heard of this before and how hackers can get control of your computer and then use your webcam without the light on to watch you and what you are doing on your computer and in the room.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Some College</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">43</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.891805555555</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.89638888889</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">4.5833333351765759E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">I don't know.</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I never close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I remember a news story about a school that sent home laptops with webcams and used them to spy on kids.</Data></Cell>
<Cell><Data ss:Type="String">51 - 60 years old</Data></Cell>
<Cell><Data ss:Type="String">Female</Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">44</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:23.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:29:08.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:04:45.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">It tells me when it is on.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I imagine it wouldn't be hard to do but I wonder if it's possible to do so without activating the light.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">45</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:24.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:28:30.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:04:06.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">So I know it's on</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I'm sure they could but I don't know why they'd want to. I'm boring.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Female</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Some College</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">47</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.891979166663</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.893900462965</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">1.9212963015888818E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">i don't know</Data></Cell>
<Cell><Data ss:Type="String">Not sure</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">hackers can do anything and we've heard cases of people hacking webcams in the news</Data></Cell>
<Cell><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">2-year Associate's College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell><Data ss:Type="Number">48</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.892210648148</Data></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="Number">41617.894224537034</Data></Cell>
<Cell ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="Number">2.0138888867222704E-3</Data></Cell>
<Cell><Data ss:Type="String">Yes</Data></Cell>
<Cell><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">I don't know</Data></Cell>
<Cell><Data ss:Type="String">No</Data></Cell>
<Cell><Data ss:Type="String">I sometimes close the lid of my laptop when not using it.</Data></Cell>
<Cell><Data ss:Type="String">Not sure</Data></Cell>
<Cell><Data ss:Type="String">I don't know if this is possible or not</Data></Cell>
<Cell><Data ss:Type="String">22 - 25 years old</Data></Cell>
<Cell><Data ss:Type="String">Male</Data></Cell>
<Cell><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">49</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:56.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:30:20.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:24.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">My webcam is built into my computer</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">TO MAKE USER AWARE THAT WEBCAM IS ON</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I always close the lid of my laptop when I'm not using it.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">WITH SECURITY APPS IS DIFFICULT</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">18 - 21 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">4-year BA/BS College Degree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">50</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:25:02.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:30:14.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:12.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">To indicate when the camera is on</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't use a laptop.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I've seen news reports of this happening</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">31 - 40 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">High School/GED</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat disagree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">51</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:24:17.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:47:32.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:23:15.000</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I have a separate/external web camera</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Yes</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">used for more brightness</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">No</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">I don't use a laptop.</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Not sure</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">i don't how to possible</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">26 - 30 years old</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Male</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Some College</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Strongly agree</Data></Cell>
<Cell ss:StyleID="s83"><Data ss:Type="String">Somewhat agree</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="15">
<Cell ss:StyleID="s83"><Data ss:Type="Number">52</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:25:30.000</Data></Cell>
<Cell ss:StyleID="s84"><Data ss:Type="DateTime">2013-12-09T21:31:05.000</Data></Cell>
<Cell ss:StyleID="s85" ss:Formula="=RC[-1]-RC[-2]"><Data ss:Type="DateTime">1899-12-31T00:05:35.000</Data></Cell>