Which two statements will convert the string Hello World to ello world? (Choose two.)
Which two statements will convert the string Hello World to ello world? (Choose two.)
To convert 'Hello World' into 'ello world', we need to remove the initial 'H' and convert the string to lowercase. The statement using SUBSTR('Hello World', 2) will remove the first character, resulting in 'ello World'. Then, using LOWER on this result will convert 'ello World' to 'ello world'. Therefore, these two statements: SUBSTR('Hello World', 2) and LOWER(SUBSTR('Hello World', 2)) will achieve the desired result.
D and E is correct
D, E are correct
DE are correct