A(n) ________ page is the first page displayed as a user enters a SharePoint site
A) unghosted B) notebook C) home D) documents
C
You might also like to view...
What is the difference between a paragraph style and a character style?
What will be an ideal response?
John is working extensively on a document enhancement task. The textual content for the document is ready. However, he has been told to utilize graphics and document enhancement techniques to highlight and format important textual content. To applytext effects to the text, John has to click the Text Effects and____in the Font group on the Home tab.?
A. ?Paint button B. ?Themes button C. ?Typography button D. ?Watermark button
Consider the following list:int list[] = {4, 8, 19, 25, 34, 39, 45, 48, 66, 75, 89, 95}When performing a binary search, the element to be found is first compared with ____.
A. 4 B. 25 C. 39 D. 95
Given the following pseudocode, what value of GRADE will be output if 60 is input?
``` Start Read GRADENUM CASENTRY GRADENUM CASE 60 < GRADENUM ? 80 GRADE = “A” CASE 59 ? GRADENUM ? 60 GRADE = “B” CASE 50 < GRADENUM ? 60 GRADE = “C” CASE other GRADE = “No Grade” ENDCASE Write GRADE Stop ``` a) A b) B c) C d) No Grade