Font size
Worksheetsoperators in java
Total questions: 13
Worksheet time: 8mins
Which are the types of operators seen? Select as many you think
bitwise operator
subtraction operator
equality operator
arithmetic operator
the values on which operations are performed are called operator. true or false?
true
false
what is modulo operation used for ?
performs division
performs division and gives no remainder
performs division and gives remainder
does not perform division
arithmetic operators return a value. True or false?
true
false
select as many unary arithmetic operators as you see
==
--
||
!
prefix= use and change
true
false
a=11,b=22
solve= a +b + a++ + b++ + ++a + ++b
103
164
87
94
binary arithmetic operators require two values
true
false
which description of these relational operators are incorrect?
==(equal to)
<(less than)
>=(greater than)
!=(less than equal to)
conditional operators does not return a value
true
false
which data types work on bitwise operators?
byte
double
char
int
Concatenation(+)operator is used for joining two strings
true
false
which type of operator it is? i + =5
addition assignment operator
conditional operator
arithmetic operator
equality operator
