Post

@PythonPr Answer: C) No
Step by step:
› m = 'N' (string)
› n = 'o' (string)
› p = 5 (not used!)
› m + n = 'N' + 'o' = 'No'
For beginners: String concatenation with +! Notice p is defined but never used -- it's there to distract you.
English

@PythonPr Answer: C) No
Because both m and n are strings.
m + n performs string concatenation, not arithmetic.
So 'N' + 'o' → "No".
English

@PythonPr C — "No"
String concatenation ('N' + 'o'). p isn’t used.
English

@PythonPr No is the right answer.
Simple use the concept of string concatenation.
English

































