Buttons have a unique Timeline with specific frames. Explain each of these.
What will be an ideal response?
Up-The default state, not affected by any mouse movement
Over-The state after the user rolls the mouse pointer over the button
Down-The state after the user clicks the button with the mouse pointer
Hit area-The active clickable area of the button that corresponds to the button object in either the Over or the Down state.
You might also like to view...
Write a function to interleave two pictures taken as input. Take the first 20 pixels from the first picture and then 20 pixels from the second picture and then the next 20 pixels from the first picture and then the next 20 pixels from the second picture and so on till all the pixels have been used.
What will be an ideal response?
Input an integer containing 0s and 1s (i.e., a “binary” integer) and print its decimal equivalent. Appendix C, Number Systems, discusses the binary number system. (Hint: Use the mod- ulus and division operators to pick off the “binary” number’s digits one at a time from right to left. Just as in the decimal number system, where the rightmost digit has the positional value 1 and the
next digit leftward has the positional value 10, then 100, then 1000, etc., in the binary number system, the rightmost digit has a positional value 1, the next digit leftward has the positional value 2, then 4, then 8, etc. Thus, the decimal number 234 can be interpreted as 2 * 100 + 3 * 10 + 4 * 1. The decimal equivalent of binary 1101 is 1 * 8 + 1 * 4 + 0 * 2 + 1 * 1.) What will be an ideal response?
What technology gets its name from the notion that it ignores the traditional A, B, and C class designations for IP addresses?
A. Route aggregation B. Address masquerading C. NAT D. Classless Inter-Domain Routing
COGNITIVE ASSESSMENT Which of the following is NOT an advantage of the database approach?
A. Eliminates redundant data B. Improved data integrity C. Easier access D. Reduced development time