This program will calculate the rise in ocean levels over 5, 10, and 50 years, Part of the program has been written for you. The part that has been written will read in a rise in ocean levels (per year) in millimeters. This value is read into a variable of type double named risingLevel. You will be completing the program as follows Output the value in risingLevel. This should be the first line of output. The output should be as follows (assume risingLevel has a value of 2.1) Level: 2.1 The number of millimeters higher than the current level that the ocean's level will be in 5 years (assuming the ocean is rising at the rate of risingLevel per year). This is your second line of output. The output will be as follows Years: 5, Rise: 10.5 The number of millimeters higher than the current level that the ocean's level will be in 10 years (assuming the ocean is rising at the rate of risingLevel per year). This is your third line of output. The output will be as follows (for a risingLevel" of 2.1 Years: 10, Rise: 21 The number of millimeters higher than the current level that the ocean's level will be in 50 years (assuming the ocean is rising at the rate of risingLevel per year). This is your final line of output.The output will be as follows (for a risingLevel" of 2.1) Years: 50, Rise: 105 For each of the above you need to output the number of years and the total rise in ocean levels for those years. This is all based on the value in risingLevel For example: ArisingLevel of 2.1 for 5 years would have the following output: Level: 2.1 Years: 5, Rise: 10.5 Years: Years: 50, Rise: 105 10, Rise: 21 Your output must have the same syntax and spacing as above

Answers

Answer 1

Answer:

Here is the C++ program:

#include <iostream>  //to use input output functions

using namespace std;  //to identify objects cin cout

int main(){  //start of main method

     

   double risingLevel;  //declares a double type variable to hold rising level

   cin>>risingLevel;  //reads the value of risingLevel from user

   

   cout<<"Level: "<<risingLevel<<endl;  //displays the rising level

   cout << "Years: 5, Rise: " << risingLevel * 5<<endl;  //displays the rise in ocean level over 5 years

   cout << "Years: 10, Rise: " << risingLevel * 10<<endl;  //displays the rise in ocean level over 10 years

   cout << "Years: 50, Rise: " << risingLevel * 50<<endl;  //displays the rise in ocean level over 50 years

}

Explanation:

The program works as follows:

Lets say the user enters rising level 2.1 then,

risingLevel = 2.1

Now the first print (cout) statement :

cout<<"Level: "<<risingLevel<<endl;  prints the value of risingLevel on output screen. So this statement displays:

Level: 2.1          

Next, the program control moves to the statement:

   cout << "Years: 5, Rise: " << risingLevel * 5<<endl;

which computes the rise in ocean levels over 5 years by formula:

risingLevel * 5 = 2.1 * 5 = 10.5

It then displays the computed value on output screen. So this statement displays:

Years: 5, Rise: 10.5                                                                                                                          Next, the program control moves to the statement:

   cout << "Years: 10, Rise: " << risingLevel * 10<<endl;

which computes the rise in ocean levels over 10 years by formula:

risingLevel * 10 = 2.1 * 10 = 21

It then displays the computed value on output screen. So this statement displays:

Years: 10, Rise: 21                                                                                      

Next, the program control moves to the statement:

   cout << "Years: 50, Rise: " << risingLevel * 50<<endl;

which computes the rise in ocean levels over 50 years by formula:

risingLevel * 50 = 2.1 * 50 = 105

It then displays the computed value on output screen. So this statement displays:

Years: 50, Rise: 105                                                                                                                          Hence the output of the entire program is:

Level: 2.1                                                                                                                     Years: 5, Rise: 10.5                                                                                                           Years: 10, Rise: 21                                                                                                            Years: 50, Rise: 105

The screenshot of the program and its output is attached.

This Program Will Calculate The Rise In Ocean Levels Over 5, 10, And 50 Years, Part Of The Program Has

Related Questions

Gloria is adding footers to a PowerPoint template for students to use in a literature class. Each student must choose an author and make a presentation about their life and work. She wants the first slide in each presentation to show only the author’s name and photo. On subsequent slides, she wants to include a footer with a date and time that changes depending on the actual date of each presentation.

After selecting the Slide Master view, how should Gloria proceed?

She should select
.

Next, she should select
.

Then, she should select
.

Finally, she should make changes in the
.

Answers

Answer:

✔ the Slide Master thumbnail

✔ the Insert tab

✔ Header & Footer

✔ Slide tab in the dialog box

Explanation:

On edg

The Slide Master thumbnail, the Insert tab and Header & Footer and  Slide tab in the dialog box.

What is Dialog box?

A dialog box, often known as a dialog or a conversation box, is a typical form of window in an operating system's graphical user interface (GUI).

In addition to displaying more details, the dialog box also prompts the user for input.

For instance, you interact with the "File Open" dialog box when you want to open a file while using a software. The Properties dialog box appears in Microsoft Windows when you right-click a file and select Properties.

A dialog box, often known as a dialog or a conversation box, is a typical form of window in an operating system's graphical user interface (GUI). In addition to displaying more details, the dialog box also prompts the user for input.

Therefore, The Slide Master thumbnail, the Insert tab and Header & Footer and  Slide tab in the dialog box.

To learn more about Software, refer to the link:

https://brainly.com/question/985406

#SPJ3

A user is asked to type a caption for a photo in a web form's text field. If the caption didn't end with a punctuation mark (. ! ?), a period should automatically be added. A common error is to end with a comma, which should be replaced by a period. Another common error is to end with two periods, which should be changed to one period (however, ending with three periods (or more) indicates elipses so should be kept as is). The corrected caption is output. If the input is "I like pie", the output is "I like pie." If the input is "I like pie!", the output remains "I like pie!" If the input is "Coming soon…", the output remains "Coming soon…"

Answers

Answer:

Here is the c++ program:

#include <iostream>  //to use input output functions

using namespace std;  //to identify objects cin cout

int main() {  //start of main function

string caption;  //stores the caption

int last_index;  //stores the index position of the last character of caption

char last_character;  //stores the last character of the caption

cout<<"Please type a caption: ";  //prompts user to enter a caption

getline(cin, caption);  //reads the complete line of caption from user

last_index = caption.size() - 1;  //sets the last_index to the last character of caption

last_character = caption.at(last_index);  //sets the last_character to the last character positioned by last_index

if ((last_character == '!') || (last_character == '?')) {}  /* checks if the last character of the caption is either ! or ? and if this statement evaluate to true then this does not require any action */

else if (last_character == ',') {  //checks if the last character of the caption is a comma

caption.at(last_index) = '.'; }  //if the else if condition is true then replace that comma with a period .

else if (last_character != '.') {  //checks if the caption does not end with ! ? , .

caption.push_back('.');}  //append period to the caption . if above if else condition is true

else if ((last_index > 0) && (last_character == '.') && (caption.at(last_index - 1) == '.')) {  //checks if the caption has two periods .

if ((last_index > 1) && (caption.at(last_index - 2) == '.')) {}  //checks if the caption has three periods and does nothing if this is true

else {  //if caption has two periods

caption.pop_back();}}  //removes one period if caption has two periods .

cout << caption << endl;}  //displays the caption

Explanation:

I will explain the above program with an example

Lets say user input the caption: I like pie

So

caption = " I like pie"

The first if condition if ((last_character == '!') || (last_character == '?')) evaluate to false because the last character of the caption is not an exclamation mark of a question mark. So the program moves to the next else if statement:

else if (last_character == ',') This statement is also false because the last character of the caption is not a comma. So the program moves to the next else if part.

else if (last_character != '.')

Now this statement evaluate to true because the last character of the caption is not a period . sign. So this part is executed. It has a statement:

caption.push_back('.');

Now this statement uses push_back() method which adds new character i.e. period '.' at the end of the caption string, increasing its length by one.

So the output of the program is:

I like pie.

If the caption = " I like pie!" then this if ((last_character == '!') || (last_character == '?')) condition executes and since it does nothing {} so the caption remains as it is and the output is:

I like pie!

If the caption = "Coming soon…" then this else if ((last_index > 0) && (last_character == '.') && (caption.at(last_index - 1) == '.')) condition executes which checks if the caption has two period. When this condition evaluates to true then the statement inside this else if condition executes which is: if ((last_index > 1) && (caption.at(last_index - 2) == '.')) and this checks if the caption has three periods. Yes the caption has three periods so it does nothing and the caption remains as it is and the output is:

Coming soon…

However if the caption is Coming soon.. with two periods then the else part inside else if ((last_index > 0) && (last_character == '.') && (caption.at(last_index - 1) == '.')) condition executes which is: caption.pop_back(); and this removes one period from the caption and the output is:

Coming soon.

The screenshot of the program and its output is attached.

Read each description below, and then choose the correct term that matches the description from the drop-down menus.

wireless technology that lets you identify and track objects

medical uses of RFID

a low-power radio wave used for short distances

computing device used with Bluetooth Read each description below, and then choose the correct term that matches the description from the drop-down menus.

wireless technology that lets you identify and track objects

medical uses of RFID

a low-power radio wave used for short distances

computing device used with Bluetooth

Answers

Answer:

wireless technology that lets you identify and track objects  (radio frequency identification)

 

medical uses of RFID  (patient identification)

a low-power radio wave used for short distances  (bluetooth)

computing device used with Bluetooth hands-free microphone in car

Explanation:

sorry if late :/

Answer:

Explanation:

edg 2021

2
Select the correct answer from each drop-down menu.
Different web browsers perform similar
functions, which are presented in the form of?
A. Text labels
B. Webpages
C. Buttons and menus

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is B.

Because different browsers perform similar functions that are presented in the form of webpages. If you want to run the webpage in chrome, it will run similarly as you run it in internet explorer or in firefox.

However, other options such as text labels and buttons and menus are not the browser functions because these are the elements of the webpages.

so the correct answer to this question is webpages.

Is Zero (Sam Fisher, Rainbow Six Siege version of course) overpowered because of the fact he has a gun that does 45 damage at a fire rate of 800rpm

Answers

Answer:

Yes

Explanation:

I see his damage and rpm as unfair because of the fact that he can deal over 36,000 damage in one minute.

2. What types of news can be created?

Answers

Answer:

Print Media

Broadcast Media

Explanation:

It can be made manually/artificially (meaning that someone caused something to happen on purpose) or naturally (meaning it just happened with out outside assistance)

Hope this helps you

Lee has finished formatting his table. He wants to import an Excel table to show the density and mean temperature data of the terrestrial planets.


Which tab should he navigate to?

Which command group should he use?

Which option should he click?

Which button should he click first in the dialog box that opens?

Answers

Answer:

1.  Insert

2. Text

3. Object

4. Create from file

Explanation:

On edg

After formatting his Excel table, Lee should navigate to the Insert tab and use the text command group.

What is an Excel table?

An Excel table can be defined as a rectangular range of data in a spreadsheet document, which comprises cells that are typically arranged by using rows and columns.

In this scenario, Lee should navigate to the Insert tab and use the text command group after formatting his Excel table.

Also, an option which he click is object while clicking on the "create from file" button in the dialog box that opens.

Read more on Excel table here: https://brainly.com/question/13776450

#SPJ2

Harry is creating a PowerPoint presentation and wants all the slides to have a uniform look.

The first thing Harry should do is select the
.

Next, he should use the command groups to edit the
.

Finally, he should save the file as a new
.

Answers

Answer: all answers for test are

Slide Master View

Layout and Theme

PowerPoint Template

A.

C.

Slide Master Thumbnail, Insert Tab, Header &Footer, Slide tab in the dialog box.

D.

C.

D.

Explanation:

The first thing Harry should do is select the Slide Master View, Next, he should use the command groups to edit the Layout and Theme. Finally, he should save the file as a new PowerPoint Template.

What is PowerPoint?

It is a presentation-based programme that employs graphics, movies, etc. to enhance the interactivity and appeal of a presentation.

A saved Powerpoint presentation has the ".ppt" file extension. PPT is another name for a PowerPoint presentation that includes slides and other elements.

This right-sided brain activity is perfectly suited to the principal function of PowerPoint presentations.

For his PowerPoint presentation, Harry wants each slide to have a consistent appearance.

Harry must first choose the Slide Master View before using the command groups to change the Layout and Theme. The file should then be saved as a fresh PowerPoint Template.

Thus, this way, Harry can create a uniform look.

For more details regarding PowerPoint, visit:

https://brainly.com/question/14498361

#SPJ2

Gloria is adding footers to a PowerPoint template for students to use in a literature class. Each student must choose an author and make a presentation about their life and work. She wants the first slide in each presentation to show only the author’s name and photo. On subsequent slides, she wants to include a footer with a date and time that changes depending on the actual date of each presentation.

To insert the footer according to her plan, what must Gloria click in the Header & Footer dialog box?

Fixed
Preview
Slide number
Don’t show on title slide

Answers

Answer:

Its D

Explanation:

On edg

Answer: don’t show on title slide

Explanation:

• Open your Netbeans IDE and answer the following question
• Create a folder on the desktop. Rename it with your student name and student number
• Save your work in the folder you created.
At a certain store they sell blank CDs with the following discounts:
* 10% for 120 or more
* 5% for 50 or more
* 1% for 15 or more
* no discount for 14 or less
Write a program that asks for a number of discs bought and outputs the correct discount. Use either a switch statement or if..elseif.. ladder statements. Assuming that each blank disk costs N$3.50. The program should then calculate the total amount paid by the buyer for the discs bought.

Answers

Answer:

public static void main(String[] args)

   {

       int cdCount;

       double cdCountAfterDiscount;

       DecimalFormat df = new DecimalFormat("$##.##"); // Create a Decimal Formatter for price after discount

       System.out.println("Enter the amount of CD's bought");

       Scanner cdInput = new Scanner(System.in);  // Create a Scanner object

       cdCount = Integer.parseInt(cdInput.nextLine());  // Read user input

       System.out.println("CD Count is: " + cdCount);  // Output user input

       if(cdCount <= 14 )

       {

           System.out.println("There is no discount");

           System.out.println("The final price is " + cdCount*3.5);

       }

       if(cdCount >= 15 && cdCount<=50)

       {

           System.out.println("You have a 1% discount.");

           cdCountAfterDiscount = (cdCount *3.5)-(3.5*.01);

           System.out.println("The final price is " + df.format(cdCountAfterDiscount));

       }

       if(cdCount >= 51 && cdCount<120)

       {

           System.out.println("You have a 5% discount.");

           cdCountAfterDiscount = (cdCount *3.5)-(3.5*.05);

           System.out.println("The final price is " + df.format(cdCountAfterDiscount));

       }

       if(cdCount >= 120)

       {

           System.out.println("You have a 10% discount.");

           cdCountAfterDiscount = (cdCount *3.5)-(3.5*.1);

           System.out.println("The final price is " + df.format(cdCountAfterDiscount));

       }

   }

What steps should a user take to create a secondary address book?

Open the Backstage view and Account Settings.
Open the Backstage view, and click People options.
Open the People view, and click New Address Book.
Open the People view, click Folder tab, and click New Folder.

Answers

Answer:

It's A

Explanation:

correct on edg

Answer:

A is correct on edg

Explanation:

Donna wants to save personal files on her computer. Which characteristic of the computer is must useful for her​

Answers

Answer:

D. Storage

Explanation:

When Donna wants to save personal files on her computer, the storage characteristic of the computer would be most useful to her. This feature of the computer allows files to be stored in several forms. The computer has the primary and secondary storage.

The primary storage includes assets such as the Random Access Memory while the secondary storage includes assets like the SD card, DVD, etc. Storage is important as it makes files easily retrievable when needed.

The storage characteristic of the computer is most useful to her in this scenario.

The Storage components in a computer helps to stores and facilitate easy retrieval of various type of data on the system.

The primary storage includes component of the Random Access Memory while the secondary storage includes SD card, Flash drives, External CD-rome, etc.

Therefore, she can save her personal files on her internal or external storage so as to facilitate easy retrieval at the time of future use.

Learn more about this here

brainly.com/question/272186

In the insert table of figures dialog box which drop down menu do you use to choose what information is displayed in the table

Answers

Answer:

caption label

Explanation:

If you are wanting to change programs, when do you need to make this request?
a.To change programs, you must contact your advisor or counselor and complete the change of program application during an open application window.
b.You can change at any time; just email your advisor regarding the change.
c.You can never change programs.
d.You do not need to notify anyone. You just need to start taking courses for the desired program.

Answers

Answer:

If your discussing colleges and degrees, you cant take courses your not autorized to take.

So if you have one major and wish to change to another then you need to discuss with a student advisor or counseler so they can make the changes. They will also discuss which classes are necessary for your program of choosing, making sure all your requirements are completed.

Explanation:

Two Smallest (20 points). Write a program TwoSmallest.java that takes a set of double command-line arguments and prints the smallest and second-smallest number, in that order. It is possible for the smallest and second-smallest numbers to be the same (if the sequence contains duplicate numbers). Note: display one number per line. Hint: Double.MAX_VALUE is the largest real number that can be stored in a double variable. java TwoSmallest 17.0 23.0 5.0 1.1 6.9 0.3 0.3 1.1 java TwoSmallest 1.0 35.0 2.0 1.1 6.9 0.3 0.3 6.7 0.3 0.3

Answers

Answer:

Written in Java

import java.util.*;

public class Main {

   public static void main(String args[]) {

     int n;

     Scanner input = new Scanner(System.in);

     n = input.nextInt();

     double nums []= new double [n];

     for (int i=0; i<n;i++)

     {

         nums[i] = input.nextDouble();

     }

     

     Arrays.sort(nums);

     System.out.println("The two smallest are: ");

     for (int i=0; i<2;i++)

     {

         System.out.println(nums[i]);

     }

   }

}

Explanation:

This line declares number of input

     int n;

This line calls the Scanner function

     Scanner input = new Scanner(System.in);

This line gets input from user

     n = input.nextInt();

This line declares an array of n elements

     double nums []= new double [n];

The following iteration gets input into the array

     for (int i=0; i<n;i++)

     {

         nums[i] = input.nextDouble();

     }

This line sorts the array

     Arrays.sort(nums);

The following iteration prints the two smallest

     System.out.println("The two smallest are: ");

     for (int i=0; i<2;i++)

     {

         System.out.println(nums[i]);

     }

Please Help Me
What kinds of solutions are proposed for different IT issues, and what are their advantages and disadvantages?

Answers

Answer:

There are three basic forms of business ownership: sole proprietorship, partnership and corporation. Each of these forms of business organization has advantages and disadvantages in such areas as setting up the company, paying taxes and assessing liability for business debts

Sue conducted an experiment to determine which paper towel is the most absorbent among three different brands. She decides to present her data using a chart.

Why would Sue want to present her data using a chart?

to analyze alphanumeric data in a table
to analyze alphanumeric values in a spreadsheet
to present numeric values in a visually meaningful format
to present numeric values in a meaningful spreadsheet format

Answers

Answer:

c

Explanation:

HEY DO U LIKE TRAINS!

Answers

Answer:

yes

Explanation:

yes

Write both an iterative and recursive solution for the factorial
problem.

Answers

Answer:

Explanation:

Recursive:

C++ program to find factorial of given number  

#include <iostream>  

using namespace std;  

unsigned int factorial(unsigned int n)  

{  

   if (n == 0)  

       return 1;  

   return n * factorial(n - 1);  

}  

 

// Driver code  

int main()  

{  

   int num = 5;  

   cout << "Factorial of "

        << num << " is " << factorial(num) << endl;  

   return 0;

Iterative:

// C++ program for factorial of a number  

#include <iostream>  

using namespace std;  

 

unsigned int factorial(unsigned int n)  

{  

   int res = 1, i;  

   for (i = 2; i <= n; i++)  

       res *= i;  

   return res;  

}  

 

// Driver code  

int main()  

{  

   int num = 5;  

   cout << "Factorial of "

        << num << " is "

        << factorial(num) << endl;  

   return 0;  

}

Describe yourself as a programming object and give at least 5 properties and 5 methods that you think you are equipped with.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

I consider myself a programming object, then the following are my properties and methods.

Properties (represents the features)

name.height.weight.skin color.eye color,hair style

Methods (represents the behavior)

Walk.Eat,ListenSpeakDrink

To close a window in Windows 10, you can _____. Select all that apply. A. right-click its button on the taskbar, then click Close window B. click the Close button in the upper-right corner of the window C. click the Close button in the window's thumbnail on the taskbar D. click the Start button and click the program name or icon

Answers

Answer:

A, B and C

Explanation:

A, B and C

(The following is unrelated to the answer just to fill the letters criteria)

For closing the window in Windows 10, the following steps should be considered:

The right-click should be done on the taskbar and then click on the close window.On the upper-right corner of the window, click on the close button.On the window thumbnail that shows on the taskbar, click on the close button.

Now if we click on the start button and then click the program icon so the particular program opens instead of closing it.

Therefore the above steps are considered for closing out the window in windows 10.

Learn more about windows 10 here: /brainly.com/question/19652025

This needs to be written in Java.
Create an Automobile class for a dealership. Include fields for an ID number, make, model, color, year, vin number, miles per gallon, and speed. Include get and set methods for each field. Do not allow the ID to be negative or more than 9999; if it is, set the ID to 0. Do not allow the year to be earlier than 2000 or later than 2017; if it is, set the year to 0. Do not allow the miles per gallon to be less than 10 or more than 60; if it is, set the miles per gallon to 0. Car speed should be initialized as 0. Include a constructor that accepts arguments for each field value and uses the set methods to assign the values. Also write two methods, Accelerate () and Brake (). Whenever Accelerate () is called, increase the speed by 5, and whenever Brake () is called, decrease the speed by 5. To allow users to specify the speed to increase (or decrease), create two overloading methods for Accelerate () and Brake () that accept a single parameter specifying the increasing (or decreasing) speed. Write an application that declares several Automobile objects and demonstrates that all the methods work correctly. Save the files as Automobile.java and TestAutomobiles.java

Answers

Answer:

Here is Automobile.java

class Automobile {   //class name

   private int ID, year, milesPerGallon, speed = 0;   // private member variables of Automobile of int type

   private String model, vinNo, make, color;   // private member variables of Automobile of String type

   public void setID(int ID){   //mutator method to set ID

      if (ID >= 0 && ID <= 9999)  // checks ID should not be negative or more than 9999

      this.ID = ID;  

     else this.ID = 0;  }  //if ID is negative or greater than 9999 then set ID to 0

   public void setModel(String model){  // mutator method to set model

       this.model = model;      }  

   public void setYear(int year){// mutator method to set year

      if (year >= 2000 && year <= 2017) //checks that year should not be earlier than 2000 or later than 2017

         this.ID = ID;

       else this.year = 0;     } //if year is less than 2000 or greater than 2017 then set year to 0

   public void setVinNo(String vinNo){  //mutator method to set vin number

       this.vinNo = vinNo;      }

   public void setMilesPerGalon(int milesPerGallon){  //mutator method to set miles per gallon

      if (milesPerGallon >= 10 && year <= 60)  //checks that miles per gallon should not be less than 10 or more than 60

          this.milesPerGallon = milesPerGallon;

      else this.milesPerGallon = 0;      } //if it is more than 60 or less than 10 then set miles per gallon to 0

   public void setSpeed(int speed){ //mutator method to set speed

       this.speed = speed;      }

   public void setMake(String make){  //mutator method to set make

       this.make = make;    }

   public void setColor(String color){  //mutator method to set color

       this.color = color;    }

   public int getID() //accessor method to get or access ID

   {return ID;} //returns the current ID

   public String getModel() //accessor method to get or access model

   {return model;} //returns the current model

   public int getYear()// accessor method to get or access year

   {return year;} //returns the current year

   public String getVinNo() // accessor method to get or access vin number

   {return vinNo;} //returns the current vin number

   public int getMilesPerGallon() //accessor method to get or access miles per gallon

   {return milesPerGallon;} //returns the current miles per gallon

   public int getSpeed() //accessor method to get or access speed

   {return speed;} //returns the current speed

   public String getMake() //accessor method to get or access make

   {return make;} //returns the current make

   public String getColor() //accessor method to get or access color

   {return color;}    //returns the current color

  public int Accelerate() {  //method that increase speed by 5

      setSpeed(speed + 5); //calls set speed to add 5 to the speed field

      return speed;    } //returns the speed after increasing 5

  public int Brake() { //method that decreases speed by 5

      setSpeed(speed - 5);//calls set speed to subtract 5 from the speed field

      return speed;    } //returns the speed after decreasing 5

  public int Accelerate(int spd) {  //overloading methods for Accelerate()that accepts a single parameter spd

      setSpeed(speed + spd);  //increases speed up to specified value of spd

      return speed;    }

  public int Brake(int spd) {  //overloading methods for Brake()that accepts a single parameter spd

      setSpeed(speed - spd); //decreases speed up to specified value of spd

      return speed;    }

   public Automobile(int ID, String make, String model, int year, String vinNo, int milesPerGallon, int speed, String color){  //constructor  that accepts arguments for each field value and uses the set methods to assign the values

      setID(ID);  

      setModel(model);  

      setYear(year);  

      setVinNo(vinNo);

      setMilesPerGalon(milesPerGallon);  

      setSpeed(speed);  

      setMake(make);  

      setColor(color);      } }

Explanation:

Here is TestAutomobiles.java

public class TestAutomobiles {   //class name

  public static void main(String args[]) {  //start of main method

    Automobile auto = new Automobile(123, "ABC", "XYZ", 2010, "MMM", 30, 150, "White");   //creates an object of Automobile class and calls its constructor passing the values for each of the fields

 System.out.println("Initial Speed: " + auto.getSpeed());  //calls getSpeed method to get the current speed using object auto. The current speed is 150

 System.out.println("Speed after applying acceleration: " + auto.Accelerate());   //calls Accelerate() method to increase the current speed to 5

 System.out.println("Speed after applying brake: " + auto.Brake());  //calls Brake() method to decrease the current speed to 5

   System.out.println("Speed after applying acceleration: " + auto.Accelerate(180));  //calls overloading Accelerate() method to increase the current speed to 180

     System.out.println("Speed after applying brake: " + auto.Brake(50));     }  } //calls overloading Brake() method to decrease the current speed to 50

//The screenshot of the output of the program is attached.

Which of the following statements best
describes a high level language?
A. The syntax is all 1's and O's.
B. The syntax is English-like.
C. All high level languages look the same.
D. High level languages are the most difficult to understand.

Answers

Answer

b

Explanation:

Let's play Silly Sentences!

Enter a name: Grace
Enter an adjective: stinky
Enter an adjective: blue
Enter an adverb: quietly
Enter a food: soup
Enter another food: bananas
Enter a noun: button
Enter a place: Paris
Enter a verb: jump

Grace was planning a dream vacation to Paris.
Grace was especially looking forward to trying the local
cuisine, including stinky soup and bananas.

Grace will have to practice the language quietly to
make it easier to jump with people.

Grace has a long list of sights to see, including the
button museum and the blue park.

Answers

Answer:

Grace sat quietly in a stinky stadium with her blue jacket

Grace jumped on a plane to Paris.

Grace ate bananas, apples, and guavas quietly while she listened to the news.

Grace is the name of a major character in my favorite novel

Grace was looking so beautiful as she walked to the podium majestically.

Grace looked on angrily at the blue-faced policeman who blocked her way.

The graphical user interface (GUI) was pioneered in the mid-1970s by researchers at:

A) Apple Computer

B) Microsoft

C) Xerox

D) IBM

Answers

Answer:

its C actually

Explanation:

C) Xerox plus i had a quiz

Answer:

xerox

Explanation:

In programming, what is a floating-point number?

Answers

A number with a decimal, Option A

essay regarding a magic cell phone that turns into robot

Answers

It should be noted that when writing an essay, it's important to effectively present the information to the readers.

Writing an essay.When writing the essay, the following steps are required:Create an essay outline.It's important to also develop a thesis statement.Introduce the topic.Then, write the body of the message The conclusion should be presented.

It should be noted that when writing the essay, it's also important to integrate the evidence clearly and ensure that the grammar used is correct.

Learn more about essays on:

https://brainly.com/question/25607827

What weight pencil is recommended for darkening lines and for lettering? *

Answers

Answer: darkened

Explanation: darkened

Answer:

While the softer B pencils are generally considered the best for shading, there's no reason to discount the harder H pencils. The HB and H are good choices for fine, light, even shading. However, they too have drawbacks. Pencil grades from HB through H, 2H to 5H get progressively harder and are easier to keep sharp.

how would you share information and communicate news and events​

Answers

Answer:

You could use Print things (mail, books, etc.) or Online things (internet, social media, etc.)

Hope this helps :)

What is an instance of a computer program that is being executed?
1. Processing
2. Storage
3. Input
4. App

Answers

It is processing because it is processing the data on the program.
Other Questions
1"Are you ready to go, Melissa?" Mrs. Lewis asked.2"I just have to get my hat and glove," Melissa replied.3"If we dont leave now, you will be late for your game."4"Okay, Im going."Which sentence varies the sentence pattern?A. sentence 1B. sentence 2C. sentence 3D. sentence 4 Shawna wants to purchase some shorts and a few pairs of socks. The shorts cost $10 and a pair of socks cost three dollars. Shawna can spend them no more than $45.Lets see represent the number of shorts purchased and Kay represent the number of pairs of socks purchased.Which in quality represents the situation? Do you think it was fair that they signed adocument celebrating liberty and freedomwhen they did not protect the rights ofslaves as well? Why do IT professionals have strict legal and ethical standards? A. The credentials they hold to perform their job. B. The oath they took when they began their career. C. The pressure put on them to behave a certain way. D. The strategic role they play in an organization. If you are given a graph, an equation, and a table; each representing a different linear function how would you determine which one has the greatest rate of change Solve the following system of equations.(15 Points)5x + 10 = -5y & x + y = -2 What is the slope of this graph Fill in the blanks with the correct present tense forms of the verbs in parentheses.A las seis de la maana yo (1)_______(correr) al Parque. Mi familia (2)_________(vivir) cerca del parque, entonces (3)__________(correr) slo tres kilmetros cada maana. Cuando (4)_________(regresar) a mi casa, mi familia y yo (5)_________(desayunar). Luego voy a la escuela. Which person in particular will change the Roman Republic? What is the difference 5/8 - 3/4 = 5/8 - 6/8 = ______ HELP ME FAST Question 3 (1 point)The underlined word in the following sentence is a participle. As what part of speech is it functioning?The whimpering puppy hid under the bed.nounObadjectiveadverb Describe a piece of evidence, which would be the responsibility of the Photograph Unit. Also suggest what may be done to this piece of evidence. A container holds 13 pencils, 5 black pens, and 3 blue pens. What is the ratio, in fraction form, of pens to all writing tools? A thief throws a ring down at his partner at 4.0 m/s. It is 9.0 m to the partners hands. a) Find the velocity of the ring when the partner catches it. b) How long will it take for the ring to pass between the two crooks? please help me with this Geo question Can someone pleasee help Ill mark brainlist!!! Select the correct answer.Which statement best identifies the main idea for a summary of the excerpt?A. Sailing on the Rangoon, the passengers encounter a storm, but Phileas Fogg remains calm despite the factthat the weather will delay them by at least 20 hours.B. A strong storm hits while the Rangoon is sailing to Hong Kong. The storm is so strong that the ship is reallystruggling, and Phileas Fogg will lose his bet due to the delay.C. The ship, the Rangoon, is now slowed by a storm. It is being knocked around by the fury of the wavesdespite lowering its sails. If it makes it to port, the passengers will miss their next ship.D. The storm is setting the Rangoon behind by 20 days. But Phileas Fogg is calm as ever, even though he isgoing to lose the wager that he can get around the world in eighty days. (around the world in eighty days by Jules Verne)o Who do you think would be allies among these different groups struggling over North America?Check all of the boxes that match your opinion.the British and Frenchthe colonists and the Britishthe American Indians and the coloniststhe American Indians and the Britishthe American Indians and the Frenchthe colonists and the French match the following statements with the correct term. "I fear I was wrong the honorable men whose daggers have stabbed Caesar." "Rob's comment produced a deafening silence from the audience." "Wilson considered himself fortunate for having made it past the most recent round of downsizing at work." "Give me the torch: I am not for this ambling. Being but heavy, I will bear the light." Option are pun, verbal irony, oxymoron, and euphemism. Our personal opinion or feeling towards something is called a(n)A. engagementB. confidenceC. emotionD. attitudePlease select the best answer from the choices provided.OAB.O C