The Internet Explorer filter that makes a specified color in the object transparent is ____.

A. DropShadow(color=#rrggbb, offX=value, offY=value)
B. Glow(color=#rrggbb, strength=1-255)
C. Chroma(color=#rrggbb)
D. Pixelate(maxSquare=value)

Answer: C

Computer Science & Information Technology

You might also like to view...

What will be the values of x and y as a result of the following code?

``` int x = 25, y = 8; x += y++; ``` a. x = 34, y = 9 b. x = 25, y = 8 c. x = 33, y = 8 d. x = 33, y = 9

Computer Science & Information Technology

What is the result of the following code?

 ArrayList intList = new ArrayList();
 string strOutput = "";

 intList.Add( 1 );
 intList.Add( 3 );
 intList.Add( 5 );

 foreach ( int intListItems in intList )
 {
 strOutput += ( " " + intListItems.ToString() );
 }

 MessageBox.Show( strOutput, "Mystery",
 MessageBoxButtons.OK, MessageBoxIcon.Information );

Computer Science & Information Technology