English

Use if else statement for the given snippet: String st = (a > 0) ? (a % 2 == 0) ? "Positive even" : "Positive odd" : "Negative number"; - Computer Applications

Advertisements
Advertisements

Question

Use if else statement for the given snippet:

String st = (a > 0) ? (a % 2 == 0) ? "Positive even" : "Positive odd" : "Negative number"; 
Answer in Brief

Solution

String st; int a; 
if (a > 0) 
{
if (a % 2 == 0) 
st = "Positive Even"; 
else 
st = "Positive Odd"; 
else 
st = "Negative Number"; 
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.08: Conditional Statements in Java - Review Insight [Page 97]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.08 Conditional Statements in Java
Review Insight | Q 4. | Page 97
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×