Define the term graphics program and differentiate among the three basic categories of graphics programs.
What will be an ideal response?
The term graphics program can refer to a wide range of software applications. Generally speaking, though, graphics programs fall into three basic categories: bitmap, vector, and animation. You can think of bitmap graphics (also called raster graphics) as very sophisticated mosaics. Instead of using colored tiles, bitmap graphics use pixels-colored squares that are so small that your eye perceives only the whole image, not the pixels themselves. All digital photographs are bitmap graphics, and all Photoshop images are bitmap graphics. Vector graphics are often created on a computer, not through scanning or downloading. Many times, vector-based programs are called draw programs, because vector graphics are created by drawing lines, creating objects, and filling them with color. Adobe Illustrator is a vector-based program. Finally, animation programs, such as Adobe Flash, use timeline structures to create sequences of graphics -both bitmap and vector -then create the illusion of motion and animation by presenting that sequence of images so quickly that your eye perceives movement.
You might also like to view...
A text box's ____ property specifies whether the text can span more than one line in the control.
A. ScrollBars B. Manyline C. Multiline D. Span
Discuss the three categories-fixed, fluid, and elastic-of web page layouts.
What will be an ideal response?
Fill in the code to complete the following method for checking whether a string is a palindrome.
``` public static boolean isPalindrome(String s) { return isPalindrome(s, 0, s.length() - 1); } public static boolean isPalindrome(String s, int low, int high) { if (high <= low) // Base case return true; else if (s.charAt(low) != s.charAt(high)) // Base case return false; else return _______________________________; } ``` a. isPalindrome(s) b. isPalindrome(s, low, high) c. isPalindrome(s, low + 1, high) d. isPalindrome(s, low, high - 1) e. isPalindrome(s, low + 1, high - 1)
Given the following array declaration, what is the value stored in the scores[0][0] element? ? int scores[5][5] = {5};
A. 0 B. 5 C. 10 D. 25