After you decide on the content you want to use and create the type, you can experiment with its appearance by changing its ____________________ (a set of characters with a similar appearance), size, and color.

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


font

Computer Science & Information Technology

You might also like to view...

Microsoft Word is an example of which type of computer application?

A) Database B) Accounting C) Word processing D) Spreadsheet

Computer Science & Information Technology

What does the following code do? The first code listing contains the declaration of the Shape class. Each Shape object represents a closed shape with a number of sides. The second code listing contains a method (Mystery) created by a client of the Shape class. What does this method do?

public class Shape
{
private int m_intSides;

// constructor with number of sides
public Shape( int intSides )
{
Side = intSides;

} // end constructor Shape

// set and get side value
public int Side
{
// return m_intSides
get
{
return m_intSides;

} // end of get accessor

// set m_intSides
set
{
if ( value > 0 )
{
m_intSides = value;
}
else
{
m_intSides = 0;
}

} // end of set accessor

} // end property Side

} // end class Shape

Computer Science & Information Technology

When using mail merge, which of the following is a part of the main document?

A) The size of the label B) The addresses C) The records D) The names of people

Computer Science & Information Technology

If the Private keyword is omitted, the default option is Public.

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

Computer Science & Information Technology