Methods should not be written inside double quotes.
True
False
View Answer
Correct Answer: A — True
Explanation:
Always make sure to write methods outside double quotes.
5 practice sets · Page 1 of 1
Methods should not be written inside double quotes.
True
False
Correct Answer: A — True
Explanation:
Always make sure to write methods outside double quotes.
The downcase method changes the whole string to smallcase letters.
True
False
Correct Answer: A — True
Explanation:
Changes everything to smallcase.
What does the .upcase method do?
Convert the string to uppercase
Convert only lowercase string to uppercase and vice-versa
Convert the string to lowercase
None o the mentioned
Correct Answer: A — Convert the string to uppercase
Explanation:
.upcase method is used to change the given string to uppercase.
The .length method is used to check number of characters.
True
False
Correct Answer: B — False
Explanation:
The .length method is used to check number of characters, spaces and even symbols.
Which of the following is the valid string method?
The .length method
The .upcase method
The .downcase method
The .irreverse method
Correct Answer: D — The .irreverse method
Explanation:
There is no predefined method which can reverse an already reversed string.