Which of the following statements are true?
a. You can specify a horizontal text alignment in a text area.
b. You can specify the number of columns in a text area.
c. You can disable editing on a text area.
d. You can create a text field with a specified text area.
e. You can specify the number of rows in a text area.
bcde
You might also like to view...
If a program compiles fine, but it produces incorrect result, then the program suffers __________.
a. a compilation error b. a runtime error c. a logic error
how many lines will be output if the following records are input?
Given the following pseudocode: ``` Start FINAL-ACCUM = 0 NAME-ACCUM = 0 Read NAME, AMT SAVE-NAME = NAME DOWHILE not EOF IF NAME ? SAVE-NAME THEN Write NAME-ACCUM FINAL-ACCUM = FINAL-ACCUM + NAME-ACCUM NAME-ACCUM = 0 SAVE-NAME = NAME ELSE Write NAME, AMT NAME-ACCUM = NAME-ACCUM + AMT ENDIF Read NAME, AMT ENDDO Write FINAL-ACCUM Stop ``` John 20.00 John 30.00 Mary 10.00 Mary 6.00 Sue 8.00 Sue 5.00 a) 7 b) 9 c) 10 d) 11