Which function converts a string to lowercase?

Study for the Database Systems Test. Prepare with flashcards and multiple choice questions, each with hints and explanations. Get ready for success!

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