kiruthika


{ City }
< Country > india
* Profession *
User No # 45752
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 0
Questions / { kiruthika }
Questions Answers Category Views Company eMail




Answers / { kiruthika }

Question { ABC, 5026 }

How can I increase the allowable number of simultaneously
open files?


Answer

You can achieve this using ulimit.

Is This Answer Correct ?    4 Yes 0 No

Question { 3588 }

How to make the following assignment, as arrayreference
assignment ?

my $arr_ref='[1,2,3,4,4,'elem']';


Answer

my $ref=[1,2,3,4];
print ref $ref;

ref will return the type of reference.
In this case ref will return as 'ARRAY'.

Is This Answer Correct ?    0 Yes 0 No