Which of the following are valid data definition statements that create an array of unsigned bytes containing decimal 10, 20, and 30, named myArray.
a. myArray BYTE 10, 20, 30
b. BYTE myArray 10, 20, 30
c. BYTE myArray[3]: 10, 20,30
d. myArray BYTE DUP (3) 10,20,30
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which of the following are valid data definition statements that create an array of unsigned bytes containing decimal 10, 20, and 30, named ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » Which of the following are valid data definition statements that create an array of unsigned bytes containing decimal 10, 20, and 30, named myArray. a. myArray BYTE 10, 20, 30 b. BYTE myArray 10, 20, 30 c. BYTE myArray[3]: 10, 20,30 d.