FUNDAMENTALS OF COMPUTER

USING MICROSOFT EXCEL

HOW TO ADD COPY AND MOVE WORKSHEETS WITHIN EXCEL WORKBOOKS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
The LOWER function only affects letters; it does not change numbers or characters.
A
T
B
F
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -Description. Converts all uppercase letters in a text string to lowercase.

Detailed explanation-2: -lower() “ method changes the strings to lowercase. We can see in the above code block that the variables that store each string have uppercase letters. Then with the . lower() method, it converts those letters to lowercase.

Detailed explanation-3: -To convert the text to lowercase, type =LOWER(A2) instead. Use =UPPER(A2) in cases where you need to convert text to uppercase, replacing A2 with the appropriate cell reference.

Detailed explanation-4: -lower() is a built-in Python method primarily used for string handling. The . lower() method takes no arguments and returns the lowercased strings from the given string by converting each uppercase character to lowercase. If there are no uppercase characters in the given string, it returns the original string.

There is 1 question to complete.