0
0
C Sharp (C#)programming~15 mins

Array indexing and access in C Sharp (C#) - Mini Project: Build & Apply

Choose your learning style9 modes available
Array Indexing and Access in C#
📖 Scenario: You are working on a simple program that stores the names of fruits in an array. You want to access specific fruits by their position in the array.
🎯 Goal: Build a C# program that creates an array of fruits, sets an index variable, accesses the fruit at that index, and prints it.
📋 What You'll Learn
Create an array called fruits with these exact values: "Apple", "Banana", "Cherry", "Date", "Elderberry"
Create an integer variable called index and set it to 2
Access the fruit at position index in the fruits array and store it in a variable called selectedFruit
Print the value of selectedFruit exactly
💡 Why This Matters
🌍 Real World
Arrays are used to store lists of items like names, prices, or dates. Accessing items by index helps you get or change specific data quickly.
💼 Career
Knowing how to work with arrays and access their elements is a basic skill for many programming jobs, including software development and data processing.
Progress0 / 4 steps
1
Create the fruits array
Create a string array called fruits with these exact values: "Apple", "Banana", "Cherry", "Date", "Elderberry"
C Sharp (C#)
Need a hint?

Use string[] fruits = { ... }; to create the array with the exact fruit names.

2
Set the index variable
Create an integer variable called index and set it to 2
C Sharp (C#)
Need a hint?

Use int index = 2; to create the index variable.

3
Access the fruit at the index
Create a string variable called selectedFruit and set it to the fruit at position index in the fruits array
C Sharp (C#)
Need a hint?

Use string selectedFruit = fruits[index]; to get the fruit at the given index.

4
Print the selected fruit
Write a Console.WriteLine statement to print the value of selectedFruit
C Sharp (C#)
Need a hint?

Use Console.WriteLine(selectedFruit); to print the fruit.