1.

What Is Hash?

Answer»

HASH is an associative array where data is stored in
"key"->"value" pairs.
EG : fruits is a hash having their names and PRICE
%fruits = ("Apple", "60", "Banana", "20", "Peers", "40");

Hash is an associative array where data is stored in
"key"->"value" pairs.
Eg : fruits is a hash having their names and price
%fruits = ("Apple", "60", "Banana", "20", "Peers", "40");



Discussion

No Comment Found