Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between $array[1] and @array[1]?



What is the difference between $array[1] and @array[1]?..

Answer / kiruthikau

$array[1] represents a scalar value.
@array[1] represents array slicing.

@array[1] returns a list with one scalar value.

We should use $ when we want a scalar value.
If we want a list we need to use @.

If we use 'use warnings' then @array[1] will give the warnings
like ,Scalar value @array[1] better written as $array[1].

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More CGI Perl Interview Questions

What does 'do' statement do in perl?

0 Answers  


“Perl regular expressions match the longest string possible”. What is the name of this match?

0 Answers  


Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?

0 Answers  


What is the different between array and hash in perl programming?

0 Answers  


How do I replace every TAB character in a file with a comma?

0 Answers  


what is the procedure to define a user define module in your perl application?

2 Answers   IBM,


Explain what is STDIN, STDOUT and STDERR?

0 Answers  


how to connect cisco switch uisng perl script

0 Answers   ABC,


What are the various advantages and disadvantages of perl?

0 Answers  


How to do comment in perl?

0 Answers  


What are the advantages and disadvantages of perl language?

0 Answers  


How will you open a file in a write-only mode in perl?

0 Answers  


Categories