Q:
You have been tasked with modifying an existing EDT for vehicle identification numbers to ensure that the string size accommodates VINs that are up to 17 characters long.
You need to extend the existing EDT without creating a new one, while adhering to the constraints of extending from another EDT.
What should you do?
-
A
Modify the base EDT directly to change the String size property to 17.
-
B
Create a new EDT derived from the existing one and set the String size property to 17.
-
C
Extend the existing EDT and set the String size property to 17.
-
D
Extend the existing EDT and set the String size property to a value less than the base EDT value.
C