Make a Law research plan for the given assignment.
Microsoft Word - LAW 480 Module I, Assignment 1.1, Trimester 2, 2020 ver 1.3.docx
Page 1 of 2
School of Law
University of New England
Armidale NSW 2351
Australia
Phone XXXXXXXXXX
Fax XXXXXXXXXX2580
http:
askune.custhelp.com/
www.une.edu.au/law
LAW 480 – Remedies and Advanced Professional Skills
Assignment 1.1 (Module I) – Trimester 2, 2020
Due Date: 11:59pm UNE time Sunday 26 July 2020
Students must answer all of the six research questions listed below. Questions 1-5 are each
worth 10 marks. Question 6 is worth 15 marks. An additional 5 marks are allocated to
eferencing and bibliography. Thus, the assignment will be marked out of 70 and then
converted to a mark out of 20 (rounded to the nearest half-mark). The word limit is strictly
3000 words, excluding any questions, headings, footnotes and bibliography.
In presenting their answers, students must:
(i) give an outline of their research plan
(ii) explain the steps taken to find the relevant law
(iii) identify when and how any relevant statute law(s) came into force
(iv) reference their work according to the Australian Guide to Legal Citation (Melbourne
University Law Review Association Inc, 4th ed, 2018) and include a bibliography
(v) include legal authority for all propositions of law using pinpoint references
(vi) comply with the marking criteria and guidance contained in the unit Supplementary
Material.
Research questions:
1. Answer both of:
(a) Explain the use of the expression ‘without prejudice’; and
(b) What is the origin and purpose of a Calde
ank letter?
[10 Marks]
2. What is the ‘autochthonous expedient’? Cite primary authority for the term and the
legislation (including the relevant sections) which make the expedient work.
[10 Marks]
3. Nominate and explain a statute from each of the following:
(a) New South Wales;
(b) any other Australian state; and
(c) an Australian Te
itory
which might permit a testator to appoint a guardian for their child.
[10 Marks]
Page 2 of 2
v1.3
4. Answer both of:
(a) What is the limitation period for a claim for loss or damage on board a ship
caused by another ship; and
(b) Is an extension to the limitation available?
Refer to both Commonwealth and NSW law in your answer.
[10 Marks]
5. Find and
iefly explain the latest case in which the High Court of Australia examined
the equitable remedy of account of profits.
[10 Marks]
6. Discuss the mechanism by which treaties and conventions may become Australian
law by comparing the implementation (if any) in Australia of:
(a) the Convention for the Suppression of Unlawful Acts Against the Safety of
Maritime Navigation; and
(b) the Convention for the Unification of Certain Rules for International Ca
iage
y Air.
[15 Marks]
Adam Edwards XXXXXXXXXXJune 2020
Mod I Lecturer
COP-4338 Systems Programming
Programming Assignment 6:
I/O and Binary Search
Due Date: Aug 2 at 11:59 PM (No LATE Submissions allowed)
In this assignment, you are asked to write a C function with the following signature that
spell-checks its first input parameter (which is a string/char a
ay) and returns 0 if it is not
spelled co
ectly:
int spellCheck(char* word, char* dictionaryFileName){. . . }
To perform spell-checking, you simply need to do binary search on the sorted list of
English words given in their co
ect forms in the file entitled “dictionary.txt” available on
Canvas along with the specification of this assignment. The name and path of this file is
passed to your function as the second input parameter.
Binary search can either be implemented using a binary search tree (taught in the class)
or using an iterative algorithm like the following:
int binsearch(char* dictionaryWords[],int listSize,char* keyword){
int mid, low = 0, high = listSize - 1;
while (high >= low) {
mid = (high + low) / 2;
if (strcmp(dictionaryWords[mid],keyword) < 0)
low = mid + 1;
else if (strcmp(dictionaryWords[mid],keyword)>0)
high = mid - 1;
else
eturn mid;
}
eturn -1;
not found
}
Submissions
You need to submit a .zip file compressing the C source file(s) related to the assignment (.c
files).
1