The ________ function changes the case of the characters in a string, making all characters uppercase

A) LEFT B) UPPER C) LOWER D) MID

B

Computer Science & Information Technology

You might also like to view...

The addAfter operation of an unordered list collection is

a) O(1) b) O(log n) c) O(n) d) O(n log n) e) a higher order than O(n log n)

Computer Science & Information Technology

What does the following code print?

``` document.write( "*
" ); document.write( "***
" ); document.write( "*****
" ); document.write( "****
" ); document.writeln( "**" ); ```

Computer Science & Information Technology