java operator in hindi


operators

  1. जावा में ऑपरेटर एक महत्वपूर्ण operation perform करता है जैसे की  +, -, *,  %  इत्यादी | 
  2.  ऑपरेटर ये  unary और binary दो प्रकार के होते हैं ऑपरेटर के साथ उपयोग होने  वाले वेरिएबल  को operand कहते हैं।
  3.  unary operator एक operand के साथ apply होते हैं और binary operator  2  operand पर apply होते  हैं।
  4. operand का उपयोग आप वेरिएबल  पर operation perform करने के लिए करते हैं।

जावा में ऑपरेटर के प्रकार।

  1. unary operators,
  2. Arithmetic operators
  3. Shift operators    
  4. Relational operators
  5. Bitwise operators
  6. Logical operators
  7. Ternary or conditional  operators
  8. Assignment operators   
  9. Instance operator

unary operators

++ (Increment) 1 से value को increase करता है। a++
— (Decrement) 1 से value को Decrements करता है। b–

Arithmetic Operators

Operator Description Example
+ (addition) ये दो operands को add करता है। a+b
– (substraction) ये right operands से left operand को निकाल देता है। a-b
* (multiplication) ये दो operands को multiply करता है। a*b
/ (Division) ये right operands द्वारा left operand को divide करता है। a/b
% (Modulus) ये right operands द्वारा left operand को divide करता है| a%b
++ (Increment) 1 से value को increase करता है। a++
— (Decrement) 1 से value को Decrements करता है। b–



for  Example:-

class Demo
{
public static void main(String[] args)
{
int x =20, y = 5, z; c = a + b; 
system.out.println(“Addition of  x and y” + z); 
z = x – y;
system.out.println(“substraction of  x and y” + z); 
z = x * y; 
system.out.println(“Multiplication of  x and y” + z);
 z = x  / y;
 system.out.println(“Division of  x and y” + z);
z = x  %  y;
system.out.println(“Reminder” of  x and y” + z);
}
}  

 Shift Operators 

(<<)Left shift less than operator a<<
(>>) Right shift greater than operators b–

 Relational operators

Operator Description Example
< (Less than) एक operandकी value दुसरे operand से कम हो तो ये true return करता है | a
>(Greater than) एक operand की value दुसरे operand से ज्यादा हो तो ये true return करता है| a>b
<= (Less than or equal to) जब एक operand की value दुसरे operand से कम हो या बराबर हो तो ये true return करता है| (A <= B)
>= (Greater than or equal to) जब एक operand की value दुसरे operand से ज्यादा हो या बराबर हो तो ये true return करता है| (A >= B)
= = (equal to) दो operand जब बराबर(equal)होते है तब ये true return करता है| (A == B)
!= (not equal to) दो operand जब एक से अलग होते है तब ये true return करता है| (A != B)



One thought on “java operator in hindi

Leave a Reply

Your email address will not be published. Required fields are marked *