Computer Science
Fill in the blanks:
If int m=8; m*=8; then the output of m will be _________.
Java Operators
9 Likes
Answer
64
Answered By
2 Likes
Related Questions
Fill in the blanks:
If a= -1 , then the output of a++ will be _________.
Fill in the blanks:
If int a=43;int b=5;int c=0; and c = a%b; then the value of c will be _________.
Fill in the blanks:
If x=5;y=10;z=11; and c = x++ * 5 + --y * ++z; then the value of c will be _________.
Fill in the blanks:
If m=5;p=0;and p = ++m + --m; the output will be _________.