The ____ includes shortcuts to tasks typically performed with contacts, such as scheduling a meeting, sending an email message, and editing contact information.
A. Navigation pane
B. Contact pane
C. contact list
D. contact card
Answer: D
You might also like to view...
When an employee is terminated from employment, the employee’s access to computers should be terminated:
a. At the next monthly audit b. At the next quarterly audit c. Within seven days d. Within one day
The method trim of the String class trims off:
(a) Leading white space (b) Trailing white space (c) Leading and trailing white space (d) Blanks
Write a script that inputs integers (one at a time) and passes them one at a time to function isEven, which uses the modulus operator to determine if an integer is even. The function should take an integer argument and return true if the integer is even and false otherwise. Use sentinel-controlled looping and a prompt dialog.
What will be an ideal response?
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