Google News
logo
Perl - Quiz(MCQ)
Which of the following is a valid assignment operator in Perl?
A)
=
B)
+=
C)
==
D)
%=

Correct Answer :   ==


Explanation :

= is simple assignment operator
+= is addition assignment operator
%= is remainder assignment operator

Advertisement