Trending CGI Perl Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
Sameer Ahmed Z's image
Question added by Sameer Ahmed Z Project Assitant Indian Institute of Science
7 years ago
Answers:
2
Followers:
Views:
134
Vote Count:
0
Answer should contain a minimum of 25 characters.
Sameer Ahmed Z's image
Question added by Sameer Ahmed Z Project Assitant Indian Institute of Science
7 years ago
Answers:
3
Followers:
Views:
148
Vote Count:
0
Answer should contain a minimum of 25 characters.
Sameer Ahmed Z's image
Question added by Sameer Ahmed Z Project Assitant Indian Institute of Science
7 years ago
Answers:
3
Followers:
Views:
165
Vote Count:
0
Answer should contain a minimum of 25 characters.
Mohammad kasid's image  
Answer added by  Mohammad kasid, ICT Engineer (Sr. Database Administrator), Ericsson Global India Ltd.
5 years ago

Boolean context is simply any place where an expression is being evaluated to see whether it's true or false.

Mohammad kasid's image  
Answer added by  Mohammad kasid, ICT Engineer (Sr. Database Administrator), Ericsson Global India Ltd.
5 years ago

Perl treats same variable differently based on Context, i.e., situation where a variable is being used.  Assuming an array @my_array=("MOHD","KASID") ... See More

sreenivasa murthy Raju's image  
Answer added by  sreenivasa murthy Raju, Technical Lead, Saudi Telecom Company
6 years ago

Perl has three basic Variables types such as 1.Scalars 2.Arrays 3.Hashes Scalars are single values: numbers, strings, and so on

sreenivasa murthy Raju's image  
Answer added by  sreenivasa murthy Raju, Technical Lead, Saudi Telecom Company
6 years ago

Perl does not have specific boolean type, but every scalar value when it checked using if condition will be either true or false. for example: if($variable eq "Hello ... See More

Tunji Durodola's image  
Answer added by  Tunji Durodola, General Manager, Card Management Services, National Identity Management Commission
6 years ago

Yes. But PERL is a plain text language, but does support C-like languages. Many components of PERL itself have C internals, especially highly optimised modules and librar ... See More

Rajiv Biswal's image  
Answer added by  Rajiv Biswal
7 years ago

Boolean context holds true and false value. There is three way we can identify the false statement 1.if the value is 0 2.if the value is " " i.e. null 3.if the ... See More