EBK BIG JAVA: EARLY OBJECTS, INTERACTIV
EBK BIG JAVA: EARLY OBJECTS, INTERACTIV
6th Edition
ISBN: 8220102010314
Author: Horstmann
Publisher: YUZU
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 4, Problem 8RE

a.

Program Plan Intro

Program:

//Import necessary packages

import java.io.*;

import java.math.*;

//Define the class "Sample"

public class Sample

{

    //Define the main method

    public static void main(String[] args)

    {

         /*Declare required variables and

         assign the values to it*/

         double x = 2.5;

          double y = -1.5;

          int m = 18;

          int n = 4;

          //Print the statement

        System.out.println(x + n * y - (x + n) * y);

        System.out.println(m / n + m % n);

        System.out.println(5 * x - n / 5);

System.out.println(1 - (1 - (1 - (1 - (1 - n)))));

        System.out.println(Math.sqrt(Math.sqrt(n)));

    }

}

Output:

6.25

6

12.5

-3

1.4142135623730951

b.

Explanation of Solution

 Value of the second expression:

  • In the above given program, four variables such as “x”, “y”, “m” and “n” are declared and are assigned with values “2.5”, “-1.5”, “18”, and “4” respectively.
  • The given expression is evaluated by considering the BODMAS (Bracket, Of, Division, Multiplication, Addition, and Subtraction) rule.
    • The BODMAS rule describes the order of operations to solve an expression.
    • If an expression consists of brackets, then first solve the braces or simplify the braces followed by of (powers, roots, and so on), division, multiplication, addition and subtraction from left to right.
  • The modulo operation is used to find the remainder after division of one number by another...

c.

Explanation of Solution

 Value of the third expression:

  • In the above given program, four variables such as “x”, “y”, “m” and “n” are declared and are assigned with values “2.5”, “-1.5”, “18”, and “4” respectively.
  • The given expression is evaluated by considering the BODMAS (Bracket, Of, Division, Multiplication, Addition, and Subtraction) rule.
    • The BODMAS rule describes the order of operations to solve an expression.
    • If an expression consists of brackets, then first solve the braces or simplify the braces followed by of (powers, roots, and so on), division, multiplication, addition and subtraction from left to right...

d.

Explanation of Solution

 Value of the fourth expression:

  • In the above given program, four variables such as “x”, “y”, “m” and “n” are declared and are assigned with values “2.5”, “-1.5”, “18”, and “4” respectively.
  • The given expression is evaluated by considering the BODMAS (Bracket, Of, Division, Multiplication, Addition, and Subtraction) rule.
    • The BODMAS rule describes the order of operations to solve an expression.
    • If an expression consists of brackets, then first solve the braces or simplify the braces followed by of (powers, roots, and so on), division, multiplication, addition and subtraction from left to right.
  • Thus, the given expression “1-(1-(1-(1-(1-n))))” is evaluated as follows:

        1-(1-(1-(1-(1-n))))1-(1-(1-

e.

Explanation of Solution

 Value of the fifth expression:

  • In the above given program, four variables such as “x”, “y”, “m” and “n” are declared and are assigned with values “2.5”, “-1.5”, “18”, and “4” respectively.
  • The given expression is evaluated by considering the BODMAS (Bracket, Of, Division, Multiplication, Addition, and Subtraction) rule.
    • The BODMAS rule describes the order of operations to solve an expression.
    • If an expression consists of brackets, then first solve the braces or simplify the braces followed by of (powers, roots, and so on), division, multiplication, addition and subtraction from left to right.
  • In Java programming, the “Math.sqrt” function is used to find the square root of the number that is passed as the parameter to the function.
  • Thus, the given expression “Math.sqrt(Math.sqrt(n))” is evaluated as follows:

        Math.sqrt(Math

Blurred answer
Students have asked these similar questions
MGMT SS STATS, an umbrella body that facilitates and serves various Social SecurityOrganizations/Departments within the Caribbean territories, stoodpoised to meet the needs of its stakeholders by launching an onlinedatabase at www.SSDCI.gov. The database will provide membersand the public access to the complete set of services that can (also)be initiated face-to-face, and it will provide managed, private, secure access to a repository ofpublic and/or personal information. Ideally, the database will have basic details of pensionplans recorded in the registry, member plan statistics, and cash inflows and outflows frompension funds.For example, insured persons accumulate contributions. Records for these persons will includeinformation on the insured persons able to acquire various benefits once work is interrupteddue to sickness, death, retirement, and maternity or employment injury. They will also includeinformation on pensions such as invalidity, disability, and survivors that stem from…
(c) Consider the following set of processes: Process ID Arrival Time Priority Burst Time A 2 3 100 B 6 C 10 1 (highest) 2 40 80 D 16 4 (lowest) 20
(3c) In the following resource allocation graph, is the state a deadlocked one? If so which ones are deadlocked? (3 points) Resource allocation graph. R₁ = Resource, P = process. R1 R3 R3 7

Chapter 4 Solutions

EBK BIG JAVA: EARLY OBJECTS, INTERACTIV

Ch. 4.3 - Write statements to prompt for and read the user’s...Ch. 4.3 - Prob. 12SCCh. 4.3 - Prob. 13SCCh. 4.3 - Prob. 14SCCh. 4.3 - Prob. 15SCCh. 4.3 - Prob. 16SCCh. 4.4 - Translate the pseudocode for computing the number...Ch. 4.4 - Prob. 18SCCh. 4.4 - Prob. 19SCCh. 4.4 - Prob. 20SCCh. 4.4 - Prob. 21SCCh. 4.5 - Prob. 22SCCh. 4.5 - Prob. 23SCCh. 4.5 - Prob. 24SCCh. 4.5 - Prob. 25SCCh. 4.5 - Prob. 26SCCh. 4 - Prob. 1RECh. 4 - What is the value of mystery after this sequence...Ch. 4 - What is wrong with the following sequence of...Ch. 4 - Write the following Java expressions in...Ch. 4 - Write the following mathematical expressions in...Ch. 4 - Assuming that a and b are variables of type int,...Ch. 4 - Suppose direction is an integer angle between 0...Ch. 4 - What are the values of the following expressions?...Ch. 4 - What are the values of the following expressions,...Ch. 4 - What are the values of the following expressions?...Ch. 4 - Find at least five compile-time errors in the...Ch. 4 - Find three run-time errors in the following...Ch. 4 - Consider the following code: CashRegister register...Ch. 4 - Prob. 14RECh. 4 - Explain what each of the following program...Ch. 4 - Write pseudocode for a program that reads a name...Ch. 4 - Write pseudocode for a program that computes the...Ch. 4 - Modify the pseudocode for the program in How To...Ch. 4 - In Worked Example 4.1, it is easy enough to...Ch. 4 - Suppose an ancient civilization had constructed...Ch. 4 - Prob. 22RECh. 4 - You are cutting off a piece of pie like this,...Ch. 4 - The following pseudocode describes how to obtain...Ch. 4 - The following pseudocode describes how to swap two...Ch. 4 - Prob. 26RECh. 4 - For each of the following computations in Java,...Ch. 4 - Write a program that prints the values 3 * 1000 *...Ch. 4 - Prob. 1PECh. 4 - Prob. 2PECh. 4 - Prob. 3PECh. 4 - Write a program that prompts the user for two...Ch. 4 - Prob. 5PECh. 4 - Prob. 6PECh. 4 - Prob. 7PECh. 4 - Prob. 8PECh. 4 - Improve the program discussed in How To 4.1 to...Ch. 4 - Prob. 10PECh. 4 - Change the Menu class in Worked Example 3.1 so...Ch. 4 - Prob. 12PECh. 4 - Prob. 13PECh. 4 - Prob. 14PECh. 4 - Prob. 15PECh. 4 - Prob. 16PECh. 4 - Prob. 17PECh. 4 - Prob. 18PECh. 4 - Write a program that transforms numbers 1, 2, 3,,...Ch. 4 - Prob. 20PECh. 4 - Prob. 21PECh. 4 - Prob. 22PECh. 4 - Prob. 23PECh. 4 - Implement a class Balloon that models a spherical...Ch. 4 - Prob. 1PPCh. 4 - Easter Sunday is the first Sunday after the first...Ch. 4 - In this project, you will perform calculations...Ch. 4 - Prob. 4PPCh. 4 - The CashRegister class has an unfortunate...Ch. 4 - Prob. 6PPCh. 4 - Prob. 7PPCh. 4 - Giving change. Implement a program that directs a...Ch. 4 - Prob. 10PPCh. 4 - Prob. 11PPCh. 4 - Prob. 12PPCh. 4 - The dew point temperature Td can be calculated...Ch. 4 - The pipe clip temperature sensors shown here are...Ch. 4 - Prob. 15PPCh. 4 - Consider the following tuning circuit connected to...Ch. 4 - Prob. 17PP
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
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Control Structure in Data Structure - Data Structures - Computer Science Class 12; Author: Ekeeda;https://www.youtube.com/watch?v=9FTw2pXLhv4;License: Standard YouTube License, CC-BY