Critical Thinking Questions
Case 9-2
?
You have gotten fairly comfortable with animation, but now it is time for you to take your skills to the next level.
?

You are also interested in gaining a better understanding of 3D modeling. Your friend has a lot of experience with 3D modeling, and she tells you ____.
a.It is not possible to use predefined shapes, such as cones, cubes, and cylinders, to create 3D objects.c.Photoshop is a dedicated 3D modeling app.b.3D modeling is the process of developing a three-dimensional image based on two-dimensional surfaces.d.A material is the underlying structure of a 3D model, often represented by a wireframe or skeleton.

What will be an ideal response?

Answer: B

Computer Science & Information Technology

You might also like to view...

Jenny is working on a database that stores invoices. She needs to include the current day, month, and year, which will be derived from the computer system, on each new invoice. She should use the ________ function for this purpose

A) DatePart B) DateDiff C) Date D) DateArithmetic

Computer Science & Information Technology

What is the output of the following code?

``` public class Test { public static void main(String[] args) { int[][] matrix = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; for (int i = 0; i < 4; i++) System.out.print(matrix[i][1] + " "); } } ``` a. 1 2 3 4 b. 4 5 6 7 c. 1 3 8 12 d. 2 5 9 13 e. 3 6 10 14

Computer Science & Information Technology