-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummymodule.js
8979 lines (8979 loc) · 294 KB
/
dummymodule.js
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
dummymodule = [
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:43.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "F",
"student_id": "snollygostercompass"
},
{
"grade": 8.3,
"student_id": "uvulabars",
"reason": "Unsure about F - for changes that can't be undone.",
"max_grade": 10,
"module_type": "problem",
"course_id": "6.813",
"module_id": "Quiz 24"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:40.000Z",
"reason": "A - iterative designs are good\n\nF- an undo button would also be good. Confirmation pages may cause inefficiency.",
"max_grade": 10,
"question1": "A, F",
"student_id": "silveroxbird",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:53.000Z",
"reason": "A - Depends how quick of a prototype.\nB - Depends what type of information we're trying to receive. Ultimately, users don't always know what they want.\nE - Especially if its for easy to change things like color schemes...nothing too drastic.",
"max_grade": 10,
"question1": "A, B, E",
"student_id": "pitchironboots",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:51.000Z",
"reason": "B: users know what they want sometimes, and a survey might not be the best way to find out",
"max_grade": 10,
"question1": "A, F",
"student_id": "avocetten",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:48.000Z",
"reason": "A: depends what \"this\" is\nE: This is not necessarily messing with the UI maybe just evening out hard edges",
"max_grade": 10,
"question1": "A, E",
"student_id": "abundantchatter",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:41.000Z",
"reason": "A. to me \"building a prototype\" implies coding, but I would definitely suggest prototype a paper prototype or something really low fidelity to mock things up, but building a coded prototype is too much of an investment/time to figure out basic/preliminary stuff. Overall prototyping is good, but just jumping into a prototype seems like a bad idea.",
"max_grade": 10,
"question1": "A",
"student_id": "desertedambiguous",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:06.000Z",
"reason": "I'm a little unsure about E, but I assume that graphic design should be a part of the iterative design process, and not used as a last-minute fix.",
"max_grade": 10,
"question1": "A, D",
"student_id": "bulldeceit",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:38.000Z",
"reason": "D: Color is not a discrete enough choice to be able to compare elements upon without also including the price or actual amount spent, color would help provide a visual cue though for higher level comparisons\nF: Sometimes error prevention isn't the optimal usable solution but error reversal can be",
"max_grade": 10,
"question1": "A, F",
"student_id": "slipperyunknown",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:13.000Z",
"reason": "A - What are we trying to figure out? If it's whether a user would like a given product/product style, building a low-fidelity prototype is a great way to gauge early-stage feedback on the product.\n\nB - Users don't necessarily know what they want, but putting out a survey may still be a valuable way of obtaining what the users think they want.\n\nC- Bright green background is hard to look at.\n\nD - Color is not a comparable visual variable.\n\nE - Designers should focus on making a site \"usable\"--not pretty.\n\nF - Better to have undo.",
"max_grade": 10,
"question1": "A",
"student_id": "followingcolossal",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:50.000Z",
"reason": "A: Paper Prototype over computer prototype\nB: Sometimes, they don't (Google: 10 results instead of 30)\nF: What type of website is it? If government/financial, it could be crucial to save client information\n",
"max_grade": 10,
"question1": "A, B, D",
"student_id": "fluffyquack",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:52.000Z",
"reason": "A) Provided that you will test the prototype, low-fidelity prototypes like paper prototypes are a great way to test hypotheses and get rid of doubts\nD) Hue is nominal, so it's not great for comparing data. However, if you use a standard, externally consistent scheme like red-yellow-green, it might work.\n",
"max_grade": 10,
"question1": "A",
"student_id": "arrowwheel",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:45.000Z",
"reason": "Depends on what you mean by prototype -- computer prototype, paper prototype, high fidelity, low fidelity prototype. I am assiming very low cost prototype.",
"max_grade": 10,
"question1": "A",
"student_id": "shinybap",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:48.000Z",
"reason": "C - depends on the text being used, however, hig contrast so no\nD - Color is not that easy to compare, (value/contrast)",
"max_grade": 10,
"question1": "A, F",
"student_id": "endurableapathetic",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:52.000Z",
"reason": "E: Making an interface look pretty is not the only way it gets \"right\"\nA: Works sometimes, but they need to design it first!",
"max_grade": 10,
"question1": "E, F",
"student_id": "frontalcoyote",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:04.000Z",
"reason": "A - Low fidelity!!\nD - seems reasonable, but need to do user interviews to determine whether this feature is actually needed.",
"max_grade": 10,
"question1": "A, D",
"student_id": "trentrope",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:11:06.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "veterinarianscotch"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:01.000Z",
"reason": "A: If it was a paper prototype or a simple computer one.\nD: This could be done if we just grouped the prices into categories (cheap, moderate, expensive) and had a different color for each. But that doesn't allow any pair of prices to be compared accurately.",
"max_grade": 10,
"question1": "A, F",
"student_id": "meowchinchilla",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:01.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "D, F",
"student_id": "fardiscfizz"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:42.000Z",
"reason": "D: I didn't choose this because not ONLY color can be used. colors cannot be compared well, to see which color \"cost more money\" but using color in addition to numerical values could be useful.\n\nA: A paper prototype could be good, but not before the problem has been thoroughly discussed",
"max_grade": 10,
"question1": "E",
"student_id": "ghasttearlit",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:47.000Z",
"reason": "A) A paper prototype to test different interfaces.\nD) As long as the color wasn't distracting.\nF) Increases safety.",
"max_grade": 10,
"question1": "A, D, F",
"student_id": "infatuatedmaniacal",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:09:32.000Z",
"reason": "On F, i'm not sure becuase based on what we learned the user can just ignore it.",
"max_grade": 10,
"question1": "D, F",
"student_id": "shrubberyrug",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:00.000Z",
"reason": "A. It should not be the first thing. Also depends on how high the fidelity is.\nB: It's ok to put out a survey, but that's not sufficient.\nF. Not necessarily. It might annoy the users if it happens too often.",
"max_grade": 10,
"question1": "B",
"student_id": "smackgritting",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:11:03.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "witchesstubborn"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:09:44.000Z",
"reason": "D: Not clear if anything other than color will also be used to show difference",
"max_grade": 10,
"question1": "A",
"student_id": "wistfulfeatures",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 3.3,
"timestamp": "2013-05-06T20:09:40.000Z",
"reason": "A if the prototype is built after asking users and learning more about the subject, YES",
"max_grade": 10,
"question1": "B, E, F",
"student_id": "funnyracehorse",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:56.000Z",
"reason": "A) prototypes are good to take decisions at low cost and quick\nB) no, user have ideas but are not experts, the survey will be partially informative.\nC) no, not necessarily.\n",
"max_grade": 10,
"question1": "A",
"student_id": "blaresuperfluity",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:49.000Z",
"reason": "F could be good for safety, but bad for efficiency. For example, how many \"normal\" users have access to change the DB? Usually this is reserved for admins.\n\nD is also good, but good be a pitfall if color is the only visual variable used. I.e color for pieces of a pie chart would be helpful, color text in a spreadsheet would be less helpful.",
"max_grade": 10,
"question1": "A, D, F",
"student_id": "murmurexciting",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:55.000Z",
"reason": "D - We want a visual variable that has the quantitative and ordered property; hue can't be ordered but we can use hue to separate spending into distinct classes.",
"max_grade": 10,
"question1": "D",
"student_id": "concernedefficient",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:56.000Z",
"reason": "A. I think it depends what type of prototype but a prototype could definitely help mock things up.\nE. UI should be considered throughout the process, not just something to throw on at the end.\nF. Safety is a concern but just having it always have a confirmation also decreases efficiency. So it needs to be a balance not just all completely confirmation pages.",
"max_grade": 10,
"question1": "A, D",
"student_id": "slappingdispirited",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:34.000Z",
"reason": "\n\nB. It's a good idea to ask, even if we don't take them completely at their word. We are not the user! But the user doeesn't always know what he wants.\n\nD. This idea works as long as the coloring scheme is not too crazy and provides good contrast and legibility.\n\nF. Maybe not every page, but major, unretractable modifications should have confirmations dialogs at least.",
"max_grade": 10,
"question1": "A, B, D, F",
"student_id": "swimmingadvisor",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:59.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "softdragonegg"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:32.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, D",
"student_id": "infestationblobby"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:41.000Z",
"reason": "F is correct most of the time but having every action confirmed may be too burdensome and compromises efficiency \n\nD is good normally but not friendly for color blind people",
"max_grade": 10,
"question1": "A",
"student_id": "cartographerbug",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:50.000Z",
"reason": "B - Users don't always know what they want (phone example)\nC - Bright green is a poor color choice for certain users with vision issues\nD - Color may not necessarily be the best mode comparison \nE - The features/functionality should be designed alongside the ui for users\nF - Bad efficiency",
"max_grade": 10,
"question1": "A",
"student_id": "whispericy",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:36.000Z",
"reason": "well... A because you would first want to approach the user to see what they would like in the app, what kind of functionality you can use and or be improved.\nB because users might know what they want, but not what they need (seriously though, a survey is not comprehensive enough, would rather observe the user doing the task we ware going to implement\nF. Being secure is important, but a comfirmation page limits efficiency.",
"max_grade": 10,
"question1": "A, B, F",
"student_id": "pantspulse",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:54.000Z",
"reason": "f. one confirmation for each action is too much\nD. u can't compare the amount using color",
"max_grade": 10,
"question1": "A",
"student_id": "sorefarrow",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:07.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "D,F",
"student_id": "remarkablehack"
},
{
"grade": 10,
"student_id": "chatterscrubbing",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:25.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, F",
"student_id": "palatecrow"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:50.000Z",
"reason": "A - if it's a paper prototype then yes.\nB - This depends a lot on the user group. Some user groups DO know what they want, and their advice should be taken, others may not. \nE - Hiring a designer at some point is useful, late is better than never, possibly...",
"max_grade": 10,
"question1": "A, D",
"student_id": "ironswordscourge",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:48.000Z",
"reason": "A: Build a paper prototype and repeat. Might not figure it out in one iteration though...but a prototype could help.\nE: The designer can help with aesthetics but you should also have more UI factors than just aesthetics.\nF: This would be inefficient, unless all database modifications are large modifications and don't happen frequently. In that case, this might be something to consider.",
"max_grade": 10,
"question1": "A",
"student_id": "jugularchamois",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:38.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "idioticwire"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:08:30.000Z",
"reason": "F- not 100% sure, on the one hand it is safety , on the other hand this will annoy the user.\nB - we did interview users, but we also learned that users don't know what they actually would like, and what they think they would like is not the same as what will cover their needs.\n\n",
"max_grade": 10,
"question1": "D, F",
"student_id": "aldermanlead",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:09.000Z",
"reason": "A. Building a prototype is a really good way to work out problems, but depending on what stage of development, it can be hard to decide if it is worth the time and effort. I would say, in the general case, a prototype is a good way of resolving a problem/determing a solution.\n\nB.) You are not the user, but you dont want to be baised\n\nF. In theory this could be good (let's say, for a database that is determines how much medication to give a patient, where errors are lethal.) In the general case, this would certainly break up the work flow and not be necessary.",
"max_grade": 10,
"question1": "A, B, D, E",
"student_id": "snowcoffee",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:13.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A,D,F",
"student_id": "sheepselfish"
},
{
"grade": 6.7,
"student_id": "moshglow",
"reason": "F - is safe, but would be extremely inefficient compared to *undo*. i couldn't leave it blank.",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "F"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:53.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "stabbingpod"
},
{
"grade": 3.3,
"timestamp": "2013-05-06T20:08:52.000Z",
"reason": "B: it's good to get to know what the users want, but I think we should interview them, not just survey them\nD: I'm not sure what this statement means: if it's a shopping website, and you want to use colors to show different price ranges, that's fine. But not to use colors to let the users know how expensive it was for you to make it.\nF: good to confirm, but not every action",
"max_grade": 10,
"question1": "B, D, F",
"student_id": "clerkface",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:53.000Z",
"reason": "A. Prototypes are good but one prototype won't let you \"figure out\" all the problems. It should be multiple iterations with multiple prototypes at the very least.",
"max_grade": 10,
"question1": "D",
"student_id": "utopianwaterbottle",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:57.000Z",
"reason": "A - to me the word \"just\" means its the only thing that they want to built without thinking about design, without thinking about the user, etc.\nD - Colors sometimes do help compare but when its money there is no way to value \"green\" over \"red\" over \"yellow\", etc. in an easy way for the user to understand. There could be a legend but it would take the user a lot of time until he/she gets accustomed with the interface.\n\nI selected F just so I could submit....I don't mean to check it\n",
"max_grade": 10,
"question1": "F",
"student_id": "cheesemoldovan",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:11:04.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, D, E, F",
"student_id": "melodicloathsome"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:56.000Z",
"reason": "A. Should start with sketchs\nB. Users don't know what they want\nC. bright green has too high a saturation\nD. this scheme would probably not be very consistent\nE. just no.\nF. This would be a very frustrating interface to work with.",
"max_grade": 10,
"question1": "D",
"student_id": "infielderworried",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:44.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "F",
"student_id": "moprugby"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:47.000Z",
"reason": "A is only true if it is low fidelity and used for testing of a feature, etc. It's not true if the statement is used to prototype the entire app bc this is high fidelity and incurs a lot of technical debt.\n\nD Color can be used in shades but this might be hard to do.",
"max_grade": 10,
"question1": "A, D",
"student_id": "quantityflight",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:08:43.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, B, F",
"student_id": "vaguecrank"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:42.000Z",
"reason": "D. While users can't sort colors by value, colors are good for recognition not recall. Also seeing colors is faster than reading numbers\n\nF. Let users undo instead of confirming every action\n\n",
"max_grade": 10,
"question1": "D",
"student_id": "chokinggarlic",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:42.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, E",
"student_id": "touristclotted"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:37.000Z",
"reason": "E - it's not just css, but the experience that's important\nF - but maybe too much confirmations? confirmations are good if the actions are important. db modification may not necessarily be improtant depending on what they're modifying",
"max_grade": 10,
"question1": "A, F",
"student_id": "greenemeraldore",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:10.000Z",
"reason": "E. Hiring a designer to make it look pretty is good when they follow the design guidelines that we have tested or explored in our prototypes.",
"max_grade": 10,
"question1": "A, D, E",
"student_id": "fatrigid",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:11.000Z",
"reason": "A - we use prototypes a lot, but that's not the only design tool.\nD - color may be useful, but not if it's used inappropriately",
"max_grade": 10,
"question1": "A, D",
"student_id": "discusscrew",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:51.000Z",
"max_grade": 10,
"module_type": "problem",
"student_id": "peartingley",
"course_id": "6.813",
"module_id": "Quiz 24"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:41.000Z",
"reason": "for e, I'm assuming the designer would not be making major changes--just simple, stylistic changes that would focus on color themes, prettier buttons, etc.",
"max_grade": 10,
"question1": "A, E",
"student_id": "chivalrousdistracted",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"student_id": "brokenpig",
"reason": "A. Unsure about the prototype statement; if they follow actual standards that we learned in class then this makes sense.\nC. This would make sense IF there was a clearly defined coloring system. This could increase efficiency by simply adding ranges for colors.",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, C"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:11:00.000Z",
"reason": "B. Users may know what they want, but they don't always come up with the best solutions; we want to put out a survey for directed questions that may help users achieve some goal (but we do the problem solving ourselves). \n\nD. Are the things different parts of the website?",
"max_grade": 10,
"question1": "B, F",
"student_id": "fittingbullocks",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:51.000Z",
"reason": "A. Building a prototype is good before building the final implementation; low fidelity and can get user feedback\nB. Getting info from users is good\nD. Color is only a nominal scale. Can't order amounts.\nE. Design should be considered starting at the beginning",
"max_grade": 10,
"question1": "A, B, F",
"student_id": "fenceinnocent",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:53.000Z",
"reason": "A) Starting with lo cost prototypes is a good way to start. However the phrasing makes it seem like they want to ignore the feedback part of the process with prototyping. \n\n",
"max_grade": 10,
"question1": "A",
"student_id": "derangedwrong",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:51.000Z",
"reason": "Not sure about E. That's the right way of thinking in my opinion, if you're focusing on what the ui does, before focusing on looks.",
"max_grade": 10,
"question1": "A, D, E, F",
"student_id": "standingyouthful",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:55.000Z",
"reason": "D. Color could not be ordered\nA. Before prototype, user testing need to be done.\nB. Just a survey is not enough\nF. This reduces efficiency.",
"max_grade": 10,
"question1": "A",
"student_id": "sleepyjust",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:11:18.000Z",
"reason": "A. I am not sure about A. Because building paper prototype and computer prototype should be done after you know the problem and the goal of the website.\n",
"max_grade": 10,
"question1": "A",
"student_id": "prickeddule",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:55.000Z",
"reason": "B - surveys might help, but you also need to do user testing, and users don't always know what they want",
"max_grade": 10,
"question1": "D, F",
"student_id": "forearmzeal",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:58.000Z",
"reason": "A. The prototype built should be easily modifiable (preferably on paper for the first prototype), not something hard to build and modify.",
"max_grade": 10,
"question1": "A, F",
"student_id": "distincttaekwondo",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:52.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, D",
"student_id": "rainydesert"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:39.000Z",
"reason": "A: A paper prototype might be useful though usually you would want to have interviews. (Not a computer prototype right away).\n\nD: Color is not a scalar quantity so it's not intuitive at first what would be considered more expensive than something else. Since there is learning involved this is difficult.",
"max_grade": 10,
"question1": "A",
"student_id": "hoopscruffy",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:09:11.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A,F",
"student_id": "abjectelk"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:31.000Z",
"reason": "A. Shouldn't build a prototype to figure it out-- do research first.\nB. Users aren't always right and they don't always know what they want.\nC. Use neutral colors for backgrounds?\nD. Color isn't a good value indicator\nE. Use designer from beginning?\n",
"max_grade": 10,
"question1": "A",
"student_id": "vaguechin",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"student_id": "yahoopeppers",
"reason": "F: Although this is a good safety feature, it may not outweigh the negatives of efficiency.\n\n",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "D, F"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:07.000Z",
"reason": "A: I agree prototyping is a good thing to do, but there should be more steps beforehand such as user analysis\nE: The interface should be presented with high fidelity look and feel when testing with users. Changing the appearance at the very end could be harmful to previous tests.\nF: I agree with the first part. Not necessarily ever thing needs a dialog box though",
"max_grade": 10,
"question1": "A, D, F",
"student_id": "lagoonpersnickety",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:39.000Z",
"reason": "A. Building a prototype and testing it is an important part of the development process. The earlier in the process it is, the less fidelity that prototype should carry.\n\nB. Understanding user needs is important. However, users usually don't know what they want, and a survey is usually a less-effective method for gathering opinions.",
"max_grade": 10,
"question1": "A",
"student_id": "laughablewiggling",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:11:10.000Z",
"reason": "A. You shouldn't outright just build a prototype. You should better understand the situation. \nB. Users don't necessarily konw what they want.\nC. Bright colors are usually not better. \nD. Using color comparisons might be helpful as long as it is not excessive.\nE. Hire a designer at the beginning to make sure that you are makign it look nice throughout the process.\nF. Don't want too many confirmation",
"max_grade": 10,
"question1": "D, F",
"student_id": "gleefulcat",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:11:48.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, F",
"student_id": "whooshunhealthy"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:57.000Z",
"reason": "B is almost right but doesnt address every user issue",
"max_grade": 10,
"question1": "A",
"student_id": "clickfold",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:10:42.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "helmetgarlic"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:10:46.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A,D,F",
"student_id": "cookiemedulla"
},
{
"grade": 6.7,
"student_id": "goombahdevilish",
"reason": "it wouldn't let me submit without picking one, but I'm pretty sure the answer is none of the above? So my answer is actually 'none of them'.",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "D"
},
{
"grade": 8.3,
"student_id": "grinddriver",
"reason": "B, because users often know what they want, however they may not know details, so B may be debatably incorrect (other approaches may be more appropriate depending on the aspect of the design being decided).\n\nNot E, because design should be taken into account the whole time.\n\nNot F, because too many confirmation pages may be a problem (however, used judiciously, they may be a good thing)",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, B"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:09:55.000Z",
"reason": "B. It's good to put out a survey, as long as it is tailored to the usability aspects of the website\nF. It's good to get confirmation, although having undo options for each action might be better for usability.",
"max_grade": 10,
"question1": "B, F",
"student_id": "tentsalty",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 5,
"timestamp": "2013-05-06T20:10:29.000Z",
"reason": "A- no, you should figure it out during design before you build a prototype, and then you can iterate if it was bad\nB- users don't always( and rarely) know what they want\nC - that would be distracting\nD - it's hard to compare colors to compare numbers b/c colors can't be twice as much as another one\nE - design should happen towards the beginning\nF - don't want to have to confirm everything bad for efficiency",
"max_grade": 10,
"question1": "D, F",
"student_id": "caterercheerful",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:11.000Z",
"reason": "B: A survey is a good idea, but you can't only rely on that. The word \"just\" in the question suggests that you are only relying on that which is not good. So I didn't check it.",
"max_grade": 10,
"question1": "A, D, F",
"student_id": "bunscoal",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:11:49.000Z",
"reason": "A - \"Just building a prototype\" won't fix anything, testing the prototype is necessary to solve anything.\nF - This might be correct because it will improve safety, but it is slow and the user will likely get accustomed to just confirming so it will defeat the purpose of the confirmation (answer no)\n",
"max_grade": 10,
"question1": "B",
"student_id": "carpuscuts",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 8.3,
"timestamp": "2013-05-06T20:10:04.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, F",
"student_id": "wrestlingduster"
},
{
"grade": 10,
"timestamp": "2013-05-06T20:11:08.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A",
"student_id": "roarshrivel"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:09:10.000Z",
"reason": "A- They should talk to users first and start with low level (paper prototypes)- better than just starting to implement \nB- You should put out a survey and find interest, but you should also do prototype testing because they often dont know what they want\nE- A designer is not a bad idea to help with some graphic design principles, but they should be making it look functional over pretty and should be incorportated much earlier",
"max_grade": 10,
"question1": "A, D, F",
"student_id": "heatingoldfashioned",
"course_id": "6.813",
"module_id": "Quiz 24",
"module_type": "problem"
},
{
"grade": 6.7,
"timestamp": "2013-05-06T20:08:58.000Z",
"max_grade": 10,
"module_type": "problem",
"module_id": "Quiz 24",
"course_id": "6.813",
"question1": "A, D, F",
"student_id": "earsplittingmixed"