Before sharing a workbook with others, you can make the document read-only by applying the ________
A) Read-only command B) Archive Command
C) Mark as Final command D) Inspect Document command
C
Computer Science & Information Technology
You might also like to view...
Which of the following is not part of the method header?
a) method body b) method name c) parameter list d) None of the above
Computer Science & Information Technology
Why is learning the pwd (print working directory) command essential?
What will be an ideal response?
Computer Science & Information Technology
A(n) ________ file is typically about one-tenth the size of a CD file
A) AAC B) MP3 C) WAV D) MIDI
Computer Science & Information Technology
What does the following code do? Assume this method is invoked by using Mystery ( 70, 80 ).
double dblY; intX = intNumber1 + intNumber2; dblY = intX / 2; if ( dblY <= 60 ) { lblResult.Text = "<= 60 "; } else { lblResult.Text = " Result is " + dblY; } } // end method Mystery
Computer Science & Information Technology