Bird
0
0

Which List method in C# is used to add a new item to the end of the list?

easy🧠 Conceptual Q11 of 15
C Sharp (C#) - Collections
Which List method in C# is used to add a new item to the end of the list?
ASort
BRemove
CFind
DAdd
Step-by-Step Solution
Solution:
  1. Step 1: Understand the purpose of Add

    The Add method appends a new element to the end of a list.
  2. Step 2: Compare with other methods

    Remove deletes items, Find searches, and Sort arranges items, so they don't add new items.
  3. Final Answer:

    Add -> Option D
  4. Quick Check:

    Add method adds items [OK]
Quick Trick: Add puts new items at the list's end [OK]
Common Mistakes:
MISTAKES
  • Confusing Remove with Add
  • Thinking Find adds items
  • Assuming Sort adds items

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More C Sharp (C#) Quizzes