In which gesture do you press and hold one finger on an object and then move the finger to the new location?
A. swipe
B. tap
C. pinch
D. slide
Answer: D
You might also like to view...
What is wrong with the following pseudocode?
``` Declare Count As Integer Declare TheNumber As Integer Set TheNumber = 12 For (Count = 10; Count>TheNumber; Count--) Write TheNumber + Count End For ``` a. A counter must start at0or1 b. The limit condition in aForloop cannot be a variable c. The loop will never be entered since the initial value ofCount is less than the test condition d. The loop will never end since the test condition will never be met
If a file has been edited and a user immediately attempts to close it, what happens?
A) The file automatically closes. B) A warning message is displayed asking the user if he or she wants to save the changes. C) The new, edited file is automatically saved. D) A backup file is automatically saved.
Which of the following options can be used to determine if an array contains any values?
A. Use the Array class's size method B. Use the Array class's empty? method C. Use the Array class's length method D. All of the above
An image map contains one or more invisible regions, called ____, which are hyperlinked.
A. slices B. indices C. hot spots D. filters