1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
denis-greek [22]
3 years ago
6

that average july high temperature is 85 degrees fahrenheit in new york, 88 degrees fahrenheit in denver, and 106 degrees fahren

heit in phoenix. write a program that calculates and reports what the new average july high temperature would be for each of these citites if temperature rise by 2 percent.
Computers and Technology
1 answer:
goblinko [34]3 years ago
8 0

Answer:

public class num8 {

   public static void main(String[] args) {

       System.out.println("Average Temperature in New York is 85 degrees fahrenheit");

       System.out.println("Average Temperature in Denver is 88 degrees fahrenheit");

       System.out.println("Average Temperature in Phoenix is 106 degrees fahrenheit");

   // Calculating the new average Temperatures

       System.out.println("The New Average Temperature in New York " +

               "is "+ ((0.02*85)+85 )+ " degrees fahrenheit");

       System.out.println("The New Average Temperature in Denver " +

               "is " +((0.02*88)+88 )+ " degrees fahrenheit");

       System.out.println("The New  Average Temperature in Phoenix " +

               "is "+((0.02*106)+106 )+ " degrees fahrenheit");

   }

}

Explanation:

  1. Using Java first display the previous average temperatures for the three cities as given in the question
  2. Then calculates the new average temperature by multiplying by 0.02, because of a 2 percent increase in the average temperature
  3. Display the new temperature using the System.out,println

You might be interested in
Which of these best represents a call to action?
Nuetrik [128]
Answer: B
A call to action is an invitation for a user to take some desired action, used all the time in the marketing world.
4 0
3 years ago
Read 2 more answers
What are factors that limit a technological design
Alisiya [41]
Natural laws and properties of material
8 0
3 years ago
Given two Generic variables, A with value "123" and B with value 456, what would the Write Line output of A + B be? 123456 579 A
Andreyy89

Answer:

123456

Explanation:

When an integer value is added to a string value the resulting value is a string.+ operator is used for both numeric additions and string addition also knows as string concatenation. In addition when one operand of the equation is a string the program interprets all values as string. As system is interpreting all values as a string it will apply a string addition method instead of mathematical addition.So here A is a string and B is an integer value. when we add A and B system will treat B aslo as a string, upon addition the result will be String concatenating both A and B to a single string.Hence the result of A+B will be

A+B = 123456

As WriteLine method takes string as Input it will just write the resulting string to file

6 0
3 years ago
An information- and communication-based electronic exchange environment mostly occupied by sophisticated computer and telecommun
OleMash [197]

Answer: Market-space

Explanation:

Market-space  is defined as marketing concept that states electronic information exchange mechanism. Physical constraints do not interrupt selling and buying mechanism in this environment.This space is constructed through online facility of technology.

Market space provides the service to customer as well as seller to display their requirements and accordingly interact for exchanging the product with payment. Both the parties agree on time location and transaction method for buying and selling.

3 0
3 years ago
For questions 3-6, consider the following two-dimensional array:
elena-s [515]

Answer:

5= Fabric

6=bandana

Explanation:

8 0
3 years ago
Read 2 more answers
Other questions:
  • You work in a customer call center. Martin is on the phone asking about the difference between solid-state drives (SSDs), hybrid
    6·1 answer
  • What is the Documenter?
    10·1 answer
  • True/False
    13·1 answer
  • Sales representatives want to capture custom feedback record details related to each Account. The sales reps want to accomplish
    12·1 answer
  • How do I keep my computer and data safe and secure while using the Internet?
    14·2 answers
  • I’ll mark brainliest, thanks
    10·2 answers
  • Which devices are used in networking
    15·1 answer
  • In Outlook 2016, the Tell Me function can be accessed by
    15·2 answers
  • Consider the following statement: String myMiddleInitial = “h”;
    15·1 answer
  • Write l for law of enrtia,ll for law of Acceleration and lll for law of enteraction.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!