Which function converts a string to lowercase?

Prepare for success in your database systems exam with our comprehensive study tools. Use flashcards and multiple choice questions, with detailed hints and explanations. Ace your exam with confidence!

Multiple Choice

Which function converts a string to lowercase?

Explanation:
Converting a string to all lowercase is done by applying a function that maps every letter to its lowercase form. The function named Lower does exactly this: it returns the same string with every alphabetic character turned into lowercase. Upper would do the opposite, turning letters to uppercase. InitCap would capitalize the first letter (or first letter of each word, depending on the language), and Length would tell you how many characters are in the string, not change its case. For example, applying Lower to "TeSt" yields "test".

Converting a string to all lowercase is done by applying a function that maps every letter to its lowercase form. The function named Lower does exactly this: it returns the same string with every alphabetic character turned into lowercase. Upper would do the opposite, turning letters to uppercase. InitCap would capitalize the first letter (or first letter of each word, depending on the language), and Length would tell you how many characters are in the string, not change its case. For example, applying Lower to "TeSt" yields "test".

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy