When you add a layer to an image, a new layer appears _____ the currently selected layer, creating a stacking order.

a. above
b. below
c. beside
d. left of


a. above

Computer Science & Information Technology

You might also like to view...

The item at a specific position i within an array can be accessed using the following format: ____.

A. i[].anArray() B. anArray.i() C. i.anArray[] D. anArray[i]

Computer Science & Information Technology

In a ________ relationship exists between two tables when a record in one table is related to a single record in a second table

A) one-to-many B) many-to-many C) many-to-one D) one-to-one

Computer Science & Information Technology

You can display headers and footers on all pages, or you can suppress their display on the first page

Indicate whether the statement is true or false

Computer Science & Information Technology

String sentence;String str1, str2, str3, str4;int length1;sentence = "First exam is on Monday.";str1 = sentence.substring(6, 12);str2 = str1.substring(0, 4);str3 = sentence.replace('i', '#');str4 = sentence.indexOf("on");length1 = sentence.length();Based on the code above, what is the value of str3?

A. "First exam is on Monday." B. "F#rst exam #s on Monday." C. "F#rst exam is on Monday." D. "#i### #### i###########."

Computer Science & Information Technology