You determine the degree of extrusion by changing the ____ value in the 3D Extrude & Bevel Options dialog box.

A. Extrude Depth
B. Extrusion Degree
C. Bevel Options
D. Appearance


Answer: A

Computer Science & Information Technology

You might also like to view...

Given the following code, what namespace does display3 belong to?

{ void print(); void display1(){}; } namespace ns2 { void print(); void display2(){}; } void display3(); int main() { using namespace ns1; using namespace ns2; display1(); display2(); return 0; } void display3() { }

Computer Science & Information Technology

A date formatted as 19-Jun-17 has a Short Date format. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The operator used to force the conversion of a value to another type is the ____ operator.

A. conversion B. cast C. assignment D. increment

Computer Science & Information Technology

The factorial of zero is ______.

a) –1 b) 0 c) 1 d) 2

Computer Science & Information Technology