The ____________________ function specifies the number of decimal places to be used for values and formulas.

Fill in the blank(s) with the appropriate word(s).


ROUND

Computer Science & Information Technology

You might also like to view...

Fill in the blanks to complete the statements for drawing the graphic as shown in Figure 11.28.

Assume the lines are drawn on a canvas with a rendering context, myContext.
myContext.moveTo(___, ___);
myContext.___(___,___);
myContext.___(___,___);
myContext.___(___,___);
myContext.___(___,___);
myContext.___(___,___);

Computer Science & Information Technology

The first step that programmers follow when they solve problems is to plan the algorithm.

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

Computer Science & Information Technology

This code should allow a user to pick a font from a Font and set the text in txtDis- play to that font. Find the error(s) in the following code, assuming that a TextBox named txtDisplay exists on a Form, along with a MenuItem named mnuitmFont.

 private void mnuitmFont_Click(
 object sender, System.EventArgs e )
 {
 FontDialog dlgFontDialog;

 dlgFontDialog = new FontDialog();
 dlgFontDialog.ShowDialog();
 txtDisplay.Font = dlgFontDialog.Font;

 } // end method mnuitmFont_Click

Computer Science & Information Technology

You would need a magnifying glass to see a pixel.

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

Computer Science & Information Technology