Java Programming
Java Programming
9th Edition
ISBN: 9780357238530
Author: Joyce Farrell
Publisher: Cengage Limited
bartleby

Videos

Question
Book Icon
Chapter 2, Problem 1PE

a. Evaluate the expression, 4 + 6 * 2

Program Plan Intro

Operator Precedence:

An expression is a statement, which will hold a value when it is evaluated. A mathematical expression will hold multiple operators and grouping symbols; an expression will be evaluated based on the precedence of the operator. The rules of the operator precedence are given below.

  • Unary negation (-) and brackets () will have the highest priority.
  • Multiplication (*), division (/) and modulus (%) will have the next highest priority.
  • Addition (+), subtraction (-) will have the lowest priority.

b. Evaluate the expression, 10 / 5 + 8

Explanation of Solution

In the above expression, the division “/” operation will be evaluated first and next “+” addition operation will be executed as shown below:

St...

c. Evaluate the expression, 12 / 4 + 16 / 2

Explanation of Solution

In the above expression, the division “/” operation will be evaluated first and next “+” addition operation will be executed as shown below:

Step 1:

 �...

d. Evaluate the expression, 17 / 2

Explanation of Solution

In the above expression, the division “/” operation will be evaluated first and the quotient is returned as the result as shown b...

e. Evaluate the expression, 22 / 5

Explanation of Solution

In the above expression, the division “/” operation will be evaluated first and the quotient is returned as the result as shown b...

f. Evaluate the expression, 39 / 10

Explanation of Solution

In the above expression, the division “/” operation will be evaluated first and the quotient is returned as the result as shown be...

g. Evaluate the expression, 19 % (2 + 3)

Explanation of Solution

In the above expression, the values inside the brackets are evaluated first and then modulus (%) operator is evaluated and the remainder is returned as a result as shown below:

...

h. Evaluate the expression, 3 + 4 * 20 / 3

Explanation of Solution

In the above expression, the multiplication “*” operation will be evaluated first, next division “/” operation is evaluated and at last, addition “+”operation will be evaluated as shown below:

...

i. Evaluate the expression, 36 % (6 + 2)

Explanation of Solution

In the above expression, the values inside the brackets are evaluated first and then modulus (%) operator is evaluated and the remainder is returned as a result as shown below:

...

j. Evaluate the expression, 8 % 2 * 0

Explanation of Solution

In the above expression, the values inside the brackets are evaluated first and then modulus (%) operator is evaluated and the remainder is returned as a result as shown below:

...

Blurred answer
Students have asked these similar questions
Change the following code so that there is always at least one way to get from the left corner to the top right, but the labyrinth is still randomized. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. Take care that the player and the dragon cannot start off on walls. Also the dragon starts off from a randomly chosen position   public class Labyrinth {    private final int size;    private final Cell[][] grid;     public Labyrinth(int size) {        this.size = size;        this.grid = new Cell[size][size];        generateLabyrinth();    }     private void generateLabyrinth() {        Random rand = new Random();        for (int i = 0; i < size; i++) {            for (int j = 0; j < size; j++) {                // Randomly create walls and paths                grid[i][j] = new Cell(rand.nextBoolean());            }        }        // Ensure start and end are…
Change the following code so that it checks the following 3 conditions: 1. there is no space between each cells (imgs) 2. even if it is resized, the components wouldn't disappear 3. The GameGUI JPanel takes all the JFrame space, so that there shouldn't be extra space appearing in the frame other than the game.   Main():         Labyrinth labyrinth = new Labyrinth(10);         Player player = new Player(9, 0);        Dragon dragon = new Dragon(9, 9);         JFrame frame = new JFrame("Labyrinth Game");        GameGUI gui = new GameGUI(labyrinth, player, dragon);         frame.add(gui);        frame.setSize(600, 600);        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        frame.setVisible(true);   public class GameGUI extends JPanel {    private final Labyrinth labyrinth;    private final Player player;    private final Dragon dragon; //labyrinth, player, dragon are just public classes     private final ImageIcon playerIcon = new ImageIcon("data/images/player.png");…
Make the following game user friendly with GUI, with some simple graphics. The GUI should be in another seperate class, with some ImageIcon, and Game class should be added into the pane. The following code works as this: The objective of the player is to escape from this labyrinth. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. The player can move only in four directions: left, right, up or down. There are several escape paths in all labyrinths. The player’s character should be able to moved with the well known WASD keyboard buttons. If the dragon gets to a neighboring field of the player, then the player dies. Because it is dark in the labyrinth, the player can see only the neighboring fields at a distance of 3 units.  Cell Class: public class Cell { private boolean isWall; public Cell(boolean isWall) { this.isWall = isWall; } public boolean isWall() { return…
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
  • Text book image
    EBK JAVA PROGRAMMING
    Computer Science
    ISBN:9781337671385
    Author:FARRELL
    Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Files & File Systems: Crash Course Computer Science #20; Author: CrashCourse;https://www.youtube.com/watch?v=KN8YgJnShPM;License: Standard YouTube License, CC-BY
UNIX Programming (Part - 10) The File System (Directories and Files Names); Author: ITUTEES;https://www.youtube.com/watch?v=K35faWBhzrw;License: Standard Youtube License