the answer is E. ............
A <span>stagflation is my answer.</span>
Amost all professions include theuse of computers. Knowing a lot about them and the way they work could help you use them when needed in a work environment. It would also make an employer more likely to hire you.
Answer:
Command: Systemoutprintln (b)
Output: 7
Explanation:
To solve this problem, we must take into account the precedence of operation.
The division takes precedence before the addition, so we must divide before we add for b.
So
int b = 4 + 6/2 = 4 + 3 = 7.
So
Command: Systemoutprintln (b)
Output: 7