Which of the following are file extensions of pixel-based files?
BMP DOC JPEG TXT PNG GIF FLA
JPG PSD TIFF EPS WMF SWF AI
BMP, JPEG, PNG, GIF, JPG, PSD and TIFF
You might also like to view...
Which of the following statements is true?
a. The UML models a parameter of an operation by listing the parameter name, followed by a colon and the parameter value between the parentheses after the operation name. b. The UML indicates an operation’s return type by placing a colon and the return value after the parentheses following the operation name. c. UML class diagrams do not specify return types for operations that do not return values. d. Declaring instance variables public is known as data hiding or information hiding.
What is the openSUSE Configured Software Repositories tool and how do you open it?
What will be an ideal response?
A shared workbook is ________
A) passed from person to person via email B) designed to be stored on a network and be used by multiple people C) limited to four users D) available through any shared link
What will be displayed as a result of executing the following code? int x = 5, y = 20; x += 32; y /= 4; System.out.println("x = " + x + ", y = " + y);
a. x = 32, y = 4 b. x = 9, y = 52 c. x = 37, y = 5 d. x = 160, y = 80