0 votes
in Perl by
How many types of operators are used in the Perl?

1 Answer

0 votes
by

Arithmetic operators

+, - ,*

Assignment operators:

+= , -+, *=

Increment/ decrement operators:

++, --

String concatenation:

'.' operator

comparison operators:

==, !=, >, < , >=

Logical operators:

AD

&&, ||, !

...