2.
Which syntax is used to declare a tuple with types specified?
3.
How can you access the second element in a tuple using dot notation?
4.
How can you declare a tuple without specifying the types explicitly?
5.
How do you assign field names to the values in a tuple?
6.
Which of the following is NOT a correct way to access tuple elements?
7.
How do you return a tuple from a method in C#?
8.
What is the benefit of returning a tuple from a method?
9.
How can you pass a tuple as a parameter to a method?
10.
How would you destructure a tuple into separate variables?
11.
What is one advantage of using named fields in tuples?
12.
What happens if you try to access a tuple element using a field name that hasn't been declared?
13.
How can you improve the clarity of your code when using tuples?
14.
What is the syntax to pass a tuple literal to a method?
15.
Which of the following is true about C# tuples?