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
You might also like to view...
Which of the following statements is true?
Segment A int q = 5; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); } Segment B q = 4; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); a. The output for Segment A is: default b. The output for Segment B is: 4 c. The output for Segment B is: 45default d. The output for Segment A is: 5 default
The ________ animation applies the action to elements of the placeholder object one at a time
A) One Object B) All at Once C) By Paragraph D) By Word
The wildcard character, ________, matches any combination of characters
A) # B) * C) ? D) $
In Java, all variables declared using a class are ____.
A. primitive variables B. reference variables C. constants D. operators