Question: What will each of these two pieces of Java code print? (Assume they are inside a correctly written and compiled Java class.) Treat each case
- What will each of these two pieces of Java code print? (Assume they are inside a correctly written and compiled Java class.) Treat each case separately of the other. Each part is 10 pts.
- int num = 7;
System.out.print((num % 3 == 0) ? num + is divisible by 3 : num + is not divisible by 3);
- int j=2, k=3;
System.out.print(((j+1) != k) ? A : B );
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
