PCAP Exam QuestionsBrowse all questions from this exam

PCAP Exam - Question 42


Python strings can be `glued` together using the operator:

Show Answer
Correct Answer: D

In Python, the plus (+) operator is used to concatenate, or 'glue', strings together. For example, 'hello' + ' world' results in 'hello world'.

Discussion

3 comments
Sign in to comment
macxszOption: D
May 3, 2022

answer: D. +

666_mOption: D
May 7, 2022

D is correct

DjenneOption: D
Jun 18, 2022

D (+) is the correct answer.