Asked by Amanda

Suppose that a String variable str has already been defined and holds some String.

In the box provided below, write a statement that changes str to all lower case characters, and then copies the result back to str.

Answers

Answered by MathMate
It depends on the language used, for example,
Java:
str=str.toLowerCase();

VB:
str=LCase(str)
or
str=str.ToLower()
or
str=StrConv(str,VbStrConv.LowerCase)


Answered by Dustyn
huGCyuatujTQWDUIS
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions