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 more1 575
Subscribers
No data24 hours
No data7 days
-930 days
Posts Archive
1 575
>>>print(format("Welcome", "10s"), end = '#')
>>>print(format(111, "4d"), end = '#')
>>>print(format(924.656, "3.2f"))1 575
>>>print("D", end = ' ')
>>>print("C", end = ' ')
>>>print("B", end = ' ')
>>>print("A", end = ' ')1 575
The format function, when applied on a string returns ___________
1 575
Which of the following statement prints hello\example\test.txt?
1 575
What will be the output of the following Python statement?
>>>print(chr(ord('b')+1))
1 575
What will be the output of the following Python statement?
>>>chr(ord('A'))c) a
1 575
To concatenate two strings to a third what statements are applicable?
1 575
What will be the output of the following Python code?
>>>example="helloworld" >>>example[::-1].startswith("d")
1 575
What will be the output of the following Python code?
>>>example = "helle" >>>example.rfind("e")
1 575
What will be the output of the following Python code?
>>>example = "helle" >>>example.find("e")
1 575
Given a string example=”hello” what is the output of example.count(‘l’)?
1 575
What will be the output of the following Python code?
>>>max("what are you")
