en
Feedback
Coding Quiz Zone

Coding Quiz Zone

Open in Telegram

✨ Part Of @OfficialCodingExpert Dive into the world of computer science, programming, and coding challenges. Sharpen your skills, expand your knowledge, and embark on a journey of continuous learning. Stay tuned for daily quizzes!

Show more
1 575
Subscribers
No data24 hours
No data7 days
-930 days
Posts Archive
>>>print(format("Welcome", "10s"), end = '#')
>>>print(format(111, "4d"), end = '#')
>>>print(format(924.656, "3.2f"))

What will be the output of the following Python code?
Anonymous voting

>>>print("D", end = ' ')
>>>print("C", end = ' ')
>>>print("B", end = ' ')
>>>print("A", end = ' ')

What will be the output of the “hello” +1+2+3?
Anonymous voting

The format function, when applied on a string returns ___________
Anonymous voting

Suppose s is “\t\tWorld\n”, what is s.strip()?
Anonymous voting

Which of the following statement prints hello\example\test.txt?
Anonymous voting

What will be the output of the following Python statement? >>>print(chr(ord('b')+1))
Anonymous voting

What will be the output of the following Python statement? >>>chr(ord('A'))c) a
Anonymous voting

To concatenate two strings to a third what statements are applicable?
Anonymous voting

What will be the output of the following Python code? >>>example="helloworld" >>>example[::-1].startswith("d")
Anonymous voting

What will be the output of the following Python code? >>>example = "helle" >>>example.rfind("e")
Anonymous voting

What will be the output of the following Python code? >>>example = "helle" >>>example.find("e")
Anonymous voting

Given a string example=”hello” what is the output of example.count(‘l’)?
Anonymous voting

What will be the output of the following Python code? >>>max("what are you")
Anonymous voting

What will be the output of the following Python code?
Anonymous voting

>>>example = "snow world"
>>>example[3] = 's'
>>>print example

What will be the output of the following Python code?
Anonymous voting

>>>example = "snow world"
>>>print("%s" % example[4:7])

What will be the output of the following Python code?
Anonymous voting