Which of the following statements is false? True division (/) divides a numerator by a denominator and yields a floating-point number with a decimal point. Floor division (//) divides a numerator by a denominator, yielding the highest integer that’s not greater than the result. The expression -13 / 4 evaluates to -3.25. The expression -13 // 4 evaluates to -3 QUESTION 14 Which of the following statements a), b) or c) is false? When a backslash (\) appears in a string, it’s known as the escape character The backslash and the character immediately following it form an escape sequence. For example, \n represents the newline character escape sequence, which tells print to move the output cursor to the next line. Placing two backslashes back-to-back tells print to display a blank line. All of the above statements are true
QUESTION 13
- Which of the following statements is false?
True division (/) divides a numerator by a denominator and yields a floating-point number with a decimal point. |
||
Floor division (//) divides a numerator by a denominator, yielding the highest integer that’s not greater than the result. |
||
The expression -13 / 4 evaluates to -3.25. |
||
The expression -13 // 4 evaluates to -3 |
QUESTION 14
- Which of the following statements a), b) or c) is false?
When a backslash (\) appears in a string, it’s known as the escape character |
||
The backslash and the character immediately following it form an escape sequence. For example, \n represents the newline character escape sequence, which tells print to move the output cursor to the next line. |
||
Placing two backslashes back-to-back tells print to display a blank line. |
||
All of the above statements are true. |
Trending now
This is a popular solution!
Step by step
Solved in 2 steps