최신NVIDIA-Certified Professional: OpenUSD Development (NCP-OUSD) - NCP-OUSD무료샘플문제
문제1
How does the concept of an edit target (Usd.EditTarget) interact with the stage in OpenUSD?
How does the concept of an edit target (Usd.EditTarget) interact with the stage in OpenUSD?
정답: B
설명: (KoreaDumps 회원만 볼 수 있음)
문제2
Referring to dining_room.usda, which of the following best describes the role of the references composition arc on the /Root/Chair prim?
#usda 1.0
def Xform "Root"
{
def Xform "Chair" (
references = @chair.usda@
)
{
float3 xformOp:scale = (1.5, 1.5, 1.5)
}
}
Referring to dining_room.usda, which of the following best describes the role of the references composition arc on the /Root/Chair prim?
#usda 1.0
def Xform "Root"
{
def Xform "Chair" (
references = @chair.usda@
)
{
float3 xformOp:scale = (1.5, 1.5, 1.5)
}
}
정답: C
설명: (KoreaDumps 회원만 볼 수 있음)
문제3
Why is extract, transform, load (ETL) a useful design pattern for USD data exchange? Choose two.
Why is extract, transform, load (ETL) a useful design pattern for USD data exchange? Choose two.
정답: C,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제4
Why is a well-designed model kind hierarchy important for an efficient pipeline?
Why is a well-designed model kind hierarchy important for an efficient pipeline?
정답: B
설명: (KoreaDumps 회원만 볼 수 있음)
문제5
When designing a scalable asset structure, which two aspects should be primarily considered? Choose two.
When designing a scalable asset structure, which two aspects should be primarily considered? Choose two.
정답: C,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제6
You have the following layers:
cone1.usda:
#usda 1.0
(
upAxis = "Y"
defaultPrim = "Cone"
)
def Cone "Cone"
{
uniform token axis = "Z"
double radius = 2
double height = 3
}
cone2.usda:
#usda 1.0
(
upAxis = "Z"
defaultPrim = "Cone"
)
def Cone "Cone"
{
uniform token axis = "Z"
double radius = 2
double height = 3
}
The following root layer references these two layers and is opened by a DCC tool that does not apply any sort of corrective transformations to any layer data:
coneScene.usda:
#usda 1.0
(
upAxis = "Z"
)
def Cone "Cone1" (
prepend references = @./cone1.usda@ < /Cone >
)
{
double3 xformOp:translate = (-5, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Cone "Cone2" (
prepend references = @./cone2.usda@ < /Cone >
)
{
double3 xformOp:translate = (5, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
When viewing the scene in the DCC tool, in a view/camera orientation that matches the scene upAxis, what should the orientations of the two cones be?
You have the following layers:
cone1.usda:
#usda 1.0
(
upAxis = "Y"
defaultPrim = "Cone"
)
def Cone "Cone"
{
uniform token axis = "Z"
double radius = 2
double height = 3
}
cone2.usda:
#usda 1.0
(
upAxis = "Z"
defaultPrim = "Cone"
)
def Cone "Cone"
{
uniform token axis = "Z"
double radius = 2
double height = 3
}
The following root layer references these two layers and is opened by a DCC tool that does not apply any sort of corrective transformations to any layer data:
coneScene.usda:
#usda 1.0
(
upAxis = "Z"
)
def Cone "Cone1" (
prepend references = @./cone1.usda@ < /Cone >
)
{
double3 xformOp:translate = (-5, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
def Cone "Cone2" (
prepend references = @./cone2.usda@ < /Cone >
)
{
double3 xformOp:translate = (5, 0, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"]
}
When viewing the scene in the DCC tool, in a view/camera orientation that matches the scene upAxis, what should the orientations of the two cones be?
정답: A
설명: (KoreaDumps 회원만 볼 수 있음)
문제7
A key responsibility of the pipeline is to assemble content that may have divergent stage metadata across layer stacks. Which of these metadata is automatically handled by composition when they diverge across layer stacks?
A key responsibility of the pipeline is to assemble content that may have divergent stage metadata across layer stacks. Which of these metadata is automatically handled by composition when they diverge across layer stacks?
정답: D
설명: (KoreaDumps 회원만 볼 수 있음)
문제8
Why would you not see a sphere when opening this scene?
#usda 1.0
(
defaultPrim = "wall_a_inst"
upAxis = "Z"
)
def Xform "wall_a_inst" (
instanceable = true
variants = {
string Emissive = "Default"
}
prepend variantSets = "Emissive"
)
{
def Sphere "Sphere"
{
}
variantSet "Emissive" = {
"Daytime" {
}
"Default" {
}
}
}
Why would you not see a sphere when opening this scene?
#usda 1.0
(
defaultPrim = "wall_a_inst"
upAxis = "Z"
)
def Xform "wall_a_inst" (
instanceable = true
variants = {
string Emissive = "Default"
}
prepend variantSets = "Emissive"
)
{
def Sphere "Sphere"
{
}
variantSet "Emissive" = {
"Daytime" {
}
"Default" {
}
}
}
정답: C
설명: (KoreaDumps 회원만 볼 수 있음)