PT0-002 · Question #101
Appending string values onto another string is called:
The correct answer is C. concatenation. Concatenation is the programming operation of joining two or more strings end-to-end to form a single string. For example, concatenating 'Hello' and ' World' produces 'Hello World'. This is a fundamental concept across virtually all programming languages. 'Compilation' refers…
Question
Appending string values onto another string is called:
Options
- Acompilation
- Bconnection
- Cconcatenation
- Dconjunction
How the community answered
(35 responses)- A3% (1)
- B6% (2)
- C89% (31)
- D3% (1)
Explanation
Concatenation is the programming operation of joining two or more strings end-to-end to form a single string. For example, concatenating 'Hello' and ' World' produces 'Hello World'. This is a fundamental concept across virtually all programming languages. 'Compilation' refers to translating source code into machine code, 'connection' is a networking term, and 'conjunction' is a grammatical or logical term - none of these describe string joining.
Topics
Community Discussion
No community discussion yet for this question.