npNPTEL The Joy Of Computing Using Python Week 8 Assignment 1 July 2023 | NPTEL
The Joy of Computing using Python Week 8 — Assignment | NPTEL | Answer with Explanation
“Discover the Excitement of Computing with Python | Week Multiple Choice Questions — Get ready to enhance your programming skills and deepen your understanding of the Python language with this week 8 MCQ on ‘The Joy of Computing using Python’. Test your knowledge and boost your confidence as a Python programmer today!”

| Learn Python at “Computer Courses — All in One” For Free
What is the correct initialisation of tuples?
a. Dates = [12,23,3,4]
b. Dates = (12,23,3,4)
c. Dates = {12,23,3,4}
d. Both B and CAnswer
What operations can be done on tuples?
a. Tuples are appendable.
b. We can delete a value from tuples.
c. Both A and B.
d. We can count the number of instances of an element.