Which code segment is used to default the preview to a zoom level of 50 percent and avert text from appearing jagged?

You as the developer of Domain.com use a client computer named Certkiller -WS009 as developing collateral. You are busy creating an instance of the PrintPreviewControl class named graphicprintPreviewControl to allow the users in the Graphics department to preview their printed documents. Which code segment is used to default the preview to a zoom level of 50 percent and avert text from appearing jagged?

You as the developer of Domain.com use a client computer named Certkiller -WS009 as developing collateral. You are busy creating an instance of the PrintPreviewControl class named graphicprintPreviewControl to allow the users in the Graphics department to preview their printed documents. Which code segment is used to default the preview to a zoom level of 50 percent and avert text from appearing jagged?

A.
printPreviewControlZoom = 0.5;
printPreviewControl.UseAntiAlias = true;

B.
printPreviewControlZoom = 0.5;
printPreviewControl.UseAntiAlias = false;

C.
printPreviewControlZoom = 50;
printPreviewControl.UseAntiAlias = false;

D.
printPreviewControlZoom = 0.05;
printPreviewControl.UseAntiAlias = true;

Explanation:
The 0.5 is the same as 50 percent. You must set the UseAntiAlias to true.

Incorrect Answers:
B, C: You must not set the UseAntiAlias to false. This will disable anti-aliasing.
D: This setting id wrong, 0.05 is not 50 percent.



Leave a Reply 0

Your email address will not be published. Required fields are marked *