Multiple choice technology programming languages

Suppose the variable $var has the value abc123abc . What is the value of $var after the following substitution?

  1. $var=~ s/(\d+)/ $1*2 /e ;
  2. “abc”

  3. It will produce error

  4. “ABC123ABC”

Reveal answer Fill a bubble to check yourself
D Correct answer