Appending string values onto another string is called:
A.
compilation
B.
connection
C.
concatenation
D.
conjunction
The Answer Is:
C
This question includes an explanation.
Explanation:
Concatenation is the term used to describe the process of appending string values onto another string. In Python, concatenation can be done using the + operator, such as “Hello” + “World” = "HelloWorld"4.