The way to find out if two strings are equal is:
a) the Equals method
b) the CompareTo method
c) the == operator
d) All of the above
d) All of the above
Computer Science & Information Technology
You might also like to view...
What is CMOS?
A) A type of memory on a card used for input/output processes B) A type of BIOS chip that is easily upgraded without installing a new chip C) A memory chip dedicated to holding the operating system D) A special type of static memory on the motherboard that is used to save the configuration information
Computer Science & Information Technology
What is the value of ANSWER after the instructions corresponding to the following pseudocode are executed?
``` COUNT = 1 SUM = 3 DOUNTIL COUNT ? 1 SUM = SUM + COUNT COUNT = COUNT - 1 ENDDO ANSWER = SUM ``` a) 3 b) 4 c) 5 d) 6
Computer Science & Information Technology