-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.html
More file actions
2593 lines (2562 loc) · 103 KB
/
shell.html
File metadata and controls
2593 lines (2562 loc) · 103 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta charset="utf-8"/>
<title>
Handbook - Course - Data Structures and Algorithms - COMP2521
</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="Data Structures and Algorithms" name="description"/>
<meta content="complexity, computer science, computing, data structures, programming" name="keywords"/>
<meta content="School of Computer Science and Engineering" name="author"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i,700,700i" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<!-- TODO this should be in the main package -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.7.0/umd/react.production.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.7.0/umd/react-dom.production.min.js">
</script>
<!-- Courseloop-ui / handbook includes -->
<!-- Live -->
<link href="https://courseloop-ui.s3.amazonaws.com/handbook/unsw/unswPRODUCTION/assets/all.css?v=2020-1-15-18-6" rel="stylesheet"/>
<script src="https://courseloop-ui.s3.amazonaws.com/handbook/unsw/unswPRODUCTION/assets/all.js?v=2020-1-15-18-6">
</script>
<!-- Remove when we no longer have skeleton elements -->
<link href="/application/themes/page-details/css/skeleton.css" rel="stylesheet"/>
<!-- Temp theme for murdoch stuff -->
<!-- Styles for printing page -->
<link href="/application/theme_files/css/print.css" rel="stylesheet"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=GTM-5JB423">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// gtag('config', '${host.googleAnalytics}');
gtag('config', 'GTM-5JB423');
</script>
<script>
(function(){
const orgUnits = {};
const locations = {"196234bfdb0f8b005012ff0dbf961912":"Sydney","007d533c4f441b009e2bfd501310c712":"Paddington","6ecfe5f4db4a5b0014c5f4e9bf961926":"Paddington","d7470b6c4f115b404aa6eb4f0310c79b":"Canberra","6a49b4034f4d97404aa6eb4f0310c79b":"Kensington","62b1be25dbc4d70014c5f4e9bf9619ef":"Randwick"};
const helptext = [{"description":"A component of an academic program, normally of one term/semester in duration, with a specific credit value.","term":"Course","type":"helptext"},{"description":"An award where two or more programs are studied at the same time, resulting in two separate qualifications.","term":"Dual Award Program","type":"helptext"},{"description":"A level of study that leads to the award of a Graduate Certificate, Graduate Diploma, Masters Degree or Doctorate.","term":"Postgraduate","type":"helptext"},{"description":"A specified sequence of study in a discipline or sub discipline area within a program. More than one major may be completed within a program.","term":"Major","type":"helptext"},{"description":"A course students are prevented from taking, because they have academic content in common with courses for which the student has previously been granted credit.","term":"Exclusion Courses","type":"helptext"},{"description":"The umbrella term for a defined area of disciplinary study. In undergraduate programs, they are majors and minors. In postgraduate coursework programs they are referred to as specialisations. \r\n\r\n","term":"Specialisation","type":"helptext"},{"description":"Typically refers to face to face on-campus contact hours per week.","term":"Indicative contact hours","type":"tooltip"},{"description":"An approved set of requirements, courses and/or supervised research into which a student is admitted. In some cases, this will lead to an award of UNSW.","term":"Program","type":"helptext"},{"description":"A level of study which involves a student independently researching a specific topic under the guidance of a supervisor and producing a thesis or report. Some research programs involve a coursework component.","term":"Research","type":"helptext"},{"description":"A level of study that leads to the award of a Diploma, Advanced Diploma, Associate Degree or a Bachelor Degree (pass or honours).","term":"Undergraduate","type":"helptext"},{"description":"Courses taken outside of the home faculty to complement more specialised learning. Students are still subject to Faculty and program specific conditions/requirements on General Education selection.","term":"General Education","type":"helptext"},{"description":"A specified field of study within a discipline or sub-discipline, smaller in size and scope than a major. ","term":"Minor","type":"helptext"},{"description":"An academic teaching period of between 10-13 weeks in duration.","term":"Semester/Term","type":"helptext"},{"description":"The highest level of learning in an undergraduate program. It typically includes a research component. Honours is available in two modes: separate year honours and embedded honours.","term":"Honours","type":"helptext"},{"description":"Qualification upon completion (all awards offered by UNSW are accredited by UNSW and align with the Australian Qualifications Framework).","term":"Award(s)","type":"helptext"},{"description":"(UOC) A value assigned to programs and courses indicating duration and workload, e.g. class contact hours, other learning activities, preparation and time spent on all assessable works. ","term":"Units of Credit","type":"helptext"},{"description":"An approved agreement which enables students to progress in a defined pathway from one qualification to another with credit.","term":"Articulation Arrangements","type":"helptext"},{"description":"The primary academic unit in which related disciplines of teaching and research are conducted.","term":"Faculty","type":"helptext"},{"description":"An academic teaching period of between 10-13 weeks in duration.","term":"Offering Periods","type":"helptext"},{"description":"A course deemed to be equal in academic content to another course. You will need to choose a different course if you have successfully completed the equivalent course.","term":"Equivalent Courses","type":"helptext"},{"description":"The academic unit responsible for teaching in disciplines or subject areas (school is part of a Faculty)","term":"School","type":"helptext"},{"description":"The delivery option(s) by which a course or program is offered.","term":"Delivery Mode","type":"helptext"},{"description":"An award where two or more programs are studied at the same time, resulting in two separate qualifications.","term":"Double Degree","type":"helptext"},{"description":"Knowledge, skills and their applications, behaviours and practices that students develop during their time at UNSW.","term":"Graduate Capabilities","type":"helptext"},{"description":"An academic teaching period of between 10-13 weeks in duration.","term":"Offering Terms","type":"helptext"},{"description":"Units of Credit","term":"UOC","type":"helptext"}];
const messages = {
enrolment_message: 'Not admitting new students'
}
window.config.setInstance({org: "CL", orgs: orgUnits, locations: locations, messages: messages, helptext: helptext});
})()
if (window.globalFeatures.override) {
const CLFeatureFlags = {"CL.year_value":"2020","CL.year_switcher_toggle":"true","CL.ga_id":"GTM-5JB423"};
let formattedFlagsObject = {}
Object.keys(CLFeatureFlags).forEach(function(key) {
if(CLFeatureFlags[key] === "true" || CLFeatureFlags[key] == "false") {
const _key = key.split('.')[1];
formattedFlagsObject = {
...formattedFlagsObject,
[_key]: {
on: CLFeatureFlags[key] === "true" ? true : false
}
};
}
});
window.globalFeatures.override(formattedFlagsObject);
}
</script>
</head>
<body class="default-page-details-template" id="default-page-details-template" style="overflow-x:hidden">
<span aria-live="assertive" class="sr-only" id="tooltipMessenger">
</span>
<header aria-label="Handbook Logo, Search, main navigation and secondary navigation" class="t-header" role="banner">
<div aria-label="Secondary Navigation Links" class="a-secondary-nav p-bottom-0 hide-sm hide-xs" role="navigation">
<div class="a-wrapper" data-hbui="a-nav-container" style="display:inherit; padding-bottom: 0.2rem">
<div class="a-nav-links">
<a href="http://www.handbook.unsw.edu.au/general/2018/SSAPO/previousEditions.html" target="_blank">
Pre-2019 Handbook
</a>
<a href="https://my.unsw.edu.au/" target="_blank">
My UNSW
</a>
<a href="https://student.unsw.edu.au/" target="_blank">
Current Student
</a>
<a href="https://www.futurestudents.unsw.edu.au/" target="_blank">
Future Student
</a>
<a href="https://research.unsw.edu.au/" target="_blank">
Research
</a>
<a href="https://student.unsw.edu.au/new-calendar" target="_blank">
UNSW 3+
</a>
<a href="http://timetable.unsw.edu.au" target="_blank">
Class Timetable
</a>
</div>
<button aria-haspopup="true" aria-label="Click to toggle My Lists" class="a-nav-bookmark" data-hbui="a-nav-bookmark" id="a-nav-bookmark-link" tabindex="0">
<i aria-hidden="true" class="a-icon gets-notified" id="a-nav-bookmark-icon">
bookmark
</i>
</button>
<div aria-hidden="true" class="a-nav-sub-links with-arrow hidden" data-hbui="a-nav-sub-links-container" tabindex="-1">
<h2 aria-label="My Lists: a list of of your saved academic items." class="m-top-1 m-left-1 m-right-1 heading h3" tabindex="0">
My Lists
</h2>
<div aria-controlledby="a-nav-bookmark-link" class="a-nav-sub-links-list" data-hbui="a-nav-sub-links-list" tabindex="-1">
</div>
</div>
</div>
</div>
<div class="a-wrapper t-header__wrapper">
<div class="t-logo-container">
<a href="https://www.unsw.edu.au/" target="_blank" title="Click here to go to UNSW website">
<img alt="UNSW Logo" class="a-logo" src="/application/theme_files/assets/unsw-logo.svg"/>
</a>
</div>
<!-- Place additional header html here -->
<div class="t-mini-search-header-container">
<h1 class="t-header__heading h3" tabindex="0">
Handbook
</h1>
<div class="m-mini-search-container" id="mini-search">
</div>
</div>
<script>
var initialState = {
ADDITIONAL_SEARCH_PHRASE: '', // include a certain phrase to join with whatever the user searches for. Seperate values with spaces e.g. '2018 Courses'
SEE_ALL_RESULTS_LABEL: 'See all results',
SEE_ALL_RESULTS_URL: '/search',
ADVANCED_SEARCH_LABEL: 'Advanced search',
ADVANCED_SEARCH_URL: '/search',
NO_RESULTS_LABEL: 'No results',
PLACEHOLDER_TEXT: 'Search here or hit Enter for advanced search',
CON_HOST: 'ce0bf305-2092-4d52-bd3b-b63d8e576981',
SEARCH_FILTERS_URL:'/api/content/render/false/type/json/query/+contentType:static_content%20 +static_content.key:*search_filter*%20+static_content.addToSecondarySearch:1%20+(conhost:[[__CON_HOST__]]%20conhost:SYSTEM_HOST)%20+languageId:1%20+deleted:false%20+working:true/orderby/static_content.order%20asc',
CHOICE_SET_URL: '/api/content/render/false/type/json/query/+contentType:choice_set%20+(conhost:[[__CON_HOST__]]%20conhost:SYSTEM_HOST)%20+languageId:1%20+deleted:false%20+working:true/orderby/modDate%20desc',
ACADEMIC_ITEMS: [{
value: 'course',
label: 'Program',
contentType: 'CL.course_search_filter',
}, {
value: 'aos',
label: 'Specialisation',
contentType: 'CL.aos_search_filter',
}, {
value: 'subject',
label: 'Course',
contentType: 'CL.subject_search_filter',
}],
DISPLAY_ADVANCED_FILTERS: false,
validYears: [{"label":"2019","value":"2019"},{"label":"2020","value":"2020"}],
CURRENT_YEAR: "2020",
};
ReactDOM.render(
React.createElement(handbook.MiniSearch, initialState),
document.querySelector('#mini-search')
);
</script>
<button aria-label="Open Main Navigation Menu" class="a-toothpick gets-notified" data-hbui="hamburger-toggle" role="navigation" tabindex="0">
<span class="a-toothpick__label hide-sm hide-xs">
Browse
</span>
<i aria-hidden="true" class="a-icon">
menu
</i>
</button>
</div>
</header>
<div>
<div aria-hidden="true" aria-label="Main Site Navigation" class="a-sticky a-hamburger no-print" data-hbui="hamburger-menu" role="navigation" tabindex="-1">
<div class="a-bun" data-hbui="hamburger-menu-main">
<div class="a-tomato">
<button aria-label="Close Main Navigation Menu" class="a-icon" data-hbui="hamburger-close" tabindex="-1">
<span aria-hidden="true">
close
</span>
</button>
</div>
<div class="a-cheese" data-hbui="scrollable" tabindex="-1">
<div class="a-sauce bookmark" data-hbui="hamburger-menu-item">
<button aria-label="Open Sub Menu for My Lists" class="a-lettuce level-one" data-hbui="hamburger-next" tabindex="-1">
<span aria-hidden="true" class="a-icon a-pickle level-two">
bookmark
</span>
<h2 aria-hidden="true" class="h4">
My Lists
<span data-hbui="bookmark-list-count">
</span>
</h2>
<i aria-hidden="true" class="a-icon a-pickle">
navigate_next
</i>
</button>
<div aria-hidden="true" class="a-patty" data-hbui="hamburger-menu-sub" tabindex="-1">
<div class="a-tomato">
<button aria-label="Back to Main Menu" class="a-icon a-pickle level-two" data-hbui="hamburger-back" tabindex="-1">
<span aria-hidden="true">
arrow_back
</span>
</button>
<h3 class="h4">
My Lists
</h3>
</div>
<div aria-hidden="true" data-hbui="hamburger-menu-bookmarks-container" tabindex="-1">
</div>
</div>
</div>
<hr class="a-onion" tabindex="-1"/>
<span class="p-top-1 p-left-1 p-bottom-1 font-weight-heavy" style="display:block;">
Browse Handbook
</span>
<div class="a-sauce" data-hbui="hamburger-menu-item">
<button aria-haspopup="true" aria-label="Open Sub Menu for Area of Interest" class="a-lettuce level-one" data-hbui="hamburger-next" tabindex="-1">
<h4 aria-hidden="true">
Area of Interest
</h4>
<i aria-hidden="true" class="a-icon a-pickle">
navigate_next
</i>
</button>
<div aria-hidden="true" class="a-patty" data-hbui="hamburger-menu-sub" tabindex="-1">
<div class="a-tomato">
<button aria-label="Back to Main Menu" class="a-icon a-pickle level-two" data-hbui="hamburger-back" tabindex="-1">
<span aria-hidden="true">
arrow_back
</span>
</button>
<h4>
Area of Interest
<span class="sr-only">
Sub Menu
</span>
</h4>
</div>
<div data-hbui="scrollable" tabindex="-1">
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ArchitectureAndBuilding/browse?interest_value=68b44253db96df002e4c126b3a961980
" tabindex="-1" target="_self">
<h4>
Architecture and Building
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BusinessAndManagement/browse?interest_value=dd350293db96df002e4c126b3a961909
" tabindex="-1" target="_self">
<h4>
Business and Management
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/CreativeArts/browse?interest_value=c175c653db96df002e4c126b3a9619f3
" tabindex="-1" target="_self">
<h4>
Creative Arts
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Education/browse?interest_value=f9158253db96df002e4c126b3a961953
" tabindex="-1" target="_self">
<h4>
Education
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/EngineeringAndRelatedTechnologies/browse?interest_value=8a948253db96df002e4c126b3a961950
" tabindex="-1" target="_self">
<h4>
Engineering and Related Technologies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/EnvironmentalAndRelatedStudies/browse?interest_value=4ee48253db96df002e4c126b3a961926
" tabindex="-1" target="_self">
<h4>
Environmental and Related Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Health/browse?interest_value=34054293db96df002e4c126b3a9619ee
" tabindex="-1" target="_self">
<h4>
Health
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/HumanitiesAndLaw/browse?interest_value=0c554e13db96df002e4c126b3a9619f5
" tabindex="-1" target="_self">
<h4>
Humanities and Law
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/InformationTechnology/browse?interest_value=cd74ce13db96df002e4c126b3a96194f
" tabindex="-1" target="_self">
<h4>
Information Technology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/NaturalAndPhysicalSciences/browse?interest_value=b7b2ce13db96df002e4c126b3a96194c
" tabindex="-1" target="_self">
<h4>
Natural and Physical Sciences
</h4>
</a>
</div>
</div>
</div>
</div>
<div class="a-sauce" data-hbui="hamburger-menu-item">
<button aria-haspopup="true" aria-label="Open Sub Menu for Faculty" class="a-lettuce level-one" data-hbui="hamburger-next" tabindex="-1">
<h4 aria-hidden="true">
Faculty
</h4>
<i aria-hidden="true" class="a-icon a-pickle">
navigate_next
</i>
</button>
<div aria-hidden="true" class="a-patty" data-hbui="hamburger-menu-sub" tabindex="-1">
<div class="a-tomato">
<button aria-label="Back to Main Menu" class="a-icon a-pickle level-two" data-hbui="hamburger-back" tabindex="-1">
<span aria-hidden="true">
arrow_back
</span>
</button>
<h4>
Faculty
<span class="sr-only">
Sub Menu
</span>
</h4>
</div>
<div data-hbui="scrollable" tabindex="-1">
<div class="a-sauce">
<a class="a-lettuce level-two" href="/DvcacademicBoardOfStudies/browse?id=5fa56ceb4f0093004aa6eb4f0310c7b3" tabindex="-1" target="_self">
<h4>
DVC (Academic) Board of Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfArtDesign/browse?id=57a56ceb4f0093004aa6eb4f0310c7af" tabindex="-1" target="_self">
<h4>
Faculty of Art & Design
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfArtsAndSocialSciences/browse?id=d7a56ceb4f0093004aa6eb4f0310c7ac" tabindex="-1" target="_self">
<h4>
Faculty of Arts and Social Sciences
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfBuiltEnvironment/browse?id=5fa56ceb4f0093004aa6eb4f0310c7ae" tabindex="-1" target="_self">
<h4>
Faculty of Built Environment
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfEngineering/browse?id=5fa56ceb4f0093004aa6eb4f0310c7af" tabindex="-1" target="_self">
<h4>
Faculty of Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfLaw/browse?id=57a56ceb4f0093004aa6eb4f0310c7b0" tabindex="-1" target="_self">
<h4>
Faculty of Law
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfMedicine/browse?id=5fa56ceb4f0093004aa6eb4f0310c7b0" tabindex="-1" target="_self">
<h4>
Faculty of Medicine
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FacultyOfScience/browse?id=57a56ceb4f0093004aa6eb4f0310c7ae" tabindex="-1" target="_self">
<h4>
Faculty of Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/UnswBusinessSchool/browse?id=5a3a1d4f4f4d97404aa6eb4f0310c77a" tabindex="-1" target="_self">
<h4>
UNSW Business School
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/UnswCanberraAtAdfa/browse?id=5fa56ceb4f0093004aa6eb4f0310c7ad" tabindex="-1" target="_self">
<h4>
UNSW Canberra at ADFA
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/UnswGlobal/browse?id=a9321f614ffd57009106fd501310c7eb" tabindex="-1" target="_self">
<h4>
UNSW Global
</h4>
</a>
</div>
</div>
</div>
</div>
<div class="a-sauce" data-hbui="hamburger-menu-item">
<button aria-haspopup="true" aria-label="Open Sub Menu for Subject Area" class="a-lettuce level-one" data-hbui="hamburger-next" tabindex="-1">
<h4 aria-hidden="true">
Subject Area
</h4>
<i aria-hidden="true" class="a-icon a-pickle">
navigate_next
</i>
</button>
<div aria-hidden="true" class="a-patty" data-hbui="hamburger-menu-sub" tabindex="-1">
<div class="a-tomato">
<button aria-label="Back to Main Menu" class="a-icon a-pickle level-two" data-hbui="hamburger-back" tabindex="-1">
<span aria-hidden="true">
arrow_back
</span>
</button>
<h4>
Subject Area
<span class="sr-only">
Sub Menu
</span>
</h4>
</div>
<div data-hbui="scrollable" tabindex="-1">
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Accounting/browse?sa=b4cecfec4fcb5b00eeb3eb4f0310c7eb" tabindex="-1" target="_self">
<h4>
ACCT: Accounting
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ActuarialStudies/browse?sa=7cce03204f0f5b00eeb3eb4f0310c709" tabindex="-1" target="_self">
<h4>
ACTL: Actuarial Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ArtAndDesign/browse?sa=b8ce03204f0f5b00eeb3eb4f0310c70e" tabindex="-1" target="_self">
<h4>
ADAD: Art and Design
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/AerospaceEngineering/browse?sa=c5ce03204f0f5b00eeb3eb4f0310c713" tabindex="-1" target="_self">
<h4>
AERO: Aerospace Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Anatomy/browse?sa=05ce03204f0f5b00eeb3eb4f0310c718" tabindex="-1" target="_self">
<h4>
ANAT: Anatomy
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Architecture/browse?sa=41ce03204f0f5b00eeb3eb4f0310c71d" tabindex="-1" target="_self">
<h4>
ARCH: Architecture
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/DisciplinaryAndInterdisciplinaryHumanities/browse?sa=8dce03204f0f5b00eeb3eb4f0310c721" tabindex="-1" target="_self">
<h4>
ARTS: Disciplinary and Interdisciplinary Humanities
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/NuraGiliindigenousPrograms/browse?sa=c9ce03204f0f5b00eeb3eb4f0310c726" tabindex="-1" target="_self">
<h4>
ATSI: Nura Gili (Indigenous Programs)
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Aviation/browse?sa=09ce03204f0f5b00eeb3eb4f0310c72b" tabindex="-1" target="_self">
<h4>
AVEN: Aviation
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Aviation/browse?sa=45ce03204f0f5b00eeb3eb4f0310c730" tabindex="-1" target="_self">
<h4>
AVIA: Aviation
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Aviation/browse?sa=735f5e79dbf393000595c4048a961909" tabindex="-1" target="_self">
<h4>
AVIF: Aviation
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Aviation/browse?sa=bb5f5e79dbf393000595c4048a96190e" tabindex="-1" target="_self">
<h4>
AVIG: Aviation
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BiotechnologyBiomolecularSciences/browse?sa=81ce03204f0f5b00eeb3eb4f0310c735" tabindex="-1" target="_self">
<h4>
BABS: Biotechnology & Biomolecular Sciences
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BiologicalEarthEnvironmentalScience/browse?sa=cdce03204f0f5b00eeb3eb4f0310c739" tabindex="-1" target="_self">
<h4>
BEES: Biological, Earth & Environmental Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BeInterdisciplinaryLearning/browse?sa=0dce03204f0f5b00eeb3eb4f0310c73e" tabindex="-1" target="_self">
<h4>
BEIL: BE Interdisciplinary Learning
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BuiltEnvironment/browse?sa=49ce03204f0f5b00eeb3eb4f0310c743" tabindex="-1" target="_self">
<h4>
BENV: Built Environment
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Bioinformatics/browse?sa=95ce03204f0f5b00eeb3eb4f0310c748" tabindex="-1" target="_self">
<h4>
BINF: Bioinformatics
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Biochemistry/browse?sa=d1ce03204f0f5b00eeb3eb4f0310c74d" tabindex="-1" target="_self">
<h4>
BIOC: Biochemistry
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BiomedicalEngineering/browse?sa=11ce03204f0f5b00eeb3eb4f0310c752" tabindex="-1" target="_self">
<h4>
BIOM: Biomedical Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BiologicalScience/browse?sa=5dce03204f0f5b00eeb3eb4f0310c756" tabindex="-1" target="_self">
<h4>
BIOS: Biological Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Biotechnology/browse?sa=99ce03204f0f5b00eeb3eb4f0310c75b" tabindex="-1" target="_self">
<h4>
BIOT: Biotechnology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Building/browse?sa=d5ce03204f0f5b00eeb3eb4f0310c760" tabindex="-1" target="_self">
<h4>
BLDG: Building
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/CareerDevelopment/browse?sa=4c95ede9db1b7f00038cc4048a96195e" tabindex="-1" target="_self">
<h4>
CDEV: Career Development
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ChemicalEngineeringAndIndustrialChemistry/browse?sa=15ce03204f0f5b00eeb3eb4f0310c765" tabindex="-1" target="_self">
<h4>
CEIC: Chemical Engineering and Industrial Chemistry
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Chemistry/browse?sa=51ce03204f0f5b00eeb3eb4f0310c76a" tabindex="-1" target="_self">
<h4>
CHEM: Chemistry
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ChemicalEngineering/browse?sa=9dce03204f0f5b00eeb3eb4f0310c76e" tabindex="-1" target="_self">
<h4>
CHEN: Chemical Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ClimateScience/browse?sa=d9ce03204f0f5b00eeb3eb4f0310c773" tabindex="-1" target="_self">
<h4>
CLIM: Climate Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ComputationalDesign/browse?sa=19ce03204f0f5b00eeb3eb4f0310c778" tabindex="-1" target="_self">
<h4>
CODE: Computational Design
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/DevelopmentStudies/browse?sa=f75f5e79dbf393000595c4048a961913" tabindex="-1" target="_self">
<h4>
COMD: Development Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Commerce/browse?sa=55ce03204f0f5b00eeb3eb4f0310c77d" tabindex="-1" target="_self">
<h4>
COMM: Commerce
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ComputerScience/browse?sa=91ce03204f0f5b00eeb3eb4f0310c782" tabindex="-1" target="_self">
<h4>
COMP: Computer Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ConstructionManagement/browse?sa=fb5f5e79dbf393000595c4048a961924" tabindex="-1" target="_self">
<h4>
CONS: Construction Management
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Criminology/browse?sa=ddce03204f0f5b00eeb3eb4f0310c786" tabindex="-1" target="_self">
<h4>
CRIM: Criminology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/CreativePractice/browse?sa=dbf77de7dbbce7040595c4048a961934" tabindex="-1" target="_self">
<h4>
CRTV: Creative practice
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/CivilAndEnvironmentalEngineering/browse?sa=1dce03204f0f5b00eeb3eb4f0310c78b" tabindex="-1" target="_self">
<h4>
CVEN: Civil and Environmental Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/DataScience/browse?sa=69ce03204f0f5b00eeb3eb4f0310c790" tabindex="-1" target="_self">
<h4>
DATA: Data Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/DesignNext/browse?sa=ed7b2e13dba840507cdee3334a961902" tabindex="-1" target="_self">
<h4>
DESN: Design Next
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GlobalDiplomaBusiness/browse?sa=f1db6e13dba840507cdee3334a961975" tabindex="-1" target="_self">
<h4>
DPBS: Global Diploma - Business
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GlobalDiplomaGeneralEducation/browse?sa=fd0f7626db6c63003167e7148a961953" tabindex="-1" target="_self">
<h4>
DPGE: Global Diploma - General Education
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GlobalDiplomaStem/browse?sa=048ebaa2db6c63003167e7148a961964" tabindex="-1" target="_self">
<h4>
DPST: Global Diploma - STEM
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Economics/browse?sa=e1ce03204f0f5b00eeb3eb4f0310c79a" tabindex="-1" target="_self">
<h4>
ECON: Economics
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/EducationStudies/browse?sa=21ce03204f0f5b00eeb3eb4f0310c79f" tabindex="-1" target="_self">
<h4>
EDST: Education Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ElectricalEngineering/browse?sa=6dce03204f0f5b00eeb3eb4f0310c7a3" tabindex="-1" target="_self">
<h4>
ELEC: Electrical Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/EngineeringInterdisciplinary/browse?sa=a9ce03204f0f5b00eeb3eb4f0310c7a8" tabindex="-1" target="_self">
<h4>
ENGG: Engineering interdisciplinary
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/EnvironmentalStudies/browse?sa=e5ce03204f0f5b00eeb3eb4f0310c7ad" tabindex="-1" target="_self">
<h4>
ENVS: Environmental Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Finance/browse?sa=25ce03204f0f5b00eeb3eb4f0310c7b2" tabindex="-1" target="_self">
<h4>
FINS: Finance
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/FoodTechnology/browse?sa=61ce03204f0f5b00eeb3eb4f0310c7b7" tabindex="-1" target="_self">
<h4>
FOOD: Food Technology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/BusinessTechnology/browse?sa=3b5f5e79dbf393000595c4048a961929" tabindex="-1" target="_self">
<h4>
GBAT: Business Technology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/UnswBusinessSchool/browse?sa=adce03204f0f5b00eeb3eb4f0310c7bb" tabindex="-1" target="_self">
<h4>
GENC: UNSW Business School
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GeneralEducationFacultyOfEngineering/browse?sa=e9ce03204f0f5b00eeb3eb4f0310c7c0" tabindex="-1" target="_self">
<h4>
GENE: General Education - Faculty of Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GeneralEducationFacultyOfLaw/browse?sa=29ce03204f0f5b00eeb3eb4f0310c7c5" tabindex="-1" target="_self">
<h4>
GENL: General Education - Faculty of Law
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GeneralEducationFacultyOfMedicine/browse?sa=65ce03204f0f5b00eeb3eb4f0310c7ca" tabindex="-1" target="_self">
<h4>
GENM: General Education - Faculty of Medicine
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GeneralEducationFacultyOfScience/browse?sa=a1ce03204f0f5b00eeb3eb4f0310c7cf" tabindex="-1" target="_self">
<h4>
GENS: General Education - Faculty of Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/GeneralEducationTheLearningCentre/browse?sa=fdce03204f0f5b00eeb3eb4f0310c7d3" tabindex="-1" target="_self">
<h4>
GENY: General Education - The Learning Centre
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Geology/browse?sa=775f5e79dbf393000595c4048a96192e" tabindex="-1" target="_self">
<h4>
GEOL: Geology
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Geoscience/browse?sa=3dce03204f0f5b00eeb3eb4f0310c7d8" tabindex="-1" target="_self">
<h4>
GEOS: Geoscience
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/SurveyingSpatialInformationSystems/browse?sa=79ce03204f0f5b00eeb3eb4f0310c7dd" tabindex="-1" target="_self">
<h4>
GMAT: Surveying & Spatial Information Systems
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Architecture/browse?sa=2618bde7dbbce7040595c4048a9619c1" tabindex="-1" target="_self">
<h4>
GSBE: Architecture
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Engineering/browse?sa=b5ce03204f0f5b00eeb3eb4f0310c7e2" tabindex="-1" target="_self">
<h4>
GSOE: Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/HealthDataScience/browse?sa=b35f5e79dbf393000595c4048a961933" tabindex="-1" target="_self">
<h4>
HDAT: Health Data Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/HealthAndExerciseScience/browse?sa=f1ce03204f0f5b00eeb3eb4f0310c7e7" tabindex="-1" target="_self">
<h4>
HESC: Health and Exercise Science
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/HumanitiesAndLanguages/browse?sa=02287de7dbbce7040595c4048a961942" tabindex="-1" target="_self">
<h4>
HUML: Humanities and Languages
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Humanities/browse?sa=31ce03204f0f5b00eeb3eb4f0310c7ec" tabindex="-1" target="_self">
<h4>
HUMS: Humanities
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/IndustrialDesign/browse?sa=7dce03204f0f5b00eeb3eb4f0310c7f0" tabindex="-1" target="_self">
<h4>
IDES: Industrial Design
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/InstituteOfEnvironmentalStudies/browse?sa=ff5f5e79dbf393000595c4048a961937" tabindex="-1" target="_self">
<h4>
IEST: Institute of Environmental Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/IndustrialChemistry/browse?sa=b9ce03204f0f5b00eeb3eb4f0310c7f5" tabindex="-1" target="_self">
<h4>
INDC: Industrial Chemistry
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/InformationSystems/browse?sa=f5ce03204f0f5b00eeb3eb4f0310c7fa" tabindex="-1" target="_self">
<h4>
INFS: Information Systems
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Innovation/browse?sa=35ce03204f0f5b00eeb3eb4f0310c7ff" tabindex="-1" target="_self">
<h4>
INOV: Innovation
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/InternationalStudies/browse?sa=71ce43204f0f5b00eeb3eb4f0310c704" tabindex="-1" target="_self">
<h4>
INST: International Studies
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/InteriorArchitecture/browse?sa=bdce43204f0f5b00eeb3eb4f0310c708" tabindex="-1" target="_self">
<h4>
INTA: Interior Architecture
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/JurisDoctor/browse?sa=7b5f5e79dbf393000595c4048a961941" tabindex="-1" target="_self">
<h4>
JURD: Juris Doctor
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/LandscapeArchitecture/browse?sa=f9ce43204f0f5b00eeb3eb4f0310c70d" tabindex="-1" target="_self">
<h4>
LAND: Landscape Architecture
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Law/browse?sa=39ce43204f0f5b00eeb3eb4f0310c712" tabindex="-1" target="_self">
<h4>
LAWS: Law
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Linguistics/browse?sa=f35f5e79dbf393000595c4048a96194b" tabindex="-1" target="_self">
<h4>
LING: Linguistics
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/ManufacturingEngineering/browse?sa=75ce43204f0f5b00eeb3eb4f0310c717" tabindex="-1" target="_self">
<h4>
MANF: Manufacturing Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Marketing/browse?sa=b1ce43204f0f5b00eeb3eb4f0310c71c" tabindex="-1" target="_self">
<h4>
MARK: Marketing
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Mathematics/browse?sa=cece43204f0f5b00eeb3eb4f0310c720" tabindex="-1" target="_self">
<h4>
MATH: Mathematics
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/MaterialsScienceAndEngineering/browse?sa=0ece43204f0f5b00eeb3eb4f0310c725" tabindex="-1" target="_self">
<h4>
MATS: Materials Science and Engineering
</h4>
</a>
</div>
<div class="a-sauce">
<a class="a-lettuce level-two" href="/Management/browse?sa=335f5e79dbf393000595c4048a961950" tabindex="-1" target="_self">
<h4>
MBAX: Management
</h4>