Answer:
A. Document Properties
B. Permission
C. Document Options
D. File Details
The answer to this question is "File Details
" . This will help Jeffrey works efficiently with a huge database of spreadsheet records each day. He can assign names to these File Details which represents each spreadsheet records. This will help his report more organized and easy to identity.
Answer:
Check the explanation
Explanation:
fun match (v,p) =
case (v,p) of
(_,Wildcard) => SOME []
|(Const v1,ConstP p1) =>if v1 = p1 then SOME [] else NONE
|(Unit,UnitP) =>SOME []
|(Constructor (s ,v1),ConstructorP (s1, p1) ) => if s = s1 then match(v1,p1) else NONE
|(Tuple vs,TupleP ps) => if List.length vs = List.length ps
then case all_answers match (ListPair.zip(vs,ps)) of
SOME v2=>SOME v2
|_ => NONE
else NONE
|(_, Variable s ) => SOME [(s,v)]
|(_,_) => NONE
The <strong> and </strong> tags are used to bold text. Some B codes or markdown languages use <b> and </b> but the strong tags are more on par with standards.