Which of the following statements is true?
a. The capacity of a StringBuilder is equal to its length.
b. The capacity of a StringBuilder cannot exceed its length.
c. The length of a StringBuilder cannot exceed its capacity.
d. Both a and b are true.
c. The length of a StringBuilder cannot exceed its capacity.
You might also like to view...
A ________ is a device that allows you to write on a touch screen like a pen does on paper
A) digitizer pen B) stylus C) digital pen D) digital writer
When a C# application is done using a file, what should it do with the file?
A. It should delete the file. B. It should return the file to RAM. C. It should truncate the file. D. It should close the file.
Sara, a security administrator, examines a network session to a compromised database server with a packet analyzer. Within the session there is a repeated series of the hex character 90 (x90). Which of the following attack types has occurred?
A. Buffer overflow B. Cross-site scripting C. XML injection D. SQL injection
Which of the following correctly accesses element 13 of array Book?
a) Book[0] + 13 b) Book[13] c) Book[12] d) None of the above.