Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
✍: Guest
5
length() is a built-in prototyped as sub length($),
and a scalar prototype silently changes aggregates into
radically different forms. The scalar sense of a hash is
false (0) if it's empty, otherwise it's a string representing
the fullness of the buckets, like "18/32" or "39/64".
The length of that string is likely to be 5. Likewise,
`length(@a)' would be 2 if there were 37 elements in @a.
2013-09-13, 2002👍, 0💬
Popular Posts:
How To Concatenate Two Character Strings? - MySQL FAQs - Introduction to SQL Basics If you want conc...
How To Use Subqueries in the FROM clause? - MySQL FAQs - SQL SELECT Statements with JOIN and Subquer...
Can an anonymous class be declared as implementing an interface and extending a class? An anonymous ...
what is a service contract, operation contract and Data Contract? - part 1 In the below sample we ha...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...