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

1) Shortcuts to LinkLabels can also be created using the ampersand key (&)
when the feature is enabled.
2) The UseMnemonic property indicates that ampersand (&) should be
interpreted as a shortcut rather than an actual character.
3) By default, ListBox items cannot be changed by the user.
4) There are three selection modes for a ListBox; none, one, or multi.


1) T
2) T
3) T
4) F

Computer Science & Information Technology

You might also like to view...

Write a recursive method that computes the sum of the first n integers.

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements creates an instance of File on Window for the file c:\temp.txt?

a. new File("c:\temp.txt") b. new File("c:\\temp.txt") c. new File("c:/temp.txt") d. new File("c://temp.txt")

Computer Science & Information Technology

Define a class named Doctor whose objects are records for a clinic’s doctors. Derive this class from the class Person given in Listing 8.1. A Doctor record has the doctor’s name—defined in the class Person—a specialty as a string (for example Pediatrician, Obstetrician, General Practitioner, and so on), and an office visit fee (use the type double). Give your class a reasonable complement of constructors and accessor methods, and an equals method as well. Write a driver program to test all your methods.

This project is a simple variation of Practice Program 1. Note that two of the Doctor constructors have the same two parameter types, String and double, but in opposite order, so they are clearly distinct to the compiler.

Computer Science & Information Technology

A ________ is a collection of related data that displays in a single row within an Access table

A) field B) record C) key D) memo

Computer Science & Information Technology