Computer Science, asked by ajaymadhusingh4, 9 months ago

(c) Logical AND (&&) and Logical OROD
(d) Prefix operator and Postfix operator
(e) System.out.print() and System.out.println​

Answers

Answered by Naimishshah18
0

Explanation:

question kya hai bhai ye batayega toh bata dunga answer

pls mark me as the brainliest

Answered by OoExtrovertoO
3

Answer:

C. The logical AND operator (&&) returns true if both operands are true and returns false otherwise. The operands are implicitly converted to type bool before evaluation, and the result is of type bool . Logical AND has left-to-right associativity.

D. Postfix decrement operator means the expression is evaluated first using the original value of the variable and then the variable is decremented(decreased). Prefix increment operator means the variable is incremented first and then the expression is evaluated using the new value of the variable.

E. out. println() - It is used to print the statement. The system is a class, out is the object of PrintStream class, println() is the method of PrintStream class which displays the result and then throws the cursor to the next line.

hope this answer will help you thank you

Similar questions