Question: Test 5 - Acronym Given an array of string, words, create a string that is the acronym (first letter of each word). Return the string

Test 5 - Acronym

Given an array of string, words, create a string that is the

acronym (first letter of each word).

Return the string public static string Test5(string [] words)

{ string acronym = ""; foreach(string word in words)

{ acronym += words[0];

} return acronym;

}

the answer that was posted does not return anything

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!