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.

2 answers

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)
huGCyuatujTQWDUIS