Formatting that enhances a picture, such as a shadow, glow, reflection, or 3-D rotation

a. Picture effects
b. Picture styles
c. Image effects

A

Computer Science & Information Technology

You might also like to view...

Which of the following statements is true?

a. The capacity of a StringBuilder is equal to its length. b. The capacity of a StringBuilder cannot exceed its length. c. The length of a StringBuilder cannot exceed its capacity. d. Both a and b are true.

Computer Science & Information Technology

Which of the following methods returns a value?

A. Method changeName(String lName, String fName)    lastName = lName    firstName = fName    Display "The name has been changed to " + firstName + " " + lastName End Method B. Method displayInfo()    Display "Account #: " + acctNumber    Display "Account type: " + acctType    Display "Owner name: " + lastName + ", " + firstName    Display "Current balance: " + acctBal End Method C. Method withdraw(Numeric amt)    acctBal = acctBal - amt    Display "The new balance is: $" + acctBal End Method D. Method inquire()    Return acctBal End Method

Computer Science & Information Technology