What is one way the user can tell that records cannot be deleted in a form?
A) There is no way to tell if records cannot be deleted.
B) The Delete command is grayed out.
C) The Delete command has a line through it.
D) The Delete command is not visible.
B
You might also like to view...
_______________ is an open source video format developed by Google and used for HTML5 video.
Fill in the blank(s) with the appropriate word(s).
A property looks like a method because it directly represents a storage location.
Answer the following statement true (T) or false (F)
Parallel transmission
a. sends the bits in a byte one after the other b. sends the bits in a byte on a single path c. sends the bits in a byte on many paths d. is always faster than serial transmission
How do you initialize a C-string called Cheer which will contain “Hooray” (without the quotes.) ?
A. char Cheer[7] = {‘H’, ‘o’, ‘o’, ‘r’, ‘a’, ‘y’, ‘\0’}; B. char Cheer[7] = “Hooray”; C. char cheer[7] = “Hooray”; D. A and B