What is a hash?

Answers were Sorted based on User's Feedback



What is a hash? ..

Answer / bhavani

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");

Is This Answer Correct ?    8 Yes 1 No

What is a hash? ..

Answer / prabhath kota

As friends said above, its otherwise called as associative
array. It has lot of advantages over perl.

Here we can keep the values in a structured way, that
structured way comes from key-value pairs.

Eg: (The syntax given above are also correct, but the below
representation is much better in look and feel)

my %hash_example = ( a => 10,
b => 20,
c => 30 );
keys : a,b,c
values : 10,20,30

Features of Hash :
##################
1) Keys should always be unique where as values may not be
unique

(Right)
my %hash_example = ( a => 10,
b => 10,
c => 10 );

(wrong)
my %hash_example = ( a => 10,
a => 20,
a => 30 );

2) keys (%hash_example) will return an array containing only
keys

my @keys = keys(%hash);

3) similary for values
my @values = keys(%values);

Is This Answer Correct ?    5 Yes 0 No

What is a hash? ..

Answer / raghav

Hash/Associative array is the one in which all
the values are stored in terms of keys and values.

i.e., the values are indexed with the help of keys.
You cannot get back the values in a correct order as it
happens in normal array. because in this values are stored
in random positions. The only way to get in a correct order
is to sort that array.

ex: %hash = {"Name","Raghav","Age","26"};
$hash{'Name'} will give "Raghav"
$hash{'Age'} will give "26"

Is This Answer Correct ?    3 Yes 0 No

What is a hash? ..

Answer / sam

Hash is a specific datatype in PERL and it contains KEYS
and VALUES. Values are referred with the help of keys.

Is This Answer Correct ?    3 Yes 1 No

What is a hash? ..

Answer / savitha sridhar

Hash or "Associative Array" is an unordered list of scalar
data. The data of the hash is depicted as key and a value
pair.

Eg: %h=("kar","blr","ap","hyd","tn","che");

To print the entire hash : print %h; --returns entire hash
(the order may be different)
To print only one value : print $h{"kar"}; -->returns blr

Is This Answer Correct ?    3 Yes 1 No

What is a hash? ..

Answer / shah faisal

Hash is an unordered pair of keys and values where keys
must be unique else the second duplicate keys replace the
value of first key. Hash is denoted by a "%" sign.
e.g.
"key1"->"value1","key2"->"value2",key1"=>"value3" then
final hash will be %hash=("key2"-
>"value2","key1"=>"value3");

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More CGI Perl Interview Questions

What are the logical operators used for small scale operations? Explain them briefly.

0 Answers  


How do you you check the return code of a command in perl?

0 Answers   HCL,


Explain different types of perl operators.

0 Answers  


Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?

0 Answers  


How do I read command-line arguments with Perl?

0 Answers  






What is the purpose of “_file_ literal” and “_line_ literal” in perl?

0 Answers  


How do you debug a Perl scripting ( at the compile time error or run time error) in Unix environment ?

4 Answers  


I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl

4 Answers  


How many data types are there in perl?

0 Answers  


How do I print the entire contents of an array with Perl?

0 Answers  


What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?

0 Answers  


What is the easiest way to download the contents of a URL with Perl?

0 Answers  


Categories