Question
What string value is stored in the result variable by the following statement?
result = str.format("{1} {0} is really Superman", "Kent", "Clark")
Select one:
a.
Clark Kent is really Superman
b.
Kent Clark is really Superman
c.
Clark Kent
d.
{1} {0} is really Superman
result = str.format("{1} {0} is really Superman", "Kent", "Clark")
Select one:
a.
Clark Kent is really Superman
b.
Kent Clark is really Superman
c.
Clark Kent
d.
{1} {0} is really Superman
Answers
GPT 3.5
a. Clark Kent is really Superman