Using java
Use the UML diagram given to create the 3 classes and methods.
The class house is an abstract class. The method forsale() and location() are abstract methods in the House class
The forSale method returns a String that states the type of villa or apartment available example : "1 bedroom apartment"
The location method is of type void and prints in the output the location of the villa and apartment, example: "the villa is in corniche"
Finally create a test class. In the test class make two different objects called house1 and house2 and print the forsale and location method for apartment and villa
Use the UML diagram given to create the 3 classes and methods.
The class house is an abstract class. The method forsale() and

Answers

Answer 1

In the HouseTest class, we create two objects house1 and house2 of types Villa and Apartment, respectively. We then call the forSale() and location() methods on these objects to display the information about the type of house for sale and its location.

// Abstract class House

abstract class House {

   public abstract String forSale();

   public abstract void location();

}

// Concrete class Villa

class Villa extends House {

   #Override

   public String forSale() {

       return "4 bedroom villa";

   }

   

   #Override

   public void location() {

       System.out.println("The villa is in Corniche.");

   }

}

// Concrete class Apartment

class Apartment extends House {

   #Override

   public String forSale() {

       return "1 bedroom apartment";

   }

   

   #Override

   public void location() {

       System.out.println("The apartment is in Downtown.");

   }

}

// Test class

public class HouseTest {

   public static void main(String[] args) {

       House house1 = new Villa();

       House house2 = new Apartment();

       

       System.out.println(house1.forSale());

       house1.location();

       

       System.out.println(house2.forSale());

       house2.location();

   }

}

To learn more on Programming click:

https://brainly.com/question/11023419

#SPJ4


Related Questions

In order to be a Mechanical Engineer, you need to:
1. Have a Bachelor's Degree
2. Have a Master's Degree
3. Have a Ph.D.

Answers

Answer:

3

Explanation:

it is compulsory to have a bachelor's degree

Have a bachelor degree

G(8) = K(8+ 1)(8 + 10)/(s + 4)(s – 6)
Sketch the root locus and find the value of K for which the system is closed-loop stable. Also find the break-in and breakaway points.

Answers

To sketch the root locus, we need to find the poles and zeros of the transfer function. In this case, the poles are located at s = -4 and s = 6, and the zero is located at s = -1.

The root locus starts at the poles and ends at the zeros. It consists of a set of branches that represent the possible locations of the closed-loop poles as the gain factor K varies.

To find the break-in and breakaway points, we analyze the behavior of the root locus as K approaches infinity and as K approaches zero.

As K approaches infinity, the root locus tends to the poles. The break-in point occurs when a branch of the root locus crosses the imaginary axis. In this case, there is no break-in point since the poles are real and located on the real axis.

As K approaches zero, the root locus tends to the zeros. The breakaway points occur when two branches of the root locus meet and move away from each other. To find the breakaway points, we need to calculate the values of K at which this occurs.

Since the transfer function has a single zero, there will be no breakaway points.

To determine the value of K for which the system is closed-loop stable, we need to check the root locus branches for the range of K values that keep the poles on the left-hand side of the complex plane (i.e., the stability region). In this case, as K increases, the poles move towards the right, and the system becomes unstable for K > 0.

Therefore, there is no specific value of K for which the system is closed-loop stable in this case.

To get a more precise plot and find the break-in and breakaway points, you can use software tools like MATLAB or any other tool that can plot root loci.

Learn more about poles here

https://brainly.com/question/30502428

#SPJ11

Identity 10 new technological advancement in our economy since 2000​

Answers

Since the turn of the millennium, there have been numerous technological advancements in various fields that have revolutionized our economy. Here are ten such advancements.

What is the explanation for the above response?

Smartphones - The introduction of smartphones in 2007 has had a significant impact on the economy, creating new markets and transforming the way businesses operate.

Cloud Computing - This technology has enabled businesses to store and process data more efficiently and cost-effectively, allowing for greater collaboration and flexibility.

Social Media - Platforms like Fac. ebook and Twi. tter have revolutionized communication and marketing, enabling businesses to reach out to customers and target audiences in new and innovative ways.

Big Data Analytics - With the explosion of data, big data analytics has become essential in enabling businesses to make informed decisions and gain a competitive edge.

3D Printing - This technology has transformed manufacturing, allowing for more efficient and cost-effective production of goods.

Artificial Intelligence - AI is transforming industries from healthcare to finance, with its ability to analyze data and provide insights that were previously impossible to obtain.

Electric and Self-Driving Cars - The rise of electric and self-driving cars has disrupted the transportation industry, creating new markets and reducing the carbon footprint of vehicles.

Blockchain - This technology has the potential to revolutionize industries from finance to logistics, enabling secure and transparent transactions without the need for intermediaries.

Virtual and Augmented Reality - These technologies have transformed industries from gaming to retail, enabling immersive experiences and new forms of engagement with customers.

Internet of Things - IoT has enabled businesses to connect with customers and devices in new and innovative ways, creating new markets and opportunities for growth.

Learn more about technologies at:

https://brainly.com/question/7788080

#SPJ1

Which of the following tools is specifically designed to test the DC voltage on a hard disk drive power connector?
Loopback plug
Power supply tester
Cable tester
Multimeter

Answers

Note that a loopback plug is specifically designed to test the DC voltage on a hard disk drive power connector. (Option A)

What is a loopback plug?

A loopback plug is a 10-inch wire device with a tiny plastic connection at one end that isolates network circuit difficulties. It is constructed using RJ-45 connectors, crimping equipment, and unshielded twisted pair (UTP) cables.

Loopback plugs are commonly used to verify data transmission by routing electrical signals and digital data streams from the output back to the same origin. Loopback is used in telecommunications, serial interfaces, virtual network interfaces, and networking.

Learn more about Hard Disk:
https://brainly.com/question/14504942
#SPJ1

In which of the following classes of games would a Nash equilibrium in mixed strategies exist?

___ Prisoner’s Dilemma ___ Games with 2 pure Nash eq. ___ Chicken Games

___ Leadership Games ___ 2x2 game with dominated strategies

___ Battle of the 2 Cultures ___ 3x3 game with a dominant strategy by only 1 player

Answers

Nash equilibrium in mixed strategies would exist in Prisoner's Dilemma, Chicken Games, and Leadership Games, but not in games with 2 pure Nash equilibria or 2x2 games with dominated strategies.


To determine in which classes of games a Nash equilibrium in mixed strategies would exist, we need to analyze each class of game and consider the conditions for a Nash equilibrium. Here's a step-by-step explanation:

1. Prisoner's Dilemma: In the Prisoner's Dilemma, where two players must decide to cooperate or betray each other, a Nash equilibrium in mixed strategies can exist. Each player can randomize their actions to create uncertainty for the opponent and achieve an equilibrium.

2. Games with 2 pure Nash equilibria: In games with 2 pure Nash equilibria, where both players have two possible strategies resulting in Nash equilibria, there is no need for mixed strategies. Each player can simply choose one of the pure Nash equilibria.

3. Chicken Games: In Chicken Games, where two players must decide whether to swerve or continue straight, a Nash equilibrium in mixed strategies can exist. By randomizing their choices, players can create uncertainty and ensure no player has an incentive to deviate.

4. Leadership Games: Leadership Games involve a leader and a follower, where the leader chooses an action first, and the follower observes it before making their decision. In such games, a Nash equilibrium in mixed strategies can exist if the leader randomizes their actions and the follower's best response is a mixed strategy.

5. 2x2 game with dominated strategies: In a 2x2 game with dominated strategies, where one strategy is strictly dominated by another for both players, there is no Nash equilibrium in mixed strategies. The players would have dominant strategies, and the equilibrium would be in the form of a pure strategy.

6. Battle of the 2 Cultures: There is not enough information provided to determine whether a Nash equilibrium in mixed strategies would exist in the Battle of the 2 Cultures game. Without knowledge of the specific game structure and payoff matrix, it is not possible to make a definitive determination.

7. 3x3 game with a dominant strategy by only 1 player: In a 3x3 game where only one player has a dominant strategy, there can still be a Nash equilibrium in mixed strategies. The player with the dominant strategy can randomize their choices, while the other player chooses their actions accordingly.

In summary, a Nash equilibrium in mixed strategies would exist in the Prisoner's Dilemma, Chicken Games, and Leadership Games. It would not exist in games with 2 pure Nash equilibria or 2x2 games with dominated strategies. The determination for the Battle of the 2 Cultures game cannot be made without further information.


To learn more about Prisoner's Dilemma click here: brainly.com/question/33449114

#SPJ11

Why optical microscopes are so named?​

Answers

Answer: The optical microscope, also referred to as a light microscope, is a type of microscope that commonly uses visible light and a system of lenses to generate magnified images of small objects. Optical microscopes are the oldest design of microscope and were possibly invented in their present compound form in the 17th century. Basic optical microscopes can be very simple, although many complex designs aim to improve resolution and sample contrast.

The object is placed on a stage and may be directly viewed through one or two eyepieces on the microscope. In high-power microscopes, both eyepieces typically show the same image, but with a stereo microscope, slightly different images are used to create a 3-D effect. A camera is typically used to capture the image (micrograph).

The sample can be lit in a variety of ways. Transparent objects can be lit from below and solid objects can be lit with light coming through (bright field) or around (dark field) the objective lens. Polarised light may be used to determine crystal orientation of metallic objects. Phase-contrast imaging can be used to increase image contrast by highlighting small details of differing refractive index.

A range of objective lenses with different magnification are usually provided mounted on a turret, allowing them to be rotated into place and providing an ability to zoom-in. The maximum magnification power of optical microscopes is typically limited to around 1000x because of the limited resolving power of visible light. While larger magnifications are possible no additional details of the object are resolved.

Alternatives to optical microscopy which do not use visible light include scanning electron microscopy and transmission electron microscopy and scanning probe microscopy and as a result, can achieve much greater magnifications.

a pipeline constructed of carbon steel failed after 3 years of operation. on examination it was found that the wall thickness had been reduced by corrosion to about half the original value. the pipeline was constructed of nominal 100 mm (4 in) schedule 40, pipe, inside diameter 102.3 mm (4.026 in), and outside diameter 114.3 mm (4.5 in). estimate the rate of corrosion in ipy and mm per year.

Answers

In this scenario, a pipeline made of carbon steel failed after three years of operation due to corrosion. The wall thickness of the pipeline had reduced to about half of its original value. The pipeline was constructed of nominal 100 mm (4 in) schedule 40 pipe, with an inside diameter of 102.3 mm (4.026 in) and an outside diameter of 114.3 mm (4.5 in).

To estimate the rate of corrosion in IPY (inches per year) and mm per year, we need to use the following formula:

Rate of Corrosion = (Original Thickness - Remaining Thickness) / (Operation Time x Corrosion Allowance)

The original thickness of the pipeline can be calculated as:

Original Thickness = (Outside Diameter - 2 x Corrosion Allowance)

We know that the outside diameter of the pipeline is 114.3 mm (4.5 in) and the schedule 40 pipe has a corrosion allowance of 3.05 mm (0.12 in). Therefore, the original thickness can be calculated as:

Original Thickness = (114.3 mm - 2 x 3.05 mm) = 108.2 mm (4.26 in)

Now we can use the formula to estimate the rate of corrosion in IPY and mm per year:

Rate of Corrosion in IPY = (Original Thickness - Remaining Thickness) / (Operation Time x Corrosion Allowance)
Rate of Corrosion in IPY = (108.2 mm - 0.5 x 108.2 mm) / (3 years x 0.12 in)
Rate of Corrosion in IPY = 49.6 IPY

Rate of Corrosion in mm per year = (Original Thickness - Remaining Thickness) / (Operation Time x Corrosion Allowance)
Rate of Corrosion in mm per year = (108.2 mm - 0.5 x 108.2 mm) / (3 years x 3.05 mm)
Rate of Corrosion in mm per year = 4.8 mm/year

The rate of corrosion in IPY is estimated to be 49.6 IPY, and in mm per year, it is estimated to be 4.8 mm/year. These calculations help us to understand the rate at which the pipeline deteriorated due to corrosion, which can be used to prevent future failures and ensure the safety and longevity of similar pipelines.

To learn more about corrosion, visit:

https://brainly.com/question/20407861

#SPJ11

What motion involves a shaft that can easily grip hair and
clothing?

Answers

it should be rotating motion.

Answer: B) Rotating

Explanation: Osha 10 Career safe

If, for a particular junction, the acceptor concentration is 1017/cm3 and the donor concentration is 1016/cm3, find the junction built-in voltage. Assume ni = 1.5 × 1010/cm3. Also, find the width of the depletion region (W) and its extent in each of the p and n regions when the junction terminals are left open. Calculate the magnitude of the charge stored on either side of the junction. Assume that the junction area is 10 µm2.

Answers

Answer:

A) V_o = 0.7543 V

B) W = 328.42 nm

C) X_n = 298.56 nm and X_p = 29.86 nm

D) Q_j = 47.767 × 10^(-15)

Explanation:

We are given;

Acceptor concentration; N_A = 10^(17) /cm³

donor concentration; N_D = 10^(16) /cm³

ni = 1.5 × 10^(10) /cm3

A) The formula for the built - in - voltage at the junction is given by;

V_o = V_T(In (N_A × N_D/ni²))

Where V_T is thermal voltage at room temperature with a value from online sources as 25.9 mV

Thus;

V_o = 25.9(In (10^(17) × 10^(16))/(1.5 × 10^(10))²

V_o = 0.7543 V

B) Now, formula for the width of the depletion region (W)is given as;

W = √(2ε_s/q[(1/N_A) + (1/N_D)]V_o)

Where;

ε_s is the permittivity in the semiconductor with a constant value of 1.04 × 10^(-12) F/cm

q is the electron charge = 1.6 × 10^(-19) C

Thus;

W = √(2 × 1.04 × 10^(-12)/(1.6 × 10^(-19)) [(1/10^(17)) + (1/10^(16)]0.7543)

W = 32.842 × 10^(-6) cm

Converting to m gives;

W = 328.42 nm

C) Formula for extent of the n region is;

X_n = W × (N_A/(N_A + N_D))

X_n = 32.842 × 10^(-6) × (10^(17)/(10^(17) + 10^(16))

X_n = 29.856 × 10^(-6) cm

Converting to m gives;

X_n = 298.56 nm

Formula for extent of the p region is;

X_p = W - X_n

X_p = 328.42 nm - 298.56 nm

X_p = 29.86 nm

D) The charge stored on either side of the junction is given by the formula;

Q_j = Aq[(N_A × N_D)/(N_A + N_D)]W

Where A is junction Area and we are given junction area as 10 µm² = 100 × 10^(-8) cm

Thus;

Q_j = (100 × 10^(-8) × 1.6 × 10^(-19))[(10^(17) × 10^(16))/(10^(17) + 10^(16)] × 32.842 × 10^(-6)

Q_j = 47.767 × 10^(-15)

I need help finding a good selling for a 71 Ford mustang hardtop coupe price This isn't really a school question but it's the only place I know we're I can ask questions so I'll give it a go

Answers

Answer:

you know you could use like quora or yahoo answers

let x=[−5−23] and y=[550]. compute ||x−y||1= ||x−y||[infinity]= ||x−y||2= note: you can earn partial credit on this problem.

Answers

To compute ||x−y||1, we need to take the absolute values of the differences between the corresponding components of x and y, add them up, and then take the maximum of those sums. So we have:

||x−y||1 = |(-5) - 5| + |-2 - 5| + |3 - 0| = 10 + 7 + 3 = 20

To compute ||x−y||[infinity], we need to take the maximum absolute difference between the corresponding components of x and y. So we have:

||x−y||[infinity] = max(|-5 - 5|, |-2 - 5|, |3 - 0|) = 7

To compute ||x−y||2, we need to take the square root of the sum of the squares of the differences between the corresponding components of x and y. So we have:

||x−y||2 = sqrt[(-5 - 5)^2 + (-2 - 5)^2 + (3 - 0)^2] = sqrt[100 + 49 + 9] = sqrt(158)

Therefore, ||x−y||1 = 20, ||x−y||[infinity] = 7, and ||x−y||2 = sqrt(158).

I hope that helps! Let me know if you have any other questions.

To learn more about Maximum absolute, click here:

https://brainly.com/question/29030328

#SPJ11

are programmable logic controllers more closely associated with the process industries or the discrete manufacturing industries?

Answers

Programmable logic controllers are more closely associated with the discrete manufacturing industries.

Discrete manufacturing industries involve the production of distinct items, such as automobiles, furniture, and toys. Programmable logic controllers are used in these industries to control the production processes and ensure that each item is produced correctly and efficiently.

In contrast, process industries involve the production of continuous products, such as chemicals, food, and pharmaceuticals. While programmable logic controllers can be used in these industries, they are not as closely associated with them as they are with discrete manufacturing industries.

In summary, programmable logic controllers are more closely associated with the discrete manufacturing industries, where they are used to control the production of distinct items.

For more information about Programmable logic controllers, visit:

https://brainly.com/question/14786619

#SPJ11

What do you think will happen to the demand curve if there is a sudden surplus for a certain commodity?​

Answers

Answer:

the curve will flatten due to the supply and demand theory.

2.13 LAB: Expression for calories burned during workout
This section has been set as optional by your instructor.
The following equations estimate the calories burned when exercising (source):

Men: Calories = ( (Age x 0.2017) — (Weight x 0.09036) + (Heart Rate x 0.6309) — 55.0969 ) x Time / 4.184

Women: Calories = ( (Age x 0.074) — (Weight x 0.05741) + (Heart Rate x 0.4472) — 20.4022 ) x Time / 4.184

Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output calories burned for men and women.

Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
print('Men: %0.2f calories' % calories_man)

Ex: If the input is:

49
155
148
60
Then the output is:

Men: 489.78 calories
Women: 580.94 calories
299420.1660094

Answers

Answer:

ee

Explanation:

This is an over the top question

The program requires a sequence control structure; First, we get input for the variables, and then use the formula to calculate the amount of calories burnt.

The program in python is as follows, where comments (in italics) are used to explain each line.

#This gets input for age, in years

age = int(input("Age (years): "))

#This gets input for weight, in pounds

weight = int(input("Weight (pounds): "))

#This gets input for heart rate, in beats per minutes

heart_rate = int(input("Heart Rate (beats per minutes): "))

#This gets input for time, in minutes

time = int(input("Time (Minutes) : "))

#This calculates the calories burnt for men

calories_man = ((age * 0.2017) - (weight * 0.09036) + (heart_rate * 0.6309) - 55.0969) * time / 4.184

#This calculates the calories burnt for women

calories_woman = ((age * 0.074) - (weight * 0.05741) + (heart_rate * 0.4472) - 20.4022 ) * time / 4.184

#This prints the calories burnt for men

print('Men: %0.2f calories' % calories_man)

#This prints the calories burnt for women

print('Women: %0.2f calories' % calories_woman)

Please note that the program does not check for valid inputs

See attachment for program output

Read more about Python programs at:

https://brainly.com/question/22841107

2.13 LAB: Expression for calories burned during workoutThis section has been set as optional by your

PYTHON PYTHON PYTHON


2. 20 LAB*: Program: Pizza Party Weekend


Program Specifications. Write a program to calculate the cost of hosting three pizza parties on Friday, Saturday and Sunday. Read from input the number of people attending, the average number of slices per person and the cost of one pizza. Dollar values are output with two decimals. For example, print(f"Cost: ${cost:. 2f}").


Note: this program is designed for incremental development. Complete each step and submit for grading before starting the next step. Only a portion of tests pass after each step but confirm progress.


Step 1 (1 pt). Read from input the number of people (int), average slices per person (float) and cost of one pizza (float). Calculate the number of whole pizzas needed (8 slices per pizza). There will likely be leftovers for breakfast. Hint: Use the ceil() function from the math library to round up to the nearest whole number and convert to an int. Calculate and output the cost for all pizzas. Submit for grading to confirm test 1 passes.


Ex: If the input is:


10 2. 6 10. 50


The output is:


Friday Night Party


4 Pizzas: $42. 00


Step 2 (2 pts). Calculate and output the sales tax (7%). Calculate and output the delivery charge (20% of cost including tax). Submit for grading to confirm 2 tests pass.


Ex: If the input is:


10 2. 6 10. 50


The output is:


Friday Night Party


4 Pizzas: $42. 00


Tax: $2. 94


Delivery: $8. 99


Step 3 (2 pts). Calculate and output the total including pizza, tax and delivery. Submit for grading to confirm 3 tests pass.


Ex: If the input is:


10 2. 6 10. 50


The output is:


Friday Night Party


4 Pizzas: $42. 00


Tax: $2. 94


Delivery: $8. 99


Total: $53. 93


Step 4 (2 pts). Repeat steps 1 - 3 with additional inputs for Saturday night (one order per line). Maintain and output a separate total for both parties. Submit for grading to confirm 5 tests pass.


Ex: If the input is:


9 2. 5 10. 95


14 3. 2 14. 95


The output is:


Friday Night Party


3 Pizzas: $32. 85


Tax: $2. 30


Delivery: $7. 03


Total: $42. 18


Saturday Night Party


6 Pizzas: $89. 70


Tax: $6. 28


Delivery: $19. 20


Total: $115. 17


Weekend Total: $157. 35


Step 5 (2 pts). Repeat steps 1 - 3 with additional inputs for Sunday night (one order per line). Maintain and output a total for all parties. Submit for grading to confirm all tests pass.


Ex: If the input is:


6 2. 8 10. 95


22 2. 1 12. 95


12 1. 8 14. 95


The output is:


Friday Night Party


3 Pizzas: $32. 85


Tax: $2. 30


Delivery: $7. 03


Total: $42. 18


Saturday Night Party


6 Pizzas: $77. 70


Tax: $5. 44


Delivery: $16. 63


Total: $99. 77


Sunday Night Party


3 Pizzas: $44. 85


Tax: $3. 14


Delivery: $9. 60


Total: $57. 59


Weekend Total: $199. 53


375402. 2354458

Answers

Here are some steps you can follow to approach this problem:

Read input from the user using the input() function in Python.Convert the input values to the appropriate data types (int, float) using the int() and float() functions.

What is the Python Program about?

The problem requires writing a program in Python that calculates the cost of hosting three pizza parties on Friday, Saturday, and Sunday.

The program should read input from the user, calculate the number of pizzas needed, calculate the cost of all pizzas, calculate the sales tax and delivery charges, and finally, output the total cost including tax and delivery charges.

Therefore, Read the input values: number of people, average slices per person, and cost of one pizza.

Calculate the number of whole pizzas needed (8 slices per pizza) using the ceil() function from the math library to round up to the nearest whole number and convert to an int.Calculate the total cost for all pizzas.Output the number of pizzas and the total cost for the first party (Friday).Submit for grading to confirm test 1 passes.

Learn more about Python from

https://brainly.com/question/26497128

#SPJ1

64º26’18’’ + 195º57’12,75’’ – 100º55’35’’

Answers

Answer:

I can help you with your calculation.

To add and subtract angles in degrees, minutes, seconds (DMS) form, you need to follow these steps12:

Align the angles so that the degrees, minutes, and seconds are in the same column.

Add or subtract the seconds first. If the result is more than 60 or less than 0, adjust the minutes accordingly.

Add or subtract the minutes next. If the result is more than 60 or less than 0, adjust the degrees accordingly.

Add or subtract the degrees last.

Using this method, your calculation can be done as follows:

64º26’18’’ + 195º57’12,75’’ – 100º55’35’’ = 64º26’18’’ + 195º57’12.75’’ – 100º55’35’’ = 159º83’30.75’’ – 100º55’35’’ = 159º83’(30.75 - 35)’’ – 100º55’0’’ = 159º82’55.75’’ – 100º55’0’’ = 159º(82 - 55)’55.75’’ – 100º0’0’’ = 159º27’55.75’’ – 100º0’0’’ = (159 - 100)º27’55.75’’ = 59º27’55.75’’

Therefore, the answer is 59º27’55.75’’. I hope this helps!

Explanation:

The cost to rent a scooter is $15.50 per hour and the cost to rent a watercraft is $22.80 per hour use the expression 15.5 S +22.8 W you The cost to rent a scooter is $15.50 per hour and the cost to rent a water craft is $22.80 per hour use the expression 15.5 S +22.8 W you you

Answers

Complete Question:

The cost to rent a scooter is $15.50 per hour and the cost to rent a watercraft

is $22.80 per hour. Use the expression 15.5s + 22.8w to determine how much it would cost to rent a scooter for 3 hours and a watercraft for 1 hours.

Answer:

$69.39

Explanation:

Given

15.5s + 22.8w

Required

Evaluate, when w = 1 and s = 3

To do this, we simply substitute 3 for a and 1 for w in the given expression.

15.5s + 22.8w becomes..

15.5 * 3 + 22.8 * 1

46.5 + 22.8

69.3

Hence, the cost is $69.30

Installation a2 An insulated rigid tank initially contains 1.4-kg saturated liquid
water and water vapor at 200°C. At this state, 25 percent of the
volume is occupied by liquid water and the rest by vapor. Now an
electric resistor placed in the tank is turned on, and the tank is
observed to contain saturated water vapor after 20 min. Determine
(a) the volume of the tank, (b) the final temperature, and (c) the
electric power rating of the resistor
nd demo of reaper in Mahindra Yuvo 575 DI tractor

Answers

Answer:

Explanation:

It appears that you are trying to solve a problem involving an insulated rigid tank containing saturated liquid water and water vapor. To determine the volume of the tank, you will need to know the mass of the liquid water and the mass of the water vapor. The mass of the liquid water can be calculated by multiplying the mass of the water and vapor mixture by the fraction of the mixture that is liquid water (1.4 kg * 0.25 = 0.35 kg). The mass of the water vapor can be calculated by subtracting the mass of the liquid water from the total mass of the mixture (1.4 kg - 0.35 kg = 1.05 kg).

To determine the final temperature of the tank, you will need to know the amount of heat added to the tank by the electric resistor and the specific heat capacity of the water and water vapor mixture. The specific heat capacity is a measure of the amount of heat required to raise the temperature of a substance by a certain amount. The specific heat capacity of water is 4.186 J/g°C, and the specific heat capacity of water vapor is 2.080 J/g°C.

To determine the electric power rating of the resistor, you will need to know the amount of heat added to the tank by the resistor and the time over which the heat was added. The power rating of the resistor is equal to the amount of heat added to the tank divided by the time over which the heat was added.

I hope this helps clarify the problem and provide some guidance on how to solve it. If you have any further questions or need additional help, please don't hesitate to ask.

what kinds of work do engineer do​

Answers

Answer:

Engineers work in a variety of fields to analyze, develop and evaluate large-scale, complex systems. This can mean and improve and maintaining current systems or creating brand new projects. Engineers will design and draft blueprints, visit systems in the field and manage projects.

Answer:

Engineers work in a variety of fields to analyze, develop and evaluate large-scale, complex systems.

Explanation:

A particular brand of paint covers 340 square feet per gallon . Write a program in C++ to determine and report approximately how many gallons of paint will be needed to paint two coats on a wooden fence that is 6 feet high and 100 feet long .

Answers

Answer:

#include <iostream>

using namespace std;

// named constant to give mnemonic name to "magic number"

const float SqFtPerGal = 350.0f;

// the function main() is always the entry point of the application

int main()

{

float length, width, area, paint; // to hold user values and results

// prompt user for length and width of wall

cout << "Enter length of wall : " << flush;

cin >> length;

cout << "Enter width of wall : " << flush;

cin >> width;

// calculate area and amount of paint needed

area = length * width;

paint = area / SqFtPerGal;

// output results with reasonable text

cout << "You need " << paint << " gallons of paint to cover "

<< area << " square feet of wall." << endl;

// program stops executing when it returns from main(), 0 means O.K.

return 0;

}

Explanation:

What type of system is used by a steam engine?
A steam engine uses fuel to heat water into steam which drives a turbine, thus converting heat into mechanical energy. The steam engine is a type of ______
system.

Answers

Answer:

Steampunk Mechanical

Explanation:

Your welcome

Define centrifugal pump. Give the construction and working of centrifugal pump. ​

Answers

Centrifugal pump is a hydraulic machine which converts mechanical energy into hydraulic energy by the use of centrifugal force acting on the fluid. These are the most popular and commonly used type of pumps for the transfer of fluids from low level to high level.

What are the prefixes for 1, 10, 1000, 1,000,000, .1, .01, .001, .000001

Answers

Prefix Symbol Multiplier Exponential

yotta Y 1,000,000,000,000,000,000,000,000 1024

zetta Z 1,000,000,000,000,000,000,000 1021

exa E 1,000,000,000,000,000,000 1018

peta P 1,000,000,000,000,000 1015

tera T 1,000,000,000,000 1012

giga G 1,000,000,000 109

mega M 1,000,000 106

kilo k 1,000 103

hecto h 100 102

deca da 10 101

1 100

deci d 0.1 10¯1

centi c 0.01 10¯2

milli m 0.001 10¯3

micro µ 0.000001 10¯6

nano n 0.000000001 10¯9

pico p 0.000000000001 10¯12

femto f 0.000000000000001 10¯15

atto a 0.000000000000000001 10¯18

zepto z 0.000000000000000000001 10¯21

yocto y 0.000000000000000000000001 10¯24

In Female, the twenty-third pair of chromosomes is called in in

Answers

The twenty-third pair of chromosomes is called the sex chromosomes. Females have two X chromosomes and males have one X and one Y

Given a stack myData: Tom, Sam (top is Tom), what is the output after the following operations? Push(myData, Hal) Pop(myData) Pop(myData) Pop(myData) print(Pop(myData)

Answers

The output after the given operations would be: After the operation Push(myData, Hal), the stack myData would be: Tom, Sam, Hal (with Hal being the new top element). After the operation Pop(myData), the top element (Hal) would be removed from the stack.

the stack would be: Tom, Sam (with Tom being the new top element).After the operation Pop(myData), the top element (Tom) would be removed from the stack, and the stack would be: Sam (with Sam being the new top element).After the operation Pop(myData), the top element (Sam) would be removed from the stack, and the stack would be empty .The operation Pop(myData) would return an error or null value, as the stack is already empty. Therefore, the final output would be an error or null value.

To know more about operations  click here:

brainly.com/question/29949119

#SPJ4

In an certain locality, the Sample randome Samples of 800 farmers were asked what type of fertilizer they make use of 480 of them responded that there have been using CDC fertilizer. If it is known that the Papulation Standard deviation is 250, then determine the interval estimate of the total Number of formeres who are using CDC Fertilizer with 90%. Confidence Interval.​

Answers

The dependability of a measurement is also indicated by error bars based on confidence intervals (C.I. ), which are a component of inferential statistics. These error bars show a range that would, 95% of the time, reflect the population mean.

What is statistics?Engineering statistics blends statistics with engineering while employing scientific methods to analyze data. Engineering statistics provide information on production procedures, such as component dimensions, tolerances, material types, and fabrication process control. Robustness analysis, measurement system error analysis, test data analysis, probabilistic risk assessment, and many other areas of engineering require the use of statistics.In a nutshell, statistical engineering is the field that focuses on the art and science of resolving complicated issues that call for statistics and data analysis.Whether or not they have taken statistics classes, engineers must conduct experiments and evaluate data as part of their work. But those that have are probably better engineers.

To learn more about statistics refer to:

https://brainly.com/question/27158518

#SPJ1

For circuit shown, determine the total circuit current.
100 ΩξR,
R, S250 Ω
24 ν -
350 ΩξR,
R, 200 Ω

Answers

Answer:

I don't know the answer but you can download Ga u t h math to answer that

Explanation:

no spacing it is just can't lay aside

How to calculate absolute value in Python?

Answers

For integer numbers, the abs() function returns the absolute value of the given number. For floating point numbers, the abs() function returns the absolute value of the given number. For complex numbers, the abs() function returns the magnitude of the given number.

The * key is used for ____.

Answers

the * key is used for multiplication

Is there a shower system that is simple to install?

Answers

Answer:

Yes, there are several shower systems that are relatively simple to install. One option is the Delta In2ition Two-in-One Showerhead, which can be easily installed using a standard shower arm. Another option is the Kohler K-9245-2 2.5 GPM Moxie and Kohler K-9245-CP 2.5 GPM Moxie and Kohler K-9245-BN 2.5 GPM Moxie Showerhead, which comes with a removable hand-held showerhead that can be easily installed onto the existing shower arm. Additionally, the AquaDance 7" Premium High Pressure 3-Way Rainfall Combo for the Best Relaxation has a simple installation process and can be easily mounted onto the wall or shower arm. Overall, it is important to carefully read the instructions and have the necessary tools on hand to ensure a smooth installation process.

Answer: Yes

Explanation:

We know that installing a shower system can be a hassle. But what if we told you there was an easier way?

The HYDRO-BLOK Shower System is lightweight and easy to install, so you can get started tiling in as little as an hour. And here's the best part: once it's installed, the HYDRO-BLOK system is 100% waterproof—we promise! There's no need for any additional waterproofing steps or messy materials.

So why not give it a try? You won't be disappointed.

Other Questions
A human resources manager selected a random sample of 200 workers who donate to charity. The following table shows the distribution of the 200 workers. Count Type of worker Management Other white collar 96 50 S Blue collar 54 The manager conducts a goodness-of-fit test to determine whether the proportions of workers of these types are identical to the population proportions of workers donating to charity, which are 50 percent for management, 30 percent for other white-collar workers, and 20 percent for blue-collar workers. Which of the following statements must be true about the sample?A. The expected number of blue-collar workers donating to charity is less than 30. B. The expected number of management workers donating to charity is 100. C. The expected numbers of other white collar and blue-collar workers donating to charity are the same. D. The expected number of other white-collar workers donating to charity is 50 E. The combined expected numbers of other white collar and blue-collar workers donating to charity is greater than the expected number of management workers donating to charity. Why did Powhatan begin fighting with the Jamestown colonists a nurse has administered a dose of a drug that is known to be highly protein bound. what are the implications of this characteristic? True or FalseGermany was an Axis power in World War II. Catalogue is considered formal verse and contains repetition. true or false 3) show that the two lines with the given slopes are parallel, perpendicular neither. My = 3/4 M = 12/16 . solve it by showing step by step A commercial rancher that raises and sells cattle wants to expand her business by increasing the size of her herd from 1,000 cows to 1,500 cows. At present, she has enough land on her ranch to support 1,000 cows. If she moves forward with her plan to add more cows, what could be the result? could you guys help me with homework it's due tommorow 1. A ball is dropped from a height of 256 feet. After it hits the ground, it rebounds to a height that is 75% of its previous maximum height. Use proportional reasoning to complete the table. Find the ratio of dandelions to marigolds in the garden was 11 to 4 if they were 44 marigolds in the garden how many dandelions were there? The strata in this rock structure seem to be tilted, and there is a river running alongside the structure. What might these characteristics indicate about changes in the landscape? Why? 4. In your own words describe the difference between the natural breaks, quantile, and equal interval classification schemes that can be used to make a thematic map. Refer to lecture and homework 8. PLEASEEEE HELP MEEEEE ASAP THANK YOU Buying a government bond is __________. A. Selling stock to the government B. Paying ones taxes using the bond format C. Lending money to the government D. Purchasing the opportunity to do business with the government Please select the best answer from the choices provided A B C D. (2x + 1) (x - 1) solve for X The Chief Executive Officers (CEOs) of three profitable listed companies discussed their companys dividend policies at a business lunch.Company A has deliberately paid no dividends for the last five years.Company B always pays a dividend of 50% of earnings after taxation.Company C maintains a low but constant dividend per share and offers regular scrip issues and shareholder concessions.Each CEO is convinced that his companys policy is maximising shareholders wealth.Required:Discuss the advantages and disadvantages of the alternative dividend policies of the three and the circumstances under which each CEO might be correct in his belief that his companys dividend policy is maximising shareholder wealth. State clearly any assumptions that you make and include credible references to substantiate your arguments. (10 marks) PLEASE HELP!!! I don't understand what I'm supposed to do... On Friday, 3/10 of the students were wearing white shirts and 5/12 of the students were wearing blue shirts. What fraction of the students were wearing either a white shirt or a blue shirt? I just need to drag the degrees to their corresponding parts attached (Angles in Circles) please help I dont which ones would be correct what are the groups located within developer tab? check all that apply.ControlsReferencesCodeProtect Add-InsMacros