10
QuizMultiple Choice

Readable Code — Unit test

Question 10 of 25 • VA-Information Technology Fundamentals B

Which can be used to decode a Unicode character encoding into text?

Answer
A
stringVariable=unicodeString.decode(decoding= “utf-8”, errors= “strict”)
B
stringVariable=unicodeString.encode(encoding= “utf-8”, errors= “strict”)
C
stringVariable=unicodeString.decode(encoding= “utf-8”, errors= “strict”)
D
stringVariable=unicodeString.encode(decoding= “utf-8”, errors= “strict”)
Previous
Next
Which can be used to decode a Unicode character…