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
PHP recognizes constructors by the name _________
Anonymous voting

Which of the following web servers are required to run the PHP script?
Anonymous voting

How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions.
Anonymous voting

What will be the declaration of the variable ptr as the pointer to array of 6 floats?
Anonymous voting

A structure pointer points to __________
Anonymous voting

Among the given pointers which of the following cannot be incremented?
Anonymous voting

How many values can be returned from a function simultaneously using pointers?
Anonymous voting

Among the given pointer which of the following cannot be incremented?
Anonymous voting

Which among the following is referred as an array of pointers?
Anonymous voting

Which among the given operators is referred to as ‘address of’ operator?
Anonymous voting

Pointer variable is used to hold the _________ of the variable.
Anonymous voting

Suppose list1 is [1, 5, 9], what is sum(list1)?
Anonymous voting

Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)?
Anonymous voting

Suppose list1 is [2445,133,12454,123], what is max(list1)?
Anonymous voting

Suppose listExample is [‘h’,’e’,’l’,’l’,’o’], what is len(listExample)?
Anonymous voting

What is the output when we execute list(“hello”)?
Anonymous voting

Which of the following commands will create a list?
Anonymous voting

What will be the output of the following Python code snippet? print('+99'.zfill(5))
Anonymous voting

xplanation: The function translate expects a dictionary of integers. Use maketrans() instead of doing the above. 9. What will be the output of the following Python code snippet? print('ab'.zfill(5))
Anonymous voting

What will be the output of the following Python code snippet? print('abcd'.translate({'a': '1', 'b': '2', 'c': '3', 'd': '4'}))
Anonymous voting