0% found this document useful (0 votes)
24 views

Programming Batch

This document discusses the different types of operators used in programming, including arithmetic operators for math functions, unary operators for incrementing values, relational operators for comparisons, bitwise operators for bit manipulations, shifting operators, ternary operators, logical operators, and assignment operators. It provides a high-level overview of 8 categories of common operators that are used in programming.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

Programming Batch

This document discusses the different types of operators used in programming, including arithmetic operators for math functions, unary operators for incrementing values, relational operators for comparisons, bitwise operators for bit manipulations, shifting operators, ternary operators, logical operators, and assignment operators. It provides a high-level overview of 8 categories of common operators that are used in programming.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Programming batch

1. OPERATORS
Types of Operators

i. Arithmetic Operators ( + , - , * , / , % )
ii. Unary Operators ( pre ++ i and post i ++ increment )
iii. Relational Operators ( == , != , < , > , <= , >= )
iv. Bitwise Operator ( & , | , ^ , ~ )

v. Shifting Operator( )
vi. Ternary Operator
vii. Logical Operator
viii. Assignment Operator

You might also like