What type of social engineering targets particular?.

Answers

Answer 1

Social engineering is a technique used by cybercriminals to manipulate people into divulging their confidential data. Social engineers exploit the human psyche and their behavior to get access to sensitive information. Social engineering targets are specific, and they use various tactics to achieve their goals.

Several different types of social engineering attacks target specific groups of individuals. Below are some types of social engineering attacks.Phishing is a type of social engineering attack that is widely used by attackers. It is an attempt to trick the victim into clicking on a link that leads to a fraudulent website. The attacker can then steal the user's confidential data, such as login credentials, banking information, or personal data.Spear phishingSpear phishing is a more sophisticated type of social engineering attack. It is specifically designed to target particular individuals or groups. Spear phishing attempts to gain access to sensitive data through targeted emails, social media messages, or other communication channels. Attackers often use personal information or context-specific information to create a more convincing and personalized message.TailgatingTailgating is another type of social engineering attack that targets a particular individual or group. It occurs when a cybercriminal gains access to a restricted area by following someone who has authorized access. The attacker pretends to be an employee or a delivery person, and they wait outside the restricted area to follow an authorized employee as they enter the restricted area.BaitingBaiting is another type of social engineering attack that targets a particular individual. It occurs when an attacker leaves a physical device, such as a USB drive, in a public place, such as a parking lot or office building. The device is labeled with something like "Payroll Information," "Confidential," or another similar title. If the device is picked up and plugged into a computer, it can install malware onto the system. Malware can then be used to steal sensitive information. In conclusion, social engineering attacks use various tactics and techniques to target specific individuals or groups. These attacks can be difficult to detect, but by being aware of the types of social engineering attacks, individuals can better protect themselves from these types of attacks.

To know more about Social engineering visit:

https://brainly.com/question/31021547

#SPJ11


Related Questions

list the components of a typical Foundation drainage system and their functions.​

Answers

Explanation:

In this series, the professionals at the B.O.L.D. Company will take you through the process of building a custom home in the Greater Cincinnati – Northern Kentucky area. From plan and lot selection, to mortgage approval, to the actual construction, we’ll take you behind-the-scenes each week for an inside look at a different part of the process.

During which step of a free-radical chain-growth polymerization does the polymer actually grow or chain extend?.

Answers

During  propagation step of a free-radical chain-growth polymerization does the polymer actually grow or chain extend.

What is radical chain-growth polymerization?

The process of free-radical chain growth in polymers. Common free-radical reactions include polymerizations using free-radical mechanisms. The formation of radicals is the initiation, the development of the products is the propagation, and the ending of the free-radical chain reactions is the termination.

What distinguishes step growth polymerization from chain growth polymerization?

The polymer chain in chain growth always expands one monomer at a time. The polymer chain doubles with each step of step development. The polymer chain's rate of expansion is drastically different in these two situations as a result. Every coupling step causes chain growth, which causes the chain length to gradually expand.

Learn more about radical chain-growth polymerization

brainly.com/question/1033191

#SPJ4

Briefly discuss the principle forms of communication that might be utilized in the construction industry?

Answers

Answer:

xcvjchjcnjkkhjmklk heyyyy biiiiiiiittcccchhh

What are the disadvantages of Mechanical Systems

Answers

Mechanical systems have some limitations which can pose challenges in terms of efficiency, maintenance and durability.

What are the specific drawbacks of mechanical systems?

Mechanical systems have inherent disadvantages as they tend to be less energy-efficient compared to newer technologies because they rely on mechanical processes that may generate friction and heat, leading to energy loss.

This systems require regular maintenance to ensure they continue to operate effectively and any malfunction can result in significant downtime and repair costs. They are also prone to wear and tear over time which can lead to reduced performance.

Read more about Mechanical Systems

brainly.com/question/28154924

#SPJ1

One kmole of gas mixture at a total pressure of 250 kPa and 303 K contains 10% CH4, 30% C2H6, and 60% H2 by volume. The absolute velocities of each species are -10 m/s, -5 m/s, and 15 m/s, respectively, all in the direction of the zaxis. a. Determine the molar average velocity, Umol for the mixture. 6.5 m/s b. Evaluate the four fluxes: JCH4-mol, NCH4-mol

Answers

Answer:

hi its very easy to say tgat i know this answer very so my friend please give me free points bro

Which allows us to complete an implication if its condition is true. An especially

important reasoning pattern is the unit resolution rule:

Answers

Answer:

True

Explanation:

Name me brainiest

An implication is the compound statement of the form “if p, then q.” It is denoted p⇒q, which is read as “p implies q.” It is false only when p is true and q is false, and is true in all other situations.

14. The top plate of the bearing partition
I
a. laps the plate of the exterior wall.
b. is a single member.
c. butts the top plate of the exterior wall.
d. is applied after the ceiling joists are
installed.

Answers

Answer:

d. is applied after the ceiling joists are

installed.

coal fire burning at 1100 k delivers heat energy to a reservoir at 500 k. Find maximum efficiency.

Answers

Answer:

55%

Explanation:

hot reservoir = 1100 K

cold reservoir = 500 K

This is a Carnot system

For a Carnot system, maximum efficicency of the system is given as

Eff = 1 - \(\frac{Tc}{Th}\)

where Tc = temperature of cold reservoir = 500K

Th = temperature of hot reservoir = 1100 K

Eff = 1 - \(\frac{500}{1100}\)

Eff = 1 - 0.45 = 0.55 or 55%

In which type of operations does lean production work best? check all that apply.

Answers

Lean production works best with standardized and repeatable processes. Lean production is a manufacturing technique that frequently aims to cut down on wait times for both suppliers' and customers' .

Lean manufacturing seeks to improve processes so that they use less energy, time, and resources overall. For some businesses than others, lean tools may be a better fit. But among the most helpful lean tools are Kaizen, 5S, Kanban, Value Stream Mapping, and Focus PDCA. Value, the value stream, flow, pull, and perfection are the five cornerstones of lean manufacturing, respectively. These are now the cornerstones on which lean is implemented. 1. Value: Value is established from the viewpoint of the customer and relates to the price point at which they are willing to purchase goods or services. Lean production is a manufacturing strategy that frequently aims to cut down on wait times for both suppliers' and customers' responses as well as those inside the manufacturing machine.

Learn more about manufacturing here:

https://brainly.com/question/13740503

#SPJ4

Write the definition of a function isPositive, that receives an integer parameter and returns true if the parameter is positive, and false otherwise.

So, if the parameter's value is 7 or 803 or 141 the function returns true. But if the parameter's value is -22 or -57, or 0, the function returns false.

(C++)

Answers

The function isPositive is a boolean function that takes an integer parameter In both cases, the function returns true for any positive integer and false for any non-positive integer (zero or negative).

It checks if the integer is greater than zero, and if it is, it returns true. If the integer is less than or equal to zero, it returns false. Here's an example implementation in C++: bool isPositive(int num) {    if(num > 0) { return true; else { return false.


Note that the function only checks for positive integers and does not include zero. If you want to include zero as a positive integer, you can modify the function as follows: bool is Positive (int  num)    if(num >= 0) { return true else  return false}.

To know more about function visit:

https://brainly.com/question/17216645

#SPJ11

This might count as engineering, I'm not sure as this is IT



An ordered collection of data elements stored and accessed in a program is called what?
Group of answer choices

Variables

List

Locale

Parameters

Answers

Answer:

10.5

Explanation:

Convert to an equation for example P%* X=Y

P is 7.5% X is 140, so the equation Is 7.5 percent * 14= Y

convert 7.5% Into a decimal by removing the percent sign and deviding by 7.5/100= 0.075

Substitute 0.075 for 7.5% in the equation: 7.5%*140=Y becomes 0.075*140= 10.5

Kevin fixes trucks as a job. The engine is oily. Which set set of equipment should Kevin use to fix the truck?

Answers

Answer:

A hammer and a wrench

Explanation:

1. Describe an occasion in which an explanatory sketch would be used.
the end user how

Answers

Answer:

building a bridge

Explanation:

you would have to sketch ideas to see what the bridge would look like and you need to know what to add to it to enhance the percentage of it working. if you sketch it you would have an idea of the process also

Building a bridge is an occasion in which an explanatory sketch would be used.

What is meant by explanatory sketch ?

Sketches of explanations are created to demonstrate form, structure, and function. They accurately and objectively communicate a design, placing more emphasis on explanation than pitch. Outside of the design team, explanation sketches must be understandable.

Exploratory sketches, often referred to as thinking drawings, are a type of personal communication that frequently serve as the starting point for brand-new product concepts.

During a brainstorming session or for personal usage in a design notebook, these quick sketches are meant to quickly capture ideas. Exploratory research aims to study the important aspects of a topic that hasn't gotten much attention.

Thus, it is Building a bridge.

For more details about explanatory sketch, click here:

https://brainly.com/question/13673165

#SPJ2

A 13 kg rock sits on a spring with a spring constant of 23,000 N/m. The spring has a natural length of 1.2 meters.
a. If the spring is oriented horizontally, how much must the spring be compressed so that the rock will be traveling at 35 mph when it leaves contact with the spring?
b. If the spring is oriented vertically, how high will the rock get above the ground if the spring is compressed by 0.5 meters before the rock is released from a resting position?
c. If the rock is dropped vertically onto the spring (with the bottom of the spring on the ground) from a height of 14 meters above ground, how far will the spring compress before the rock stops moving? This is harder than it first appears and you should end up solving a quadratic equation.

Answers

a. To find the compression of the spring needed to launch the rock horizontally at 35 mph, we can use conservation of energy. The potential energy stored in the compressed spring is equal to the kinetic energy of the rock when it leaves the spring:

1/2 k x^2 = 1/2 m v^2

where k is the spring constant, x is the compression distance, m is the mass of the rock, and v is the velocity of the rock.

Converting the velocity to meters per second:

35 mph = 15.6 m/s

Plugging in the values and solving for x:

1/2 (23,000 N/m) x^2 = 1/2 (13 kg) (15.6 m/s)^2

x = sqrt[(13 kg) (15.6 m/s)^2 / (23,000 N/m)] = 0.263 m

Therefore, the spring must be compressed by 0.263 meters.

How high will the rock get above the ground if the spring is compressed by 0.5 meters before the rock is released from a resting position?

b. To find the maximum height the rock will reach when the spring is oriented vertically, we can again use conservation of energy. The potential energy stored in the compressed spring is converted into gravitational potential energy of the rock when it leaves the spring:

1/2 k x^2 = m g h

where g is the acceleration due to gravity and h is the maximum height reached by the rock.

Plugging in the values and solving for h:

1/2 (23,000 N/m) (0.5 m)^2 = (13 kg) (9.8 m/s^2) h

h = (1/2) (23,000 N/m) (0.5 m)^2 / (13 kg) (9.8 m/s^2) = 0.605 m

Therefore, the rock will reach a height of 0.605 meters above the ground.

c. To find the compression distance when the rock is dropped onto the spring from a height of 14 meters, we need to consider both the potential energy of the rock and the energy absorbed by the spring. When the rock hits the spring, it will come to a stop, so all of its initial potential energy will be converted into potential energy stored in the compressed spring:

m g h = 1/2 k x^2

where h is the initial height of the rock and x is the compression distance of the spring.

Plugging in the values and solving for x, we get a quadratic equation:

1/2 (23,000 N/m) x^2 - (13 kg) (9.8 m/s^2) (14 m) = 0

Simplifying and solving for x using the quadratic formula:

x = sqrt[(13 kg) (9.8 m/s^2) (14 m) / (23,000 N/m)] = 0.473 m

Therefore, the spring will compress by 0.473 meters before the rock comes to a stop.

Learn more about conservation of energy from

https://brainly.com/question/13105130

#SPJ1

a. To find the compression of the spring needed to launch the rock horizontally at 35 mph, we can use conservation of energy. The potential energy stored in the compressed spring is equal to the kinetic energy of the rock when it leaves the spring:

1/2 k x^2 = 1/2 m v^2

where k is the spring constant, x is the compression distance, m is the mass of the rock, and v is the velocity of the rock.

Converting the velocity to meters per second:

35 mph = 15.6 m/s

Plugging in the values and solving for x:

1/2 (23,000 N/m) x^2 = 1/2 (13 kg) (15.6 m/s)^2

x = sqrt[(13 kg) (15.6 m/s)^2 / (23,000 N/m)] = 0.263 m

Therefore, the spring must be compressed by 0.263 meters.

How high will the rock get above the ground if the spring is compressed by 0.5 meters before the rock is released from a resting position?

b. To find the maximum height the rock will reach when the spring is oriented vertically, we can again use conservation of energy. The potential energy stored in the compressed spring is converted into gravitational potential energy of the rock when it leaves the spring:

1/2 k x^2 = m g h

where g is the acceleration due to gravity and h is the maximum height reached by the rock.

Plugging in the values and solving for h:

1/2 (23,000 N/m) (0.5 m)^2 = (13 kg) (9.8 m/s^2) h

h = (1/2) (23,000 N/m) (0.5 m)^2 / (13 kg) (9.8 m/s^2) = 0.605 m

Therefore, the rock will reach a height of 0.605 meters above the ground.

c. To find the compression distance when the rock is dropped onto the spring from a height of 14 meters, we need to consider both the potential energy of the rock and the energy absorbed by the spring. When the rock hits the spring, it will come to a stop, so all of its initial potential energy will be converted into potential energy stored in the compressed spring:

m g h = 1/2 k x^2

where h is the initial height of the rock and x is the compression distance of the spring.

Plugging in the values and solving for x, we get a quadratic equation:

1/2 (23,000 N/m) x^2 - (13 kg) (9.8 m/s^2) (14 m) = 0

Simplifying and solving for x using the quadratic formula:

x = sqrt[(13 kg) (9.8 m/s^2) (14 m) / (23,000 N/m)] = 0.473 m

Therefore, the spring will compress by 0.473 meters before the rock comes to a stop.

Learn more about conservation of energy from

brainly.com/question/13105130

#SPJ1

vertical gate in an irrigation canal holds back 12.2 m of water. Find the average force on the gate if its width is 3.60 m. Report your answer with proper units and 3 sig figs.

Answers

Answer:

The right solution is "2625 kN".

Explanation:

According to the question,

The average pressure will be:

= \(density\times g\times \frac{h}{2}\)

By putting values, we get

= \(1000\times 9.8\times \frac{12.2}{2}\)

= \(1000\times 9.8\times 6.1\)

= \(59780\)

hence,

The average force will be:

= \(Pressure\times Area\)

= \(59780\times 3.6\times 12.2\)

= \(2625537 \ N\)

Or,

= \(2625 \ kN\)

each multiwire branch circuit shall be provided with a means that will simultaneously disconnect all ungrounded conductors at the point where the branch circuit originates. t or f

Answers

According to the question, the given statement of conductors at the point where the branch circuit originates is true.

What is conductors?
Conductors
are materials that allow the flow of electrical energy. They are typically made of materials that contain free electrons, such as metals, that can move around freely when an electrical charge is applied. Conductors are essential for the functioning of electrical circuits and are used in a variety of applications from electrical wiring to power transmission. In addition to metals, other materials like semiconductors, graphite, and liquids can also be used as conductors. Conductors have a wide range of uses and are necessary for any type of electrical device or system. They are also used in various fields like engineering, telecommunications, physics, and computer science.

To learn more about conductors
https://brainly.com/question/22754783

#SPJ4

What material property does the Charpy test determine? (a) Yield strength (b) Fracture strength (c) Young's modulus (d) Toughness (e) Ductility

Answers

The material property does the Charpy test determine is:(d) Toughness.

The Charpy impact test is utilized to determine the toughness of a material, specifically its ability to absorb energy when subjected to an impact load. Toughness, in this case, is defined as the ability of a material to resist the propagation of cracks or other flaws when subjected to dynamic or impact loading. In materials science, toughness is often described as the area under the stress-strain curve of a material up to its point of failure.  A pendulum hammer is used to hit the sample at the notched part with a specific amount of force.

The amount of energy absorbed by the sample is calculated by measuring the height difference between the point at which the pendulum starts to fall and the point where it swings up to after striking the sample. The energy absorbed during the fracture is proportional to the reduction in the height of the pendulum and is used to determine the toughness of the material. Therefore, the Charpy test is mainly used to determine the toughness of a material, making the correct option (d) Toughness.

Learn more about Charpy test: https://brainly.com/question/13257047

#SPJ11

The Charpy test determines the toughness of a material.What is the Charpy test.The Charpy test is a test that measures a material's resistance to brittle fracture.

The test's results are critical in determining a material's serviceability in cold temperatures or environments where impact loading is possible. It is mostly used to assess the resistance of a material to impact loading. It involves striking a notched specimen with a swinging pendulum to produce a fracture and then measuring the amount of energy absorbed by the specimen.What is toughness,Toughness is the ability of a material to resist cracking when subjected to high-stress conditions. Toughness is defined as the amount of energy a material can absorb before it breaks. In general, materials with higher toughness are more durable. Toughness is critical in the construction of buildings, bridges, airplanes, ships, and other structures subjected to sudden and unpredictable impact forces.What material property does the Charpy test determine.The Charpy test determines the toughness of a material. The Charpy test is a common method for determining a material's toughness. The test is frequently used in construction and engineering to assess the impact resistance of materials. The toughness of a material, measured in joules, can be determined using the Charpy test.

To know more about brittle visit:

https://brainly.com/question/31829460

#SPJ11

What will be the future of cyber security?​

Answers

In 2031, cloud can only keep blazing forward. ... According to Hunt, cloud makes it faster, cheaper and easier than ever to put services online and collect huge amounts of data. “But, faster and easier and cheaper than ever means it's easier to leave it all exposed,” he said.

In a metal-oxide-semiconductor (MOS) device, a thin layer of SiO2 (density = 2.20 Mg/m3) is grown on a single crystal chip of silicon. How many Si atoms and how many O atoms are present per square millimeter of the oxide layer? Assume that the layer thickness is 160 nm.

Answers

Answer:

3.52×10⁶ atoms of Si and 7.05×10⁶ atoms of O

Explanation:

It is all about unit conversions.

The area of our MOS is 1 mm². So, we know that the thickness is 160 nm. This data can give us the volume. We convert nm to mm.

160 nm . 1×10⁻⁶ mm /1nm = 1.6×10⁻⁴ mm

By the way, now we can determine the volume of MOS, in order to work with density.

1.6×10⁻⁴ mm . 1 mm² = 1.6×10⁻⁴ mm³

But density is mg/m³, so we convert mm³ to m³

1.6×10⁻⁴ mm³ . 1×10⁻⁹ m³/mm³ = 1.6×10⁻¹³ m³

Now, we apply density to determine the mass of MOS

Density = mass /volume → Density . volume = mass

1.6×10⁻¹³ m³ . 2.20mg/m³ = 3.52×10⁻¹³ mg

To make more easier the calculate, we convert mg to g.

3.52×10⁻¹³ mg . 1g /1000mg = 3.52×10⁻¹⁶ g

To count the atoms, we determine molar mass of SiO₂ → 60.08 g/mol

We need to know moles of Si and O₂ in the MOS

Firstly, we determine amount of MOS: 3.52×10⁻¹⁶ g / 60.08 g/mol = 5.86×10⁻¹⁸ moles

1 mol of SiO₂ has 1 mol of Si and 2 mol of O so:

5.86×10⁻¹⁸ mol of SiO₂ may have:

(5.86×10⁻¹⁸ . 1) /1 = 5.86×10⁻¹⁸ moles of Si

(5.86×10⁻¹⁸ .2) /1 =  1.17×10⁻¹⁷ moles of O₂

Let's count the atoms (1 mol of anything contain NA particles)

5.86×10⁻¹⁸ mol of Si . 6.02×10²³ atoms/ mol = 3.52×10⁶ atoms of Si

1.17×10⁻¹⁷ mol of O₂  . 6.02×10²³ atoms/ mol = 7.05×10⁶ atoms of O

The number of Si and O atoms present per mm² of the oxide layer are respectively; 3.52 × 10⁶ atoms of Si and 7.05×10⁶ atoms of O

What is the number of atoms present?

We are given;

Area of MOS device; A = 1 mm²

Thickness of layer; t = 160 nm = 1.6 × 10⁻⁴ mm

Formula for volume is;

V = Area * thickness

V = 1.6 × 10⁻⁴ mm × 1 mm² = 1.6 × 10⁻⁴ mm³

Converting volume to m³ gives;

V = 1.6 × 10⁻¹³ m³

Now, to get the mass of MOS, we will use the formula;

Mass = Density * volume

we are given density = 2.20mg/m³

Thus;

Mass = 1.6 × 10⁻¹³ m³ × 2.20mg/m³

Mass = 3.52 × 10⁻¹³ mg = 3.52×10⁻¹⁶ g

From periodic table, the molar mass of SiO₂ = 60.08 g/mol

Then;

Number of moles of MOS = (3.52 × 10⁻¹⁶ g)/60.08 g/mol

Number of moles of MOS = 5.86 × 10⁻¹⁸ moles

Now, 1 mol of SiO₂  is formed from 1 mol of Si and 2 mol of O. Thus;

5.86×10⁻¹⁸ mol of SiO₂ will have;

5.86×10⁻¹⁸ moles of Si

and (5.86×10⁻¹⁸ .2) =  11.72 × 10⁻¹⁸ moles of O₂

From Avogadro's number that 1 mol equals 6.02×10²³ atoms , we can say that;

5.86 × 10⁻¹⁸ mol of Si × 6.02 × 10²³ atoms/mol = 3.52 × 10⁶ atoms of Si

11.72 × 10⁻¹⁸ mol of O₂ × 6.02 × 10²³ atoms/mol = 7.05×10⁶ atoms of O

Read more about number of atoms at; https://brainly.com/question/3157958

a securid key chain fob from rsa security generates a password that changes how often?

Answers

A securid key chain fob from RSA Security generates a password that changes every 60 seconds.

How frequently does the password generated by an RSA Security securid key chain fob change?

The SecurID key chain fob from RSA Security generates a password that changes every 60 seconds. This key chain fob is a security device that provides two-factor authentication, commonly used by organizations to protect access to their systems and networks. The fob displays a unique password that is synchronized with a server, ensuring that only authorized individuals with the fob can access the protected resources.

The password generated by the fob changes automatically every minute, adding an additional layer of security to the authentication process. This frequent password rotation makes it significantly more challenging for unauthorized users to guess or intercept the password.

Learn more about RSA Security

brainly.com/question/30905550

#SPJ11

following angles between the magnetic field and the current. (a) 60.0

What is the equation for the force acting on a current-carrying wire? N (b) 90.0

N (c) 120

N

Answers

These equations provide the force acting on a current-carrying wire at different angles with the magnetic field.

(a) The equation for the force acting on a current-carrying wire when the angle between the magnetic field and the current is 60.0° can be determined using the formula:

Force (N) = Current (A) × Length of Wire (m) × Magnetic Field Strength (T) × Sin(θ)

where θ is the angle between the magnetic field and the current. In this case, θ = 60.0°. Therefore, the equation for the force acting on the wire would be:

Force = Current × Length × Magnetic Field Strength × Sin(60.0°)

(b) When the angle between the magnetic field and the current is 90.0°, the force acting on the current-carrying wire can be calculated using the same equation as mentioned above. However, since the Sin(90.0°) is equal to 1, the equation simplifies to:

Force = Current × Length × Magnetic Field Strength

(c) Similarly, when the angle between the magnetic field and the current is 120°, the force equation remains the same. The Sin(120°) is equal to √3/2, resulting in the equation:

Force = Current × Length × Magnetic Field Strength × (√3/2)

These equations provide the force acting on a current-carrying wire at different angles with the magnetic field.

To learn more about magnetic field

https://brainly.com/question/33278484

#SPJ11

Engineers want to design seats in commercial aircraft so that they are wide enough to fit 95% of all males. (Accommodating 100% of males would require very wide seats that would be much too expensive.) Men have hip breadths that are normally distributed with a mean of 14.6 in. and a standard deviation of 0.9 in. Find P95 . That is, find the hip breadth for men that separates the smallest 95% from the largest 5%. The hip breadth for men that separates the smallest 95% from the largest 5% is P 95=

Answers

We are given the mean and standard deviation as 14.6 in. and 0.9 in., respectively.To find P95 (the hip breadth for men that separates the smallest 95% from the largest 5%), we need to use the z-score formula, which is given as:z = (x - μ) / σwhere x is the observed value, μ is the mean, and σ is the standard deviation.

Since we want to find the value that separates the smallest 95%, we need to find the z-score for the top 5%. We can find this value from the standard normal distribution table, which gives the area to the left of a given z-score. Using the table, we find that the z-score corresponding to an area of 0.05 in the right tail is 1.645.
Therefore,z = 1.645, x = μ + zσ = 14.6 + (1.645)(0.9) = 16.2 in.This means that 95% of all males have hip breadths less than or equal to 16.2 in. Hence, the hip breadth for men that separates the smallest 95% from the largest 5% is P95= 16.2 in.

Learn more about  hip breadth here,
https://brainly.com/question/32246069

#SPJ11

A completely reversible heat engine operates with a source at 1500 R and a sink at 560 R. At what rate must heat be supplied to this engine, in Btu/h, for it to produce 5 hp of power?

Answers

Answer: iy had around 5000 R

Explanation:

What safety concerns must be addressed before
welding on a large assembly outside of a welding
booth?

Answers

Answer:

the clothing you wear, what's in the air (gases), surrounding and weather

A Contractor Has A Job Which Should Be Completed In 100 Days. At Present, He Has 80 Men On The Job And It Is Estimated That They Will Finish The Work In 130 Days. Of The 80 Men, 50 Are Each Paid ₱120.00 A Day, 25 At ₱180.00 A Day, And 5 At ₱250.00 A Day. For Each Day Beyond The Original 100 Days, A Contractor Has To Pay ₱500.00 Liquidated Damages.A) How Many
A contractor has a job which should be completed in 100 days. At present, he has 80 men on the job and it is estimated that they will finish the work in 130 days. Of the 80 men, 50 are each paid ₱120.00 a day, 25 at ₱180.00 a day, and 5 at ₱250.00 a day. For each day beyond the original 100 days, a contractor has to pay ₱500.00 liquidated damages.
a) How many more men should the contactor add so that he would complete the work on time?
b) If of the additional men, 2 are paid ₱180.00 a day, and the rest at ₱120.00 a day, would the contractor save money by employing more men and not paying the fine?

Answers

A contractor has a job that should be completed in 100 days. At present, he has 80 men on the job and it is estimated that they will finish the work in 130 days. Of the 80 men, 50 are each paid ₱120.00 a day, 25 at ₱180.00 a day, and 5 at ₱250.00 a day. For each day beyond the original 100 days, a contractor has to pay ₱500.00.

liquidated damages.(a) How many more men should the contractor add so that he would complete the work on time?In the first case, we see that the contractor already has 80 men and they are working for 130 days to complete the job. So, we can use the following formula to determine the additional number of workers required to finish the work in 100 days.

b) If of the additional men, 2 are paid ₱180.00 a day, and the rest at ₱120.00 a day, would the contractor save money by employing more men and not paying the fine Let’s assume that the contractor adds 440 workers, of which 2 are paid ₱180.00 a day and the rest are paid ₱120.00 a day.

The total cost of the new workers is, therefore, ₱9600.00 + ₱4500.00 + ₱49800.00 = ₱63,900.00.The cost of liquidated damages would be calculated as follows:  $$LD = (130-100) \cdot 500 = ₱15,000.00$$.

Therefore, the contractor would save money if he employs more men and not pays the fine. The contractor’s savings would be:$$Savings = LD - Additional cost$$$$= 15000.00 - 63900.00 $$$$= -48900.00$$

Thus, we can see that the contractor would save ₱48,900.00 by employing more men and not paying the fine.

To know more about contractor visit:

https://brainly.com/question/31457618

#SPJ11

You are given a string S containing lowercase English letters. Your task is to calculate the minimum number of letters that need to be removed in order to make it possible to build a palindrome from the remaining letters. When building the palindrome, you can rearrange the remaining letters in any way. A palindrome is a string that reads the same both forwards and backwards. Some examples of palindromes are: "kayak", "radar", "mom". Write a function: def solution(5) which, given a string of length
N
, returns the minimum number of letters that need to be removed. Examples: 1. Given
S
= "ervervige", your function should return 2. After removing the letter "
g
" and one "e", we may create a word "reviver", which is a palindrome. 2. Given
S
= "aaabab", your function should return 0 . We may create a word "aabbaa", which is a palindrome and uses all of the letters. delete any letter. Write an efficient algorithm for the following assumptions: -
N
is an integer within the range [1..200,000]: - S contains only lowercase English letters.

Answers

A straightforward fix is to eliminate each subsequence one at a time and determine whether the remaining string is a palindrome or not. This solution has exponential time complexity.

What is palindrome?A palindrome is a word, phrase, or sentence that reads the same both forward and backward. Palindrome is a combination of the Greek words for "again" (palin) and "to run" (drom).Finding the length of the longest palindromic subsequence of a given sequence is a useful strategy.Reverse a Word using Stack is the subject of this series of Data Structures & Algorithms Multiple Choice Questions & Answers (MCQs). 1. A word can be reversed using stack to determine whether or not it is a palindrome.having the function in / If a palindromic string of at least three characters can be made by eliminating one or two characters, it can be created using the PalindromeCreator(str) function. 

To learn more about palindrome refer to:

https://brainly.com/question/24183115

#SPJ4

what is a computer device

Answers

electronic equipment

Water at 20 C and 500 kPa flows in a 50mm diameter horizontal commercial steel pipe at a velocity of 6 m/s. The pipe then goes through a contraction to 25mm diameter. What is the maximum pressure that the water in the smaller pipe can have

Answers

The maximum pressure that the water in the smaller pipe can have is 362.5 kPa.

We have given:

Water temperature (T1) = 20°C

Water pressure (P1) = 500 kPa

Diameter of pipe (D1) = 50mm

The velocity of water (V1) = 6 m/s

Diameter of pipe (D2) = 25mm Using Bernoulli’s equation, we can relate the pressure in the larger diameter pipe to the pressure in the smaller diameter pipe as:

(1/2)*ρ*V1² + P1 + ρ*g*h1 = (1/2)*ρ*V2² + P2 + ρ*g*h2, where h1 = h2; z1 = z2; ρ = Density of fluid and g = acceleration due to gravity.

Where P2 is the pressure in the smaller diameter pipe.

Hence, (1/2)*ρ*V1² + P1 = (1/2)*ρ*V2² + P2 ∴ P2 = P1 + (1/2)*ρ*(V1² - V2²)

The continuity equation states that the mass flow rate is constant across the two sections of the pipe. It can be written as A1*V1 = A2*V2, where A1 and A2 are the cross-sectional areas of the larger diameter pipe and the smaller diameter pipe, respectively.

Rearranging this equation to get V2:V2 = (A1 / A2) * V1V2 = (π/4) * D₁² * V1 / ((π/4) * D₂²)V2 = D₁² * V1 / D₂²∴ V2 = (50mm)² * 6 m/s / (25mm)² = 288 m/s

Plugging this value in the above expression for P2: P2 = 500 kPa + (1/2) * 1000 kg/m³ * (6 m/s)² * [1 - (25/50)²]P2 = 362.5 kPa

Therefore, the maximum pressure that the water in the smaller pipe can have is 362.5 kPa.

Learn more about Bernoulli's equation:

https://brainly.com/question/15396422

#SPJ11

20 POINTS
An engineer is summoned to increase the efficiency of a hydraulic power system. The system contains many valves that have been susceptible to wear. In order to increase the efficiency, he replaces the valves with an actuator.

TRUE OR FALSE

Answers

Answer:

True ...................

Answer:

True

Explanation:

Took da quiz 100%

A thin plate 0.7 m long and 1.5 m wide is submerged and held stationary in a stream of water

Answers

The thickness of the boundary layer will be 0.436m. Distance downstream of the leading edge where this Reynolds number occur will be 3.08mm. The shear stress on the plate on this point is 1.055 N/m².

Why is the Reynolds number employed?

Laminar or turbulent fluid flow is identified using the Reynolds number, abbreviated as Re. In all viscous flows, where a numerical model is chosen in accordance with pre-calculated Reynolds number, it is one of the primary regulating parameters.

How to solve the question?

Given, Reynolds number, Re = 500000

  length = 0.7 m

  width = 1.5m

   velocity, u = 1.5 m/s

the thickness of the boundary layer, Re = u×x/v

                                                            x = Re × v/u

                                                             x = 500000×1.31×10∧(-6)/1.5

                                                             x = 0.436m

distance downstream of the leading edge where this Reynolds number occur, δ = 5x/\(\sqrt{Re}\)

          δ = 5×0.436/√500000

          δ = 3.08 mm

The shear stress on the plate on this point,

τ = 0.332v(u/x)×√Re

τ = 0.332×1.31×10∧(-3) (1.5/0.436) √500000

τ = 1.055 N/m²

To know more about Reynold's number visit

brainly.com/question/12977616

#SPJ4

The complete question is,

A thin plate 0.7 m long and 1.5 m wide is submerged and held stationary in a stream of water (T = 10°C) that has a velocity of 1.5 m/s. What is the thickness of the boundary layer on the plate for Re, 500,000 (assume the boundary layer is still laminar), and at what distance downstream of the leading edge does this Reynolds number occur? What is the shear stress on the plate on this point?

Other Questions
Which one of the following statements is true?A. Continental crust is less dense than oceanic crust.B. Continental crust is composed mostly of basalt.C. Oceanic crust can be composed of granite or basalt.D. Oceanic crust is less dense than continental crust. proof let a be a square matrix of order n. (a)show that is symmetric. (b)show that is skew-symmetric. (c)prove that a can be written as the sum of a symmetric matrix b and a skew-symmetric matrix c, a Describe the sequence of operations that might go on inside the computer during the execution phase of the following machine language instruction. Use the notation shown in Section 5.3. Assume that the IR is now divided into four separate parts (instead of three) that contain the op code, and the first, second, and third address fields. How many real solutions does this system of equations have? (x3)^2+(y+1)^2=16x7=0 Question 6-One side of a triangle is one-third the longest side. The third side is 12 feet less than the longest side.The perimeter is 79. Find all three sides.The sides have lengths of ___,_____, and _____ (b) In our class discussion, we assume that real investment I does not depend on current output Y. (Recall the 4 factors behind I and they do not include Y.) Suppose now I depends positively on Y as well, which is quite acceptable as firms would invest more as income and output rise. How would such a new assumption affect the expenditure multiplier? Explain in words and illustrate in the diagram. find the smallest value of n that you can for which s n has an element of order greater than or equal to 100 Explain the difference between renewable and nonrenewable resources and give an example of each. Escribir-write the correct pronouns to replace the noun PLEASE HELP ME PLEASEE ! Cosx(tanx+cotx)=Pls Help WORTH 30 POINTS!!!!FOR THIS QUESTION YOU MUST INCLUDE THE FOLLOWING :- Clam/statement- Evidence (data observations from science facts and or diagrams)- Reasoning (connect the evidence to the claim and diss use the relationship between the two)A scientist claims that glycolysis was the first metabolic pathway used to produce ATP in the first living organisms.QUESTION: EXPLAIN how the structure of the earliest life forms is favorable for glycolytic pathways. explain how solar energy is transformed during photosynthesis solve the following system of equations using lu factorization with partial pivoting: 2x16x2x3=38 3x1x2 7x3=34 8x1 x22x3=40 What do the kids first think causes Miss Caroline to scream? What is the real reason she screams? What is cos(A)?0143COScos(A) =Enter The perimeter of a regular picture frame can be represented by the expression 6x ,where x is one of the side lengths.Rewrite the expression as the sum of the four sides lengths. As the standard deviation gets larger, the scores in the distribution 1Which expressions are equivalent to 36 ? Check all that apply. 3-6| B-26.6-2 6-3 67 Which is a digital asset?