The proper way to convert a string to all lowercase is:
a) Char.ToLower( string )
b) ToLower( string )
c) string.ToLower()
d) string.ToLower( string )
c) string.ToLower()
Computer Science & Information Technology
You might also like to view...
The following code should display whether integer value is odd or even:
``` switch (value % 2) { case 0: Console.WriteLine("Even integer"); case 1: Console.WriteLine("Odd integer"); } ```
Computer Science & Information Technology
What are the Guidelines for creating master files or database ?
What will be an ideal response?
Computer Science & Information Technology
You can test a sound by playing the movie in a ____.
A. Flash Player window B. Web page C. control space D. either a. or b.
Computer Science & Information Technology
You would ________ a table if you wanted to display only data that matches specific criteria
A) scale B) freeze C) sort D) filter
Computer Science & Information Technology