Characteristics : Quantity
format : Character
values : 1, 2, 3, 4, 5, 6, 7, 8
Characteristics : Length
format : Numeric
value : 100, 200, 300, 400, 500
A) $SELF.Quantity = 6 (assign to the value 300,400,500 of characteristics length)
B) $SELF.Quantity = ‘6’ (assign to the value 300,400,500 of characteristics length)
C) $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the value 8 of characteristics quantity)
D) $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the characteristics quantity header)
E) $SELF.Quantity = 6 if LENGTH > 200 (assign to the characteristics quantity header)
Requirement : if length is more then 200, then the quantity is 6.
A) $SELF.Quantity = 6 (assign to the value 300,400,500 of characteristics length)
B) $SELF.Quantity = ‘6’ (assign to the value 300,400,500 of characteristics length)
C) $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the value 8 of characteristics quantity)
D) $SELF.Quantity = ‘6’ if LENGTH > 200 (assign to the characteristics quantity header)
E) $SELF.Quantity = 6 if LENGTH > 200 (assign to the characteristics quantity header)
.
.
.
Answer: D
ReplyDeleteThe Syntax:
ReplyDelete$self.characteristic = characteristic value if condition is TRUE
is to be assigned to the characteristic header, class or configuration profile