Blends cannot be made between objects filled with gradients.

Answer the following statement true (T) or false (F)


False

Computer Science & Information Technology

You might also like to view...

________ creates a String array of 5 rows and 16 columns.

a) new string( 4, 15 ) b) new string( 5, 16 ) c) new string( 6, 17 ) d) new string( 16, 5 ) e) new string( 17, 6 )

Computer Science & Information Technology

Which of the following code segments creates a new file named address.txt, writes the following two lines to the file, and then closes the file?

Bob Johnson Somewhere USA a. ```Dim addressFile As System.IO.StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.Write(“Bob Johnson”) addressFile.Write(“Somewhere USA”) address.txt.Close() ``` b. ```Dim addressFile As System.IO addressFile = System.IO.File.CreateText(“address.txt”) addressFile.WriteLine(“Bob Johnson”) addressFile.WriteLine(“Somewhere USA”) addressFile.Close() ``` c. ```Dim addressFile As System.IO.StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.WriteLine(“Bob Johnson”) addressFile.WriteLine(“Somewhere USA”) addressFile.Close() ``` d. ```Dim addressFile As StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.PrintLine(“Bob Johnson”) addressFile.PrintLine(“Somewhere USA”) Close() ```

Computer Science & Information Technology

When you create a form from two tables that have a one-to-many relationship, the first table selected becomes the main form and the second table you select becomes the ________

A) joined form B) subform C) co-form D) split form

Computer Science & Information Technology

To move a mask, first tap or click the link icon on the Layers panel to unlink the mask from the layer.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology