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 1

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:


Related Questions

What must be done before you change the polarity on a welding machine?
ur answer

Answers

Answer:

Usually it can be changed by flipping a switch. If your machine does not have one, then you just need to exchange the cables to the electrode holder and ground clamp.

Explanation:

The things that must be done before you change the polarity on a welding machine are coarse and fine adjustment.

What is a welding machine?

The heated tool assembly, with two exposed surfaces, and two fixtures for holding the component parts to be welded. The tooling is for bringing the component parts into contact with the heated tool and bringing the molten joint surfaces together to form the weld. And displacement stops on the platen and holding fixtures make up a heated tool welding machine.

Polarity refers to the fact that the electrical circuit formed when you turn on the welder contains a negative and a positive pole. When welding, polarity is crucial, since the weld's strength and quality are affected by the choice of polarity.

Therefore, before changing the polarity of welding equipment, coarse and fine adjustments must be made.

To learn more about welding machines, refer to the link:

https://brainly.com/question/14272269

#SPJ2

Help this is very hard and I don't get it

Answers

Answer:

yes it is very hard you should find a reccomended doctor to aid in your situation. But in the meantime how about you give me that lil brainliest thingy :p

Steam is contained in a closed rigid container which has a volume of 2 initially the the pressure and the temperature is the remeraturedrops as a result of heat transfer to the surroundings. Determine
a) the temperature at which condensation first occurs, in °C,
b) the fraction of the total mass that has condensed when the pressure reaches 0.5 bar.
c) What is the volume, in m3, occupied by saturated liquid at the final state?

Answers

The given question is incomplete. The complete question is as follows.

Steam is contained in a closed rigid container with a volume of 1 m3. Initially, the pressure and temperature of the steam are 10 bar and 500°C, respectively. The temperature drops as a result of heat transfer to the surroundings. Determine

(a) the temperature at which condensation first occurs, in \(^{o}C\),

(b) the fraction of the total mass that has condensed when the pressure reaches 0.5 bar.

(c) What is the volume, in \(m^{3}\), occupied by saturated liquid at the final state?

Explanation:

Using the property tables

  \(T_{1} = 500^{o}C\),    \(P_{1}\) = 10 bar

  \(v_{1} = 0.354 m^{3}/kg\)

(a) During the process, specific volume remains constant.

  \(v_{g} = v_{1} = 0.354 m^{3}/kg\)

  T = \((150 - 160)^{o}C\)

Using inter-polation we get,

      T = \(154.71^{o}C\)

The temperature at which condensation first occurs is \(154.71^{o}C\).

(b) When the system will reach at state 3 according to the table at 0.5 bar then

  \(v_{f} = 1.030 \times 10^{-3} m^{3}/kg\)

  \(v_{g} = 3.24 m^{3} kg\)

Let us assume "x" be the gravity if stream

   \(v_{1} = v_{f} + x_{3}(v_{g} - v_{f})\)

   \(x_{3} = \frac{v_{1} - v_{f}}{v_{g} - v_{f}}\)

               = \(\frac{0.3540 - 0.00103}{3.240 - 0.00103}\)

               = 0.109

At state 3, the fraction of total mass condensed is as follows.

  \((1 - x_{5})\) = 1 -  0.109

                = 0.891

The fraction of the total mass that has condensed when the pressure reaches 0.5 bar is 0.891.

(c) Hence, total mass of the system is calculated as follows.

     m = \(\frac{v}{v_{1}}\)

         = \(\frac{1}{0.354}\)

         = 2.825 kg

Therefore, at final state the total volume occupied by saturated liquid is as follows.

     \(v_{ws} = m \times v_{f}\)

                 = \(2.825 \times 0.00103\)

                 = \(2.9 \times 10^{-3} m^{3}\)

The volume occupied by saturated liquid at the final state is \(2.9 \times 10^{-3} m^{3}\).

plssssssssssssss Alexi is writing a program which prompts users to enter their age. Which function should she use?


float()

int()

print()

string()

Answers

Answer:

int()

Explanation:

float() is using decimals, so that can't be it, like float(input( "how much does this cost?"))

print() is used to print something, not a user asking, like print("hello")

string() means like a whole, like string( I am good)

By elimination, int() is correct.

Hope this helps!

use the emu8086 to write a program for pushing AX seven times at the stack, check the stack pointer. and [hint : initialize with 8086H] .​

Answers

Answer:

I got the point

Explanation:

just chill out baby

Which of the following is true of the engineering method of separating costs? a. It is generally used to estimate the cost of activities and new products. b. It is sometimes called a time and motion study. c. It separates costs by performing a step-by-step analysis of various elements involved. d. All of these choices are correct.

Answers

The engineering method of separating costs is d. All of these choices are correct.

The engineering method of separating costs involves a step-by-step analysis of various elements involved in the production process to estimate the cost of activities and new products.

This method is sometimes referred to as a time and motion study. Therefore, options a, b, and c are all true statements about the engineering method of separating costs. In summary, the engineering method of separating costs is a detailed approach that involves breaking down the production process into individual elements to estimate the cost of activities and new products. This method is also sometimes referred to as a time and motion study. All of the choices provided in the question are correct statements about this method.

To know more about engineering method visit:

https://brainly.com/question/22009244

#SPJ11

A liquid with a specific gravity of 2.6 and a viscosity of 2.0 cP flows through a smooth pipe of unknown diameter, resulting in a pressure drop of 0.183 lb/in? for 1.73 mi. What is a pipe diameter in inches if the mass rate of flow is 7000 lb/h?

Answers

.......,.,.,.,.,.,,.,.,,.,.,.,.,.,.,.,,.,.,,.,,,.,,.,,.,.,.,.,,............,,,,,,’mmdjidvdhxxkf jkkk he in d

From the information, let us list the parameters given to solve for the diameter of the pipe.

Given that:

the specific gravity of the liquid (SG) = 2.6the density of the liquid = (S.G × density of water) = 2.6 × 1000 kg/m³

= 2600 kg/m³

Using the standard conversion rates:

The viscosity = 2.0 cP = 0.002 kg/m.sThe pressure drop ΔP = 0.183 lbf/in²

Since 1 lbf/in² = 6894.76 N/m²

The pressure drop ΔP = 0.183 lbf/in² = 1261.74 N/m²The length of the pipe = 1.73 mi = 2784.165 mMass flowrate = 7000 lb/h =  0.882 kg/s

From the given information, let's start by determining the volumetric flow rate of the liquid in the pipe:

\(\mathbf{The \ volumetric \ flow \ rate \ ( Q) = \dfrac{mass \ flow \ rate}{density \ of \ the \ liquid}}\)

\(\mathbf{Q = \dfrac{0.882 \ kg/s}{2600 \ kg/m^3}}\)

Q = 0.00034 m³/s

In a cylindrical flow pipe, using the formula for the pressure drop to estimated the pipe diameter, we have:

\(\mathsf{\dfrac{\Delta P}{\rho g}= \dfrac{8fLQ^2}{\pi^2gd^5}} --- (1)\)

where (f) can be computed as;

\(f = \dfrac{64}{\dfrac{\rho vd}{\mu}}\)

\(f = \dfrac{64}{\dfrac{\rho Qd}{A\mu}}\)

replacing the values from the above-listed parameters, we have:

\(f = \dfrac{64}{\dfrac{2600 \times 0.00034 \times d}{\dfrac{\pi}{4}(d)^2 \times 0.002}}\)

\(f = \dfrac{64}{2600 \times 0.00034 \times d} \times \dfrac{\dfrac{\pi}{4}(d)^2 \times 0.002}{1}\)

f = 0.1137d

From equation (1), Recall that:

\(\mathsf{\dfrac{\Delta P}{\rho g}= \dfrac{8fLQ^2}{\pi^2gd^5}}\)

\(\mathsf{\dfrac{\Delta P}{\rho }= \dfrac{8fLQ^2}{\pi^2d^5}}\)

Replacing the values, we have;

\(\mathsf{\dfrac{1261.74}{2600}= \dfrac{8\times 0.1173(d) \times (2784) \times (0.00034)^2}{\pi^2(d)^5}}\)

\(\mathsf{0.48528= \dfrac{2.966\times 10^{-5}}{(d)^4}}\)

\(\mathsf{d^4= \dfrac{2.966\times 10^{-5}}{0.48528}}\)

\(\mathsf{d^4= 6.11193538 \times 10^{-5}}\)

\(\mathbf{d = \sqrt[4]{ 6.11193538 \times 10^{-5}}}\)

d = 0.0884 m

d = 88.4 mm

since 1 mm = 0.0393701 inch

88.4 mm will be = 3.48 inches

Therefore, we can conclude that the diameter of the pipe = 3.48 inches

Learn more about volumetric flow rate here:

https://brainly.com/question/15119966?referrer=searchResults

in a typical heating/cooling curve, what is the slope of the line when a change of state is occurring? group of answer choices slope 1 positive slope none of the above negative slope'

Answers

Slope 1 is  the slope of the line when a change of state is occurring.

The slopes of the slanted strains represent the unique warmth potential. The sharper the slope, the smaller the unique warmth potential of the substance is. This is extensive due to the fact the sharper the slope, the greater fast the temperature rises while the substance is heated. A slope of one approach it rises simply as rapid because it is going forward. A terrible slope approach that variables are negatively related; that is, while x increases, y decreases, and while x decreases, y increases. If the graph of a line rises from left to proper, the slope is positive. If the graph of the road falls from left to proper the slope is terrible.

Learn more about cooling curve at https://brainly.com/question/12505139

#SPJ4

An asbestos pad is square in cross section, measuring 5 cm on a side at its small end, increasing linearly to 10 cm on a side at the large end. The pad is 15 cm high. If the small end is held at 600 K and the large end at 300 K, what heat‐flow rate will be obtained if the four sides are insulated? Assume one‐dimensional heat conduction. The thermal conductivity of asbestos may be taken as 0.173 W/m⋅K.

Answers

0.168 W/m•k is the answer

how should you use the predict step of the ipde process while driving on city streets?

Answers

Answer:

By predicting possible points of conflict early

Explanation:

You should use the predict step of the IPDE process while driving on city streets by predicting possible points of conflict early. An advantage of keeping a 3 second following distance in city traffic is that you have a cushion from the vehicle in front of you. What do you do when you apply the IPDE process?

While driving on city streets, the predict stage of the IPDE process, Prepare yourself by anticipating potential points of contention beforehand.

The letters IPDE stand for "Identify, Predict, Decide, and Execute." This is how defensive driving principles and the difficulties of visual perception in traffic are put into practice step-by-step. Our daily routines include driving so frequently that we frequently fall asleep behind the wheel. IPDE mandates that when operating a vehicle, the driver use a strategic approach to action. Within the driving environment, I—Identify—Locate probable risks.

The driver should do a thorough inspection of the immediate environment for potential impediments and deteriorating weather conditions as the first element of the IDPE process. To preserve safety, it's essential to recognize potential threats, which can range from advancing bikers to a stopped car parked curbside.

Learn more about  IPDE process here:

https://brainly.com/question/2624496

#SPJ4

The effective resistance of parallel resistors is always _____ than the lowest individual value.

a) more
b) less
c) no different than

Answers

Answer:

A

Explanation:

Answer:

the answer is a

Explanation:

it is a because thats what the answer is

"Discuss two flooring options and the factors one should consider
in selecting them as well as the types of spaces for which each is
best suited.
Please answer each question with a well-developed parag"

Answers

Two flooring options to consider are hardwood flooring and carpeting. Hardwood flooring offers durability, easy maintenance, and a timeless aesthetic. Carpeting provides warmth, comfort, and sound insulation.

When selecting flooring options, several factors should be considered. For hardwood flooring, durability is a significant factor. Hardwood is known for its long-lasting nature and can withstand high foot traffic areas. It is an ideal choice for spaces such as living rooms, dining rooms, and hallways. Additionally, hardwood flooring is easy to clean, making it suitable for individuals with allergies or asthma.

Carpeting, on the other hand, offers a softer and warmer feel underfoot, making it a popular choice for bedrooms and cozy spaces like family rooms. It provides insulation, both thermal and acoustic, creating a quieter and more comfortable environment. However, carpeting requires regular vacuuming and may be prone to staining and wear in high-traffic areas.

Other factors to consider when choosing between hardwood flooring and carpeting include personal preferences, maintenance requirements, budget, and the overall style of the space. It's essential to assess the needs of the specific area where the flooring will be installed. For example, areas with a higher risk of spills or moisture, such as kitchens and bathrooms, may not be suitable for carpeting. Overall, understanding the advantages and limitations of each flooring option will help in selecting the most appropriate choice for different types of spaces.

Learn more about maintenance here:

brainly.com/question/32165218

#SPJ11

A horizontal force P is applied to a 130 kN box resting on a 33 incline. The line of action of P passes through the center of gravity of the box. The box is 5m wide x 5m tall, and the coefficient of static friction between the box and the surface is u=0.15. Determine the smallest magnitude of the force P that will cause the box to slip or tip first. Specify what will happen first, slipping or tipping.

A horizontal force P is applied to a 130 kN box resting on a 33 incline. The line of action of P passes

Answers

Answer:

SECTION LEARNING OBJECTIVES

By the end of this section, you will be able to do the following:

Distinguish between static friction and kinetic friction

Solve problems involving inclined planes

Section Key Terms

kinetic friction static friction

Static Friction and Kinetic Friction

Recall from the previous chapter that friction is a force that opposes motion, and is around us all the time. Friction allows us to move, which you have discovered if you have ever tried to walk on ice.

There are different types of friction—kinetic and static. Kinetic friction acts on an object in motion, while static friction acts on an object or system at rest. The maximum static friction is usually greater than the kinetic friction between the objects.

Imagine, for example, trying to slide a heavy crate across a concrete floor. You may push harder and harder on the crate and not move it at all. This means that the static friction responds to what you do—it increases to be equal to and in the opposite direction of your push. But if you finally push hard enough, the crate seems to slip suddenly and starts to move. Once in motion, it is easier to keep it in motion than it was to get it started because the kinetic friction force is less than the static friction force. If you were to add mass to the crate, (for example, by placing a box on top of it) you would need to push even harder to get it started and also to keep it moving. If, on the other hand, you oiled the concrete you would find it easier to get the crate started and keep it going.

Figure 5.33 shows how friction occurs at the interface between two objects. Magnifying these surfaces shows that they are rough on the microscopic level. So when you push to get an object moving (in this case, a crate), you must raise the object until it can skip along with just the tips of the surface hitting, break off the points, or do both. The harder the surfaces are pushed together (such as if another box is placed on the crate), the more force is needed to move them.

4.11 LAB: Mileage tracker for a runner Given the MileageTrackerNode class, complete main() in the MileageTrackerLinkedList class to insert nodes into a linked list (using the insertAfter() method). The first user-input value is the number of nodes in the linked list. Use the printNodeData() method to print the entire linked list. DO NOT print the dummy head node. Ex. If the input is:

Answers

Using the knowledge of computational language in C++ it is possible to write a code that user-input value is the number of nodes in the linked list

Writting the code:

#include "MileageTrackerNode.h"

#include <string>

#include <iostream>

using namespace std;

int main(int argc, char *argv[]) {

   // References for MileageTrackerNode objects

   MileageTrackerNode *headNode;

   MileageTrackerNode *currNode;

   MileageTrackerNode *lastNode;

   double miles;

   string date;

   

   // Front of nodes list

   headNode = new MileageTrackerNode();

   lastNode = headNode;

   // Read in the number of nodes

   int no_nodes;

   cin >> no_nodes;

   // For the read in number of nodes, read in data and insert into the linked list

   MileageTrackerNode *tail = headNode;

   for (int i = 0; i < no_nodes; ++i) {

       double milesInit;

       cin >> milesInit;

       cin >> date;

       MileageTrackerNode *newNode = new MileageTrackerNode(milesInit, date, nullptr);

       tail->InsertAfter(newNode);

       tail = newNode;

   }

   // Call the PrintNodeData() method to print the entire linked list

   MileageTrackerNode *cur = headNode->GetNext();

   while (cur != nullptr) {

       cur->PrintNodeData();

       cur = cur->GetNext();

   }

   // MileageTrackerNode Destructor deletes all following nodes

   delete headNode;

}

See more about C++ at brainly.com/question/12975450

#SPJ1

4.11 LAB: Mileage tracker for a runner Given the MileageTrackerNode class, complete main() in the MileageTrackerLinkedList

A 200 g ball is tied to a string. It is pulled to an angle of 8 00degree and released to swing as a pendulum. A student with a stopwatch finds that 10 oscillations take 12.0 s. How long is the string?

Answers

The length of the string is approximately 0.50 m.

To find the length of the string, we can use the formula T = 2π√(L/g), where T is the period of the oscillations, L is the length of the string, and g is the acceleration due to gravity.
First, we need to find the period of one oscillation. The student found that 10 oscillations take 12.0 s, so the period of one oscillation is 1.2 s (12.0 s ÷ 10).
Next, we can use the formula T = 2π√(L/g) and solve for L. Rearranging the formula, we get L = g(T/2π)^2.
We know that g is approximately 9.81 m/s^2 and T is 1.2 s, so plugging in those values we get:
L = 9.81 m/s^2 × (1.2 s/2π)^2
L ≈ 0.50 m
To know more about oscillations visit:

https://brainly.com/question/30111348

#SPJ11

If the resistance reading on a DMM'S meter face is to 22.5 ohms in the range selector switch is set to R X 100 range, what is the actual measure resistance of the circuit?

Answers

Answer:

The answer is 2.25 kΩ

Explanation:

Solution

Given that:

The resistance reading on a DMM'S meter face = 22.5 ohms

The range selector switch = R * 100 range,

We now have to find the actual measure resistance of the circuit which is given below:

The actual measured resistance of the circuit is=R * 100

= 22.5 * 100

=2.25 kΩ

Hence the measured resistance of the circuit is 2.25 kΩ

What is the approximate average power output of a well-designed modern turbine in Des Moines, Iowa with a 10 m2 swept area and 50 m hub height

Answers

The approximate average power output is mathematically given as

P=1097.6w

What is the approximate average power output?

Question Parameters:

Iowa with a 10 m2 swept area and 50 m hub height

Assume 80% of the Betz limit, 80% conversion efficiency, and air density of 1.0 kg/m3. Wind speed is 7 m/s2

Generally, the equation for the average output power  is mathematically given as

\(P=0.5 \phi BAu^3*n\\\)

Where

B= Benz coefficient

n=0.8

Therefore

P=0.5*1*0.8*10*7^3*0.8

P=1097.6w

For more information on Power

https://brainly.com/question/10203153

Complete Question

What is the approximate average power output of a well-designed modern turbine in Des Moines, Iowa with a 10 m2 swept area and 50 m hub height? Assume 80% of the Betz limit, 80% conversion efficiency, and air density of 1.0 kg/m3. Wind speed is 7 m/s2

The figure below appeared three heat treatments processes of steel (A, B and C),

select only One and answer the following:

1- Named the heat treatment process.

2- The temperature range of heating process.

3- The cooling process method.

4- The aims of process.​

Answers

Answer:

b

Explanation:

Two stepped bar is supported at both ends.At the join point of two segments,the force F is applied(downwards).Calculate reactive forces R1 and R3 at the supports.What is value of absolute maximal stress?
Choose one answer nearest your result.

given= d1=10mm d2=20mm L1=20mm L2=10mm E=200GPa F=20kN

Two stepped bar is supported at both ends.At the join point of two segments,the force F is applied(downwards).Calculate

Answers

Answer:

F=200kN

Explanation:

Draw the ipo chart for a program that reads a number from the user and display the square of that number ???Anyone please

Answers

Answer:

See attachment for chart

Explanation:

The IPO chart implements he following algorithm

The expressions in bracket are typical examples

Input

Input Number (5, 4.2 or -1.2) --- This will be passed to the Processing module

Processing

Assign variable to the input number (x)

Calculate the square (x = 5 * 5)

Display the result (25) ----> This will be passed to the output module

Output

Display 25

Draw the ipo chart for a program that reads a number from the user and display the square of that number

The following data refers to a proposed hydroelectric plant, Installed Capacity = 60MW Net head = 20m Number of units = 3 Normal operating peed (Synchronous to generator) = 750rpm Draft tube efficiency = 90% Maximum K.E of water at exit of draft tube = 10% of K.E of water from runner Determine type of turbines to be selected, specific speed and size of the turbines Starting from first principle, determine location of centerline of turbine with respect vater level. Check with Thoma criteria, if critical cavitations coefficient is calculatec 2 N. S 100 essure head = 10m of water, vapour pressure ​

Answers

Hydroelectric plant turbine selection.

Based on the provided data, we can use the following steps to determine the type of turbines, specific speed, and size of the turbines, as well as the location of the centerline of the turbine with respect to the water level and check for cavitation using Thoma's criteria.

Step 1: Determine the flow rate

The flow rate can be calculated using the formula:

Q = P / (ρgh)

where Q is the flow rate, P is the installed capacity (60 MW), ρ is the density of water (1000 kg/m³), g is the acceleration due to gravity (9.81 m/s²), and h is the net head (20 m).

Plugging in the values, we get:

Q = 60,000,000 / (1000 x 9.81 x 20) = 306.1 m³/s

Step 2: Determine the specific speed

The specific speed (Ns) can be calculated using the formula:

Ns = (n √Q) / (H)^(3/4)

where n is the rotational speed (in revolutions per minute), Q is the flow rate (in cubic meters per second), and H is the net head (in meters).

Plugging in the values, we get:

Ns = (750 x √306.1) / (20)^(3/4) = 64.5

Step 3: Determine the type of turbine

Based on the specific speed, we can determine the type of turbine using the following classification:

Francis turbine: Ns = 10 to 100

Propeller turbine: Ns = 100 to 1,000

Kaplan turbine: Ns = 1,000 to 10,000

Pelton turbine: Ns = 10,000 to 100,000

Since the specific speed falls in the range of 10 to 100, a Francis turbine is suitable for this application.

Step 4: Determine the size of the turbine

The size of the turbine can be determined based on the flow rate and the specific speed. The Francis turbine can be designed to have an efficiency of around 90%, based on the provided draft tube efficiency. Therefore, the power output can be calculated as:

Pout = η x Pin

where Pout is the power output, η is the efficiency (0.9), and Pin is the power input (60 MW).

Plugging in the values, we get:

Pout = 0.9 x 60,000,000 = 54,000,000 W

The power output can also be calculated as:

Pout = ρQgHη

where ρ is the density of water (1000 kg/m³), Q is the flow rate (306.1 m³/s), g is the acceleration due to gravity (9.81 m/s²), H is the net head (20 m), and η is the efficiency (0.9).

Plugging in the values, we get:

Pout = 1000 x 306.1 x 9.81 x 20 x 0.9 = 54,000,000 W

The size of each turbine can be calculated as follows:

Pout = ωT x (π/30) x D^2 x L x ρ/4

where ωT is the angular velocity of the turbine, D is the diameter of the turbine, L is the length of the turbine, and ρ is the density of water.

We can assume a specific speed of 65 for the Francis turbine and use empirical equations to determine the diameter and length of the turbine. For a specific speed of 65, the diameter and length

ChatGPT

what is the current that will flow through a 10k potentiometer being used as a voltage divider with a 5v input?

Answers

Explanation:

The current flowing through a potentiometer used as a voltage divider is given by:

I = V / R

where:

I = current (A)

V = voltage across the potentiometer (V)

R = resistance of the potentiometer (Ω)

Since a potentiometer is a variable resistor, the voltage across it, V, can be determined by the position of the wiper on the resistive element and the input voltage.

Let's assume the wiper is positioned to divide the voltage in half, so the voltage across the potentiometer is V = 5V / 2 = 2.5V.

The resistance of the 10k potentiometer can be taken as its maximum resistance, R = 10 kΩ = 10,000 Ω.

Plugging in the values:

I = 2.5V / 10,000Ω = 0.25 mA

So the current flowing through the 10k potentiometer when used as a voltage divider with a 5V input is 0.25 mA.

The voltage and current at the input to a load circuit are given by v(t) = 100 cos(377t - 30°) V, i(t) = 5 cos(377t + 30°) A. The load power factor is X Selected Answer: a. pf = 0.5 lagging Answers: a. pf = 0.5 lagging b. pf = 0.5 leading c. pf=1 lagging d. pf = 2 leading Question 12 The voltage and current at the input to a load circuit are given by Vrms 100275º V, Irms=2215° A. The average absorbed power is Selected Answer: b. Pay 50 W Answers a. Pay = 100 W b. Pay = 50 W c. Pav=0 d. Pay = 200 W

Answers

1) Option A. The Load Power factor (pf) is 0.5 lagging.

2) Option B. The average absorbed power is 50 W.


1. The load power factor can be determined using the given voltage and current values. The angle between the voltage and current phasors is given by

φ = θv - θi = -30° - 30° = -60°

The load power factor can be calculated as

pf = cos(φ) = cos(-60°) = 0.5 lagging

Therefore, the answer is option A, pf = 0.5 lagging.

2.The average absorbed power can be calculated using the given root mean square (RMS) values of voltage and current as

Pay = Vrms × Irms × cos(θ)

where θ is the phase angle between the voltage and current phasors. The phase angle is given by

θ = θv - θi = 275° - 15° = 260°

Therefore, the average absorbed power is

Pay = 100 × 2 × cos(260°) = 50 W

Therefore, the answer is option B, Pay = 50 W.

Learn more about "load power factor" at: https://brainly.com/question/26147554

#SPJ11

Which of the following is an area in which many cities, states, and nations establish minimum legislation?

zoning
compliance
sustainability
waste management

Answers

Sustainability is an area in which many cities, states, and nations establish minimum legislation.

Thus, The capacity to support or continue a process over time is known as sustainability. Economic, environmental, and social sustainability are the three main principles that are frequently separated.

Governments and corporations alike have made commitments to pursue sustainable objectives like lowering their environmental footprints and preserving resources. Some investors have taken a proactive stance in favour of sustainability investments, also referred to as "green investments."

Some businesses have been charged with "greenwashing," the act of deceiving the public to make a company appear more environmentally friendly than it actually is.

Thus, Sustainability is an area in which many cities, states, and nations establish minimum legislation.

Learn more about Sustainablity, refer to the link:

https://brainly.com/question/30244824

#SPJ1

Jay decides to walk home from school today. He lives 3 miles from school and can walk home in 45 minutes. At what rate is Jay traveling?

Answers

Answer: jay is traveling at 4 miles per hour :)

Explanation:


When the same type of arc is used in more than one place, what note is included with the dimension?

Answers

Answer:

Numerals

Dimensions

Extension Lines

Arrowheads

Dimension Figures

Isometric Dimensioning

Orthographic Dimensioning

If a drawing is to be complete, so that the object represented by the drawing can be made as intended by the designer, it must tell two complete stories. It tells this with views, which describe the shape of the object, and with dimensions and notes, which give sizes and other information needed to make the object.

Therefore, your next step is to learn the basics of dimensioning. In that way, you will understand not only how to interpret a drawing to get the information you need, but also how to dimension your sketches so that they can be used to communicate size information to others.

Numerals

It may seem a bit basic, but a few exercises with the shapes of numbers come before dimensioning. The reason for such a review is simply that incorrectly or carelessly made numbers on a drawing or sketch can easily be misinterpreted by someone on the job. That can be costly.

Therefore, the study of numbers forms is justified.

The number forms presented here have been determined to be the most legible, and are used by industry nationwide. The United States standardized 1/8” vertical

Explanation:

It is best to organize dimensions for easy reading. The drawing should have constant distances between dimension lines. If clarity cannot be achieved, avoid dimensioning inside objects or having the dimension line touch them.

What different notes in the dimension?

There are two categories of dimensions: size dimensions and location dimensions.

The measures for the size of features and objects are provided by size dimensions. To locate features and objects, location dimensions are utilized. Drawings may also contain notes.

A measurement is referred to as a Size Dimension if it represents an object's size. A measurement is referred to as a Location Dimension if it represents an object's location.

This method is known as the Unidirectional Method if the dimension is written in the same direction throughout the entire drawing.

Therefore, When the same type of arc is used in more than one place,  numerals  note is included with the dimension.

Learn more about dimension here:

https://brainly.com/question/28688567

#SPJ2

what are advantages of using sinusoidal Voltages​

Answers

Answer:

The advantages of using a pure sine wave for your appliances and machinery are as follows: Reduces electrical noise in your machinery.

translates to no TV lines and no sound system hum.

Cooking in microwaves is quicker.

Explanation:

The smoothest signal is a sine wave, and sine waves are the basis of all functions.

Every other continuous periodic function is a basis function, which means that it can be described in terms of sines and cosines.

For instance, using the Fourier series, I can describe the fundamental Sinusoidal frequency and its multiples in terms of the triangle and square waves.

Consider a 2-shell-passes and 8-tube-passes shell-and-tube heat exchanger. What is the primary reason for using many tube passes

Answers

Answer:

See explanation

Explanation:

Solution:-

- The shell and tube heat exchanger are designated by the order of tube and shell passes.

- A single tube pass: The fluid enters from inlet, exchange of heat, the fluid exits.

- A multiple tube pass: The fluid enters from inlet, exchange of heat, U bend of the fluid, exchange of heat, .... ( nth order of pass ), and then exits.

- By increasing the number of passes we have increased the "retention time" of a specific volume of tube fluid; hence, providing sufficient time for the fluid to exchange heat with the shell fluid.

- By making more U-turns we are allowing greater length for the fluid flow to develop with " constriction and turns " into turbulence. This turbulence usually at the final passes allows mixing of fluid and increases the heat transfer coefficient by:

                                U ∝ v^( 0.8 )    .... ( turbulence )

- The higher the velocity of the fluids the greater the heat transfer coefficient. The increase in the heat transfer coefficient will allow less heat energy carried by either of the fluids to be wasted ; hence, reduced losses.

Thereby, increases the thermal efficiency of the heat exchanger ( higher NTU units ).

Write the different professions and human resources related to engineering and expalin any two of them?

Answers

Answer:

some of the professions and human resource related to engineering are:

Aerospace engineerAgricultural engineer Electrical engineer computer engineerproject Manger construction site engineer/supervisor

Aerospace engineering involves the study, design and development of spacecrafts using Core science principles.

Electrical engineering involves the study and application of core science principles especially physics and mathematics into providing Electrical related solutions

Explanation:

Engineering is a major branch of applied science. In general Engineering is concerned with the design and building of engines ( i.e. application of scientific/science facts   )

some of the professions and human resource related to engineering are:

Aerospace engineerAgricultural engineer Electrical engineer computer engineerproject Manger construction site engineer/supervisor

Aerospace engineering involves the study, design and development of spacecrafts using Core science principles.

Electrical engineering involves the study and application of core science principles especially physics and mathematics into providing Electrical related solutions

How to make coconut harder

Answers

Now hear me out: Steel-Coated Coconuts

If you want to make a coconut harder you can take that shell up to heights its natural husk never even knew it could reach! Combining the raw, brown scraglley-ness with the tough, durable properties of steel would most definitely make a coconut harder.

Valid answer? Probably not.

Thank you for coming to TedTalk :))

Make it out of metal
Other Questions
Explain why insider movements often speak of implanting the gospel rather than planting churches. An investor has a portfolio containing 60% equities, 5% debt instruments, and 35% options and futures. Which of the following would best describe this investor's investment style?A)ConservativeB)AggressiveC)ModerateD)Moderate/Aggressive Which classification of teeth is when they are chisel shaped and exert a shearing action used in biting Derek receives a perpetuity. It has annual payments with the first payment in exactly eight years. The first payment is $10,000, the secont payment is $15,000, and then the payments alternate between $10,000 and $15,000 until there have been a total of thirty payments. After that, the payments are all $10,000. Find the present value of this perpetuity if the effective interest rate is 4%. There is a connection between changes in ________ with various mood and anxiety disorders. An 8 year old girl is in cardiac arrest. Select the images that correctly depict how to performCPR and use an AED on this guest.EFPROGRESSCCELLISEDUCATION-SERVICESUBMIT When an orgamism is blank a cellular respiration slows. What are some disadvantages of privilege What happens when an empire falls We have been learning about travel. Now, youll discuss a trip that you will take and share your thoughts with others. Make sure you state your thoughts using the future tense as much as possible. Use the conditional tense at some point as well.Remember to write all of your posts in Spanish.Prompt:Where will you go on your trip?What kinds of things will you see while you're there?What items will you bring with you?How will you be traveling to your destination?What things would you do on your vacation if you didn't have to worry about money?Directions Someone please help!!! How does this scene help to explain why Alice thinks that "very few things indeed were really impossible"? Use specific information and lines from the text to write your answer.Suddenly she came upon a little three-legged table, all made of solid glass; there was nothing on it except a tiny golden key, and Alice's first thought was that it might belong to one of the doors of the hall; but, alas! either the locks were too large, or the key was too small, but at any rate it would not open any of them. However, on the second time round, she came upon a low curtain she had not noticed before, and behind it was a little door about fifteen inches high: she tried the little golden key in the lock, and to her great delight it fitted! solve the equation. (find only the real solutions. enter your answers as a comma-separated list.) 5x2 10x 4 The gym has a ratio of 7 basketballs for every 6 soccer balls. There are 24 soccer balls. How many basketballs are in the gym? What does the acronym BOD stands for? Find the value of x. Describe the weapons used or the equipment (tanks, planes, ships, subs, artillery, snipers) that was used in the Battle of Britain. Study Survey: What questions do you have for me about the test/quiz? * A car driving at 10.0 m/s southward accelerates at 4.11 m/s2 southward for 7.25 s. what is the car's speed after this amount of time? Tamlin is learning to become a carpenter. She gets paid $12 per hour for building shelves and $14 per hour for building cabinets. She can work a maximum of 40 hours per week, and she would like to earn at least $250 this week. Lets represent the number of hours she spends building shelves and c represent the number of hours she spends building cabinets. Which system of inequalities could be used to represent the given conditions?