20 Study the Python code below and answer the questions th…
20 Study the Python code below and answer the questions that follow. (a) Explain the term concatenation. (2) 1 #Welcome message 2 first = input “Please enter your first name” 3 second = input (Please enter your second name”) 4 fullName = first + “ “ second 5 prrint (“hello “ + fullName + “, Nice to meet you”) (b) One error was found in each of the lines 2, 3, 4 and 5 (i) Write the corrected line 2 (1) (ii) Write the corrected line 3 (1) (iii) Write the corrected line 4 (1) (iv) Write the corrected line 5 (1) [6]
Read Details