Question: please help me answer this long question! will leave a like! What is the difference between a=7 and a==7 ? They are both









What is the difference between " a=7" and " a==7 "? They are both the same a=7 assigns a value, a=7 checks to see if two things are equal a=7 checks to see if two values are equal, a==7 sets a value a=7 is for intrinsic data types, a=7 is for relational data types int num =9; System.out.print("A"); if (num !=8){ System.out.print("B"); \} else \{ System.out.print(" C "); \} System.out.print("D"); What does the code above print? ABCD ABD ACD AD Which one of these is an assignment operator? int num =9 System.out.print("A"); if (num 8 ) System.out.print("B"); \} else System.out.print(" C "); \} System.out.print("D"); What will the code above print? ABCD ABD ACD AD In the code above, what does the condition evaluate to? true false: hi bye int a=4; if (a=8)\{ System.out.print("B"); \} else \{ System.out.print("C"); \} System.out.print("D"); What does the code above print? ABCD ABD ACD AD if ( num =97)//#3 if ( num 1)//#1 if ( num /2>2)//#2 if ( num 2!=6+4)//#3 if (10% num
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
