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

Access this course and 1400+ top-rated courses and projects.