If existing masters do not quite work for you, PowerPoint allows you to create a ____________________ slide layout and then add the placeholders as needed.

Fill in the blank(s) with the appropriate word(s).


custom

Computer Science & Information Technology

You might also like to view...

Which of the following is true about database access control?

A. to access a database the SQL Server login must be mapped to a database user B. members of the sysadmin server role don't have access to databases by default C. once a user logs in to the SQL Server, they have automatic access to underlying database objects D. the database user login name must be different from the server login name

Computer Science & Information Technology

The following program displays __________.

``` public class Test { public static void main(String[] args) { String s = "Java"; StringBuilder buffer = new StringBuilder(s); change(s); System.out.println(s); } private static void change(String s) { s = s + " and HTML"; } } ``` a. Java b. Java and HTML c. and HTML d. nothing is displayed

Computer Science & Information Technology

Which of the following statements describes a worm?

a. A program that disguises itself as something useful but actually harms your system. b. A process that runs automatically, without requiring a person to start or stop it. c. A program that runs independently of other software and travels between computers and across networks. d. A program that locks a user's data or computer system until a ransom is paid.

Computer Science & Information Technology

The four basic list operations are insertion, deletion, retrieval, and _____.

A. traversal B. destruction C. creation D. enumeration

Computer Science & Information Technology