In this program, we will use the assoc() method to get the array from an array of array-based on the specified first element.
Program/Source Code:
The source code to demonstrate the assoc() method is given below. The given program is compiled and executed successfully.
# Ruby program to demonstrate the # assoc() method arr1 = ["GODs","RAM","KRISHNA","SHIV"]; arr2 = ["COMPANY","HCL","TCS","WIPRO"]; arr3 = ["CITY", "DELHI", "MUMBAI", "AGRA"]; ArrayOfArray = [arr1,arr3,arr2]; X = ArrayOfArray.assoc("CITY") Y = ArrayOfArray.assoc("GODs") Z = ArrayOfArray.assoc("COMPANY") print "#{X}\n"; print "#{Y}\n"; print "#{Z}\n";
Output:
["CITY", "DELHI", "MUMBAI", "AGRA"] ["GODs", "RAM", "KRISHNA", "SHIV"] ["COMPANY", "HCL", "TCS", "WIPRO"]
Explanation:
In the above program, we created 3 arrays arr1, arr2, arr3. Then we created an array of arrays. After that, we used the assoc() method to get the array based on the specified 1st element and printed the resulting arrays.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to demonstrate the assoc() method is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created 3 arrays arr1, arr2, arr3. Then we created an array of arrays. After that, we used the assoc() method to get the array based on the specified 1st element and printed the resulting arrays.
need an explanation for this answer? contact us directly to get an explanation for this answer