-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal.yaml
1129 lines (1082 loc) · 32.6 KB
/
cal.yaml
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
Special Dates:
Courses begin: 2019-08-27
Courses end: 2019-12-06
Add deadline: 2019-09-10
Drop deadline: 2019-10-15
Withdraw deadline: 2019-10-22
Thanksgiving recess:
start: 2019-11-27
end: 2019-12-01
Reading days:
start: 2019-10-05
end: 2019-10-08
Exam 1: [2019-10-02, 2019-10-03]
Exam 2: [2019-11-06, 2019-11-07]
Exam 3: 2019-12-14
meta:
timezone: America/New_York
name: COA1
lecture exam: false
home: https://www.cs.virginia.edu/luther/COA1/F2019/
final:
start: 2019-12-14 09:00:00
duration: 180
room: Thornton E303
office hours:
.begin: 2019-09-04
faculty:
Tychonievich:
where: Rice 208
when:
- dow: Monday
start: 10:00:00
end: 11:00:00
- dow: Tuesday
start: 13:00:00
end: 15:00:00
- dow: Friday
start: 11:00:00
end: 12:00:00
except: [2019-09-06]
TA:
where: Thorton A-233
Omika:
when:
- dow: Thursday
start: 9:30:00
end: 11:30:00
Gustavo:
when:
- dow: Wednesday
start: 14:00:00
end: 15:00:00
- dow: Thursday
start: 15:30:00
end: 17:00:00
- dow: Friday
start: 9:00:00
end: 10:00:00
except: [2019-09-06]
- dow: Friday
start: 14:00:00
end: 16:00:00
except: [2019-09-06]
- dow: Saturday
start: 15:00:00
end: 16:00:00
Dylan:
when:
- dow: Thursday
start: 15:30:00
end: 16:30:00
- dow: Friday
start: 15:00:00
end: 16:00:00
Jack:
when:
- dow: Thursday
start: 12:30:00
end: 14:30:00
- dow: Sunday
start: 12:00:00
end: 14:00:00
except: [2019-09-07]
- date: 2019-09-06
start: 12:00:00
end: 13:00:00
Will:
when:
- dow: Friday
start: 14:00:00
end: 16:00:00
- dow: Monday
start: 11:00:00
end: 13:00:00
Vineet:
when:
- dow: Thursday
start: 12:30:00
end: 14:30:00
sections:
CS2501-200:
type: lecture
room: Thornton E303
days: [Monday, Wednesday, Friday]
start: 13:00:00
duration: 50
CS2501-201:
type: lab
room: MEC 213
days: [Wednesday]
start: 17:00:00
duration: 75
CS2501-202:
type: lab
room: MEC 213
days: [Thursday]
start: 17:00:00
duration: 75
lectures:
- welcome
- Boolean algebra
- binary arithmetic
- binary arithmetic
- gates, wires, bitwise
- mux, demux, adder
- clocks
- other hardware
- moves, memory, ALU ops
- fetch-decode-execute
- writing machine code
- conditional jump
- [addressing modes, endianness]
- [adjacency, pointers, back doors]
- review
- [assembly, x86-64]
- x86-64
- [the stack, tracing variables]
- compilation
- compile-time info
- pilot town hall
- C introduction
- C introduction
- C introduction
- C introduction
- global, stack, heap
- malloc and free
- malloc examples
- review
- C std library conventions
- string.h
- stdio.h and varargs
- stdio.h and varargs
- unistd.h and so on
- Q&A
- buffer overrun; reporting exploits
- function pointers
- defensive programming
- languages safer than C
- ask me anything
- review
labs:
- shell
- git and information theory
- hex editor
- simulator
- tools help
- debugger
- bomb
- 'char*'
- fchat
- sockets
- cpp
- stl
reading:
shell:
txt: at-home lab description
lnk: lab00-ssh-ed.html
git and information theory:
txt: in-lab description
lnk: lab01-git-infotheory.html
hex editor:
txt: in-lab description
lnk: lab02-hex-editor.html
simulator:
txt: in-lab description
lnk: lab03-simulator.html
tools help:
txt: in-lab description
lnk: lab04-tools.html
debugger:
txt: in-lab description
lnk: lab05-debugger.html
bomb:
txt: in-lab description
lnk: lab06-bomb.html
'char*':
txt: in-lab description
lnk: lab07-char*.html
'fchat':
txt: in-lab description
lnk: lab08-fchat.html
'sockets':
txt: in-lab description
lnk: lab09-sockets.html
cpp:
txt: in-lab description
lnk: lab10-cpp.html
stl:
txt: in-lab description
lnk: lab11-stl.html
Review:
txt: topics list
lnk: review.html
Boolean algebra:
txt: Booleans §1–2
lnk: bool.html
binary arithmetic:
txt: Bits §2.1–2.4
lnk: bits.html
gates, wires, bitwise:
txt: Booleans §1–2, 4
lnk: bool.html
mux, demux, adder:
txt: Booleans §3
lnk: bool.html
clocks:
- txt: Parts §2–3
lnk: parts.html
- txt: d flip-flop
lnk: //www.falstad.com/circuit/e-edgedff.html
other hardware:
txt: Parts §1–5
lnk: parts.html
addressing modes:
- txt: ISA §3.3
lnk: isa.html
endianness:
- txt: Bits §1–3
lnk: bits.html
von Neumann model; state:
txt: ISA §1–3
lnk: isa.html
fetch-decode-execute:
txt: ISA §1–3
lnk: isa.html
moves, memory, ALU ops:
txt: ISA §3.1
lnk: isa.html
conditional jump; back doors:
txt: ISA §3.4
lnk: isa.html
the stack:
txt: ISA §3.4.2
lnk: isa.html
review:
txt: review page
lnk: review.html
x86-64:
txt: x86-64 summary
lnk: x86.html
tracing variables:
txt: debugger example
lnk: cmdadd.html
C introduction:
- txt: wikipedia
lnk: https://en.wikipedia.org/wiki/C_syntax
- txt: language reference
lnk: c.html
"global, stack, heap":
txt: memory writeup
lnk: memory.html
"malloc and free":
txt: memory writeup
lnk: memory.html
C std library conventions:
txt: writeup
lnk: manpage.html
function pointers:
- txt: example from wikipedia
lnk: https://en.wikipedia.org/wiki/Function_pointer#Example_in_C
- txt: C++ virtual functions
lnk: vtable.html
defensive programming:
txt: wikipedia
lnk: https://en.wikipedia.org/wiki/Defensive_programming
languages safer than C:
- txt: rust
lnk: https://en.wikipedia.org/wiki/Rust_(programming_language)
- txt: rust-lang
lnk: https://www.rust-lang.org/
- txt: ownership
lnk: https://doc.rust-lang.org/1.8.0/book/ownership.html
- txt: borrowing
lnk: https://doc.rust-lang.org/1.8.0/book/references-and-borrowing.html
- txt: lifetimes
lnk: https://doc.rust-lang.org/1.8.0/book/lifetimes.html
ask me anything:
- txt: submit questions here
lnk: 'https://docs.google.com/forms/d/e/1FAIpQLSe124j9aFF7uUaW94F8NC5J8QofMsJlfvWnn23uKctZIKP9wg/viewform?usp=sf_link'
assignments:
".groups":
PA:
portion: "40"
late-policy: [0.9, 0.8]
total: 10
Lab:
portion: 10
drop: 1
rubric: {"kind":"percentage"}
Exam:
portion: "40"
rubric: {"kind":"percentage"}
Quiz:
portion: "10"
drop: 1
duration: -1
rubric: {"kind":"percentage"}
link: https://kytos.cs.virginia.edu/coa1/quizzes/
PA01:
title: bit fiddling
link: pa01-bit fiddling.html
due: 2019-09-17 17:00:00
notes: things like "count the number of set bits in an int" using limited numbers of bitwise operations
rubric: {"kind":"percentage"}
PA02:
title: worksheet
due: 2019-09-20 13:50:00
link: pa02-worksheet.html
total: 100
late-policy: []
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'pg1 basic gates (no muxes in answer)'
weight: 1
- name: 'pg1 wired like a mux'
weight: 2
- name: 'pg1 correct use of nots'
weight: 2
- name: 'pg2 neat and readable'
weight: 1
- name: 'pg2 shifts right'
weight: 2
- name: 'pg2 sign extends'
weight: 2
PA03:
title: mult
link: pa03-mult.html
files: ['mult.binary', 'mult.binary.txt']
due: 2019-10-12 17:00:00
PA04:
title: fib
link: pa04-fib.html
files: ['fib.binary', 'fib.binary.txt']
due: 2019-10-01 17:00:00
PA05:
title: assembly
files: 'matlib.s'
link: pa05-assembly.html
due: 2019-10-15 17:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'submitted'
- 'assembles'
- 'runs'
- 'product should not use imul'
- 'product is iterative'
- 'product does not call functions'
- {name: 'product works', weight: 3}
- 'power should not use imul'
- 'power is recursive'
- 'power calls product (only)'
- {name: 'power works', weight: 3}
PA06:
title: 'bomb'
link: pa06-bomb.html
due: 2019-10-22 17:00:00
PA07:
title: smallc
files: smallfunc.c
link: pa07-smallc.html
due: 2019-10-29 17:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 1st correct function
- 2nd correct function
- 3rd correct function
- 4th correct function
- 5th correct function
PA08:
title: linkedlist
files: linkedlist.c
link: pa08-linkedlist.html
due: 2019-11-12 17:00:00
rubric: {"kind":"percentage"}
PA09:
title: postfix
files: rpn.c
link: pa09-postfix.html
due: 2019-11-26 17:00:00
PA10:
title: schat
files: schat.c
link: pa10-schat.html
due: 2019-12-06 17:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Added to lab code
- Compiles
- Server runs
- Client runs
- Some kind of chat works
- name: Chat works properly
weight: 2
- name: code uses socket, stdin, and poll
weight: 2
- ends when end-of-file or Ctrl+C reached
Quiz00:
due: 2019-09-02 13:00:00
weight: 0
Quiz01:
due: 2019-09-09 11:00:00
open: 2019-09-06 17:00:00
Quiz02:
due: 2019-09-16 11:00:00
open: 2019-09-13 17:00:00
Quiz03:
due: 2019-09-23 11:00:00
open: 2019-09-20 17:00:00
Quiz04:
due: 2019-09-30 11:00:00
open: 2019-09-27 17:00:00
Quiz05:
due: 2019-10-14 11:00:00
open: 2019-10-11 17:00:00
Quiz06:
due: 2019-10-21 11:00:00
open: 2019-10-18 17:00:00
Quiz07:
due: 2019-10-28 11:00:00
open: 2019-10-25 17:00:00
Quiz09:
due: 2019-11-18 11:00:00
open: 2019-11-15 17:00:00
Quiz10:
due: 2019-11-25 11:00:00
open: 2019-11-22 17:00:00
Exam 1:
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
link: review.html
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q1 is 61'
weight: 2
- name: 'Q2 is 0xca3e'
weight: 2
- name: 'Q3 sum is 01100010'
weight: 1
- name: 'Q3 sum shows work, no 9th bit'
weight: 1
- name: 'Q4 is A (only)'
weight: 2
- name: 'Q5 has 4 1-bit inputs'
weight: 1
- name: 'Q5 has a 3-bit output'
weight: 1
- name: 'Q5 uses gates to get at least one bit correct'
weight: 1
- name: 'Q5 gets at least two bits correct'
weight: 1
- name: 'Q6 is A (half for B)'
weight: 2
- name: 'Q7 is same'
weight: 2
- name: 'Q8 is same'
weight: 2
- name: 'Q9 is "0x_??????? where _ is neither 0 nor F'
weight: 2
- name: 'Q10 B (half for C)'
weight: 2
- name: 'Q11 is 1'
weight: 2
- name: 'Q12 is same number of bytes as their answer to Q11'
weight: 1
- name: 'Q12 is B6'
weight: 1
- name: 'Q13 is 0x31 (half for 0xab)'
weight: 2
- name: 'Q14 is 0x07 (half for 0x01 or 0x76)'
weight: 1
- name: 'Q15 does not contain E'
weight: 1
- name: 'Q15 does contain B and not C'
weight: 1
- name: 'Q16 pro-patent is an argument for patents'
weight: 0.5
- name: 'Q16 pro-patent is applicable to ISAs'
weight: 0.5
- name: 'Q16 anti-patent is an argument against patents'
weight: 0.5
- name: 'Q16 anti-patent is applicable to ISAs'
weight: 0.5
- name: 'pledge signed'
weight: 1
Exam1-1:
hide: true
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
weight: 8
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q1 is 61'
weight: 2
- name: 'Q2 is 0xca3e'
weight: 2
- name: 'Q3 sum is 01100010'
weight: 1
- name: 'Q3 sum shows work, no 9th bit'
weight: 1
- name: 'Q4 is A (only)'
weight: 2
Exam1-2:
hide: true
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
weight: 4
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q5 has 4 1-bit inputs'
weight: 1
- name: 'Q5 has a 3-bit output'
weight: 1
- name: 'Q5 uses gates to get at least one bit correct'
weight: 1
- name: 'Q5 gets at least two bits correct'
weight: 1
Exam1-3:
hide: true
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q6 is A (half for B)'
weight: 2
- name: 'Q7 is same'
weight: 2
- name: 'Q8 is same'
weight: 2
- name: 'Q9 is "0x_0000000 where _ is neither 0 nor F'
weight: 2
- name: 'Q10 B (half for C)'
weight: 2
Exam1-4:
hide: true
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
weight: 9
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q11 is 1'
weight: 2
- name: 'Q12 is same number of bytes as their answer to Q11'
weight: 1
- name: 'Q12 is B6'
weight: 1
- name: 'Q13 is 0x31 (half for 0xab)'
weight: 2
- name: 'Q14 is 0x07 (half for 0x01 or 0x76)'
weight: 1
- name: 'Q15 does not contain E'
weight: 1
- name: 'Q15 does contain B and not C'
weight: 1
Exam1-5:
hide: true
open: 2019-10-02 17:00:00
due: 2019-10-03 18:15:00
weight: 3
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q16 pro-patent is an argument for patents'
weight: 0.5
- name: 'Q16 pro-patent is applicable to ISAs'
weight: 0.5
- name: 'Q16 anti-patent is an argument against patents'
weight: 0.5
- name: 'Q16 anti-patent is applicable to ISAs'
weight: 0.5
- name: 'pledge signed'
weight: 1
Exam 1-wrapper:
open: 2019-10-16 17:00:00
due: 2019-10-25 17:00:00
link: exam-wrapper.html
files: exam1wrapper.txt
weight: 0.2
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "attempted a wrapper"
- "has reflection on preparation"
- "reflection is insightful"
- "has corrected answers"
- "all wrong answers corrected"
- "corrected answer have explanations"
- "some explanations are insightful"
- "most explanations are correct"
- "has plans for future"
- "plans seem likely to improve learning"
Exam 2:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
link: review.html
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- (E2-1) Q1 correct
- (E2-1) Q2 correct
- (E2-2) Q3 correct
- (E2-2) Q4 correct
- (E2-2) Q5 correct
- (E2-2) Q6 correct
- (E2-3) Q7 correct
- (E2-3) Q8 correct
- (E2-3) Q9 correct
- (E2-3) Q10 correct
- (E2-4) Q11 correct
- (E2-4) Q12 correct
- name: (E2-4) Q13 blank 1 correct
weight: 0.5
- name: (E2-4) Q13 blank 2 correct
weight: 0.5
- name: (E2-4) Q13 blank 3 correct
weight: 0.5
- name: (E2-4) Q13 blank 4 correct
weight: 0.5
- name: (E2-4) Q13 blank 5 correct
weight: 0.5
- name: (E2-4) Q13 blank 6 correct
weight: 0.5
- (E2-5) Q14 follows limitations given
- (E2-5) Q14 loop with gotos
- (E2-5) Q14 else without "else"
- (E2-5) Q14 nothing else wrong
- name: (E2-6) Q15 commented right frees
weight: 0.5
- name: (E2-6) Q15 left other frees uncommented
weight: 0.5
- (E2-6) Q16 correct
- (E2-6) Q17 correct
- (E2-6) Q18 correct
- name: (E2-6) pledged
weight: 0.5
E2-1:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 4
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Q1 correct
- Q2 correct
E2-2:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 8
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Q3 correct
- Q4 correct
- Q5 correct
- Q6 correct
E2-3:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 8
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Q7 correct
- Q8 correct
- Q9 correct
- Q10 correct
E2-4:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Q11 correct
- Q12 correct
- {name: Q13 blank 1 correct, weight: 0.5}
- {name: Q13 blank 2 correct, weight: 0.5}
- {name: Q13 blank 3 correct, weight: 0.5}
- {name: Q13 blank 4 correct, weight: 0.5}
- {name: Q13 blank 5 correct, weight: 0.5}
- {name: Q13 blank 6 correct, weight: 0.5}
E2-5:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 8
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- Q14 follows limitations given
- Q14 loop with gotos
- Q14 else without "else"
- Q14 nothing else wrong
E2-6:
open: 2019-11-06 17:00:00
due: 2019-11-07 18:15:00
hide: true
weight: 9
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- {name: Q15 commented right frees, weight: 0.5}
- {name: Q15 left other frees uncommented, weight: 0.5}
- Q16 correct
- Q17 correct
- Q18 correct
- {name: pledged, weight: 0.5}
Exam 2-wrapper:
open: 2019-11-19 10:00:00
due: 2019-11-26 17:00:00
link: exam-wrapper.html
files: exam2wrapper.txt
weight: 0.2
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "attempted a wrapper"
- "has reflection on preparation"
- "reflection is insightful"
- "has corrected answers"
- "all wrong answers corrected"
- "corrected answer have explanations"
- "some explanations are insightful"
- "most explanations are correct"
- "has plans for future"
- "plans seem likely to improve learning"
wraps: Exam 2
Lab01:
due: 2019-09-05 19:00:00
open: 2019-09-04 17:00:00
Lab02:
due: 2019-09-12 19:00:00
open: 2019-09-11 17:00:00
Lab03:
due: 2019-09-19 19:00:00
open: 2019-09-18 17:00:00
Lab04:
due: 2019-09-26 19:00:00
open: 2019-09-25 17:00:00
Lab05:
due: 2019-10-10 19:00:00
open: 2019-10-09 17:00:00
Lab06:
due: 2019-10-17 19:00:00
open: 2019-10-16 17:00:00
Lab07:
due: 2019-10-24 19:00:00
open: 2019-10-23 17:00:00
Lab08:
due: 2019-10-31 19:00:00
open: 2019-10-30 17:00:00
Lab09:
due: 2019-11-14 19:00:00
open: 2019-11-13 17:00:00
Lab10:
due: 2019-11-21 19:00:00
open: 2019-11-20 17:00:00
Lab11:
due: 2019-12-05 19:00:00
open: 2019-12-04 17:00:00
E3-1:
hide: true
open: 2019-12-14 09:00:00
due: 2019-12-14 12:00:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q1 is 0x501002'
weight: 2
- name: 'Q2 is ABD (half if off-by-one; 0 if off-by-two)'
weight: 2
- name: 'Q3 is -x-1, -(x+1), x^-1, x^0xFF...'
weight: 2
- name: 'Q4 is 0xC1'
weight: 2
E3-2:
hide: true
open: 2019-12-14 09:00:00
due: 2019-12-14 12:00:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q5 is 3-input 1-output digital circuit'
weight: 1
- name: 'Q5 is equiv to (x&s)|(y&!s)'
weight: 1
- name: 'Q6 is 0x56 (half for 65 or 34)'
weight: 2
- name: 'Q7 is 60 9A 30 or equivalent (no penalty for using extra registers, as e.g. 64/8/C 9A 31/2/3)'
weight: 2
- name: 'Q8 is {0,1,2,3} (half for {0,1})'
weight: 2
E3-3:
hide: true
open: 2019-12-14 09:00:00
due: 2019-12-14 12:00:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q9 is 2'
weight: 2
- name: 'Q10 has value in second spot'
weight: 1
- name: 'Q10 is foo(_, 0) for some _'
weight: 1
- name: 'Q11 is 8'
weight: 2
- name: 'Q12 is B (half for C)'
weight: 2
E3-4:
hide: true
open: 2019-12-14 09:00:00
due: 2019-12-14 12:00:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'Q13 frees lst3 at end'
weight: 1
- name: 'Q13 does not free anythign else'
weight: 1
- name: 'Q14 mentions global or passed in storage'
weight: 1
E3-5:
hide: true
open: 2019-12-14 09:00:00
due: 2019-12-14 12:00:00
weight: 10
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- name: 'ssize_t write_long(int fd, long num)'
weight: 1
- name: 'no extra libraries used'
weight: 1
- name: 'handles negatives'
weight: 1
- name: 'loops over all digits'
weight: 1
- name: 'uses % to extract digits'
weight: 1
- name: "puts '0'+digit in char buffer"
weight: 1
- name: "tracks used length of buffer"
weight: 1
- name: 'write(fd, buffer, length)'