How can we make attributes have multiple values-04198
How can we make attributes have multiple values:
This multiple choice question (MCQ) is related to the book/course vu cs311 Introduction to Web Services Development. It can also be found in vu cs311 Final Term - Quiz No.1.
How can we make attributes have multiple values:
attributes cannot have multiple values
<myElement myAttribute="value1 value2" />
<myElement myAttribute="value1" myAttribute="value2" />
<myElement myAttribute="value1, value2" />