Coding Challenge: Word Information

Test the concepts of Strings that you have learned so far.

Problem statement

Write a program that returns the length of a given word, and its lowercase, and uppercase version.

Input

length("hello");
lowerCase("BrEak");
upperCase("LiVe");

Expected output

5
'break'
'LIVE'

Coding exercise

Get hands-on with 1200+ tech skills courses.