Which of the following is true about an idler gear?

The idler gear alters the direction of the output motion.

The size and number of teeth of an idler gear do not affect the train value.

The idler gear can be used to adjust the center distance on the input and output shafts.

An idler gear must have the same diametral pitch and pressure angle as the gears it meshes with.

All of the above.

Answers

Answer 1

The statement "An idler gear must have the same diametral pitch and pressure angle as the gears it meshes with" is true about an idler gear. Therefore, the correct option is:

"D) An idler gear must have the same diametral pitch and pressure angle as the gears it meshes with."

An idler gear is a gear that is placed between two other gears to transfer power from one gear to another without changing the direction of rotation.

To mesh properly with the other gears in the system, an idler gear should have the same diametral pitch and pressure angle as the other gears. The diametral pitch refers to the number of teeth on the gear per unit of diameter, while the pressure angle is the angle between the tangent to the tooth profile and a line perpendicular to the gear's axis.

If an idler gear has a different diametral pitch or pressure angle than the other gears in the system, it will not mesh correctly and can cause problems such as increased wear, noise, and reduced efficiency. Therefore, option D is correct - "An idler gear must have the same diametral pitch and pressure angle as the gears it meshes with."

Learn more about diametral pitch and pressure angle  from

https://brainly.com/question/17373690

#SPJ11


Related Questions

1. describe the micro-mechanism of fracture of (a) brittle material and (b) ductile material. (c) what is the difference between typical fracture surfaces of brittle and ductile materials?

Answers

When a material undergoes a fracture, it is the result of a micro-mechanical process. The fracture mechanism of a material determines its fracture behavior. The fracture behavior of ductile and brittle materials varies significantly.

Below are the descriptions of the micro-mechanism of fracture of brittle material and ductile material. Brittle Material: Brittle materials lack plastic deformation, which means they cannot withstand much tensile stress before fracturing. Brittle materials fracture due to the propagation of pre-existing flaws (cracks) present within them. Brittle fracture is divided into three stages: crack initiation, crack propagation, and final fracture. At the time of crack initiation, when the applied stress exceeds the tensile strength of the material, a small crack forms on the surface. Once the crack has formed, it propagates through the material, perpendicular to the applied stress. As the crack propagates, it experiences a stress concentration, which causes it to grow at a rapid pace. The final fracture occurs when the crack has propagated entirely through the material.Ductile Material: Ductile materials are capable of undergoing significant plastic deformation before fracture. The plastic deformation in ductile materials arises due to the movement of dislocations present within them. When a ductile material is subjected to tensile stress, plastic deformation takes place at the necking region. Necking is a local deformation that leads to a reduction in the cross-sectional area of the material, making it thinner. This necking region eventually becomes so thin that the material ruptures. The final fracture surface of ductile material is generally curved and exhibits a dimpled pattern. It is due to the plastic deformation that takes place before fracture. Typical Fracture Surfaces of Brittle and Ductile Materials: Brittle fractures have a shiny and flat surface that is perpendicular to the applied stress.

To know more about micro-mechanical visit :

https://brainly.com/question/28603547

#SPJ11

Keesha company borrows $175,000 cash on November 1 of the current year by signing a 180-day, 9%, $175,000 note

Answers

Question: What is the maturity date of the note borrowed by Keesha Company, and what will be the total interest expense incurred by the company at maturity?

Answer: The maturity date of the note borrowed by Keesha Company can be calculated by adding the number of days mentioned in the note's term to the start date. In this case, the note was signed on November 1 of the current year, and it has a term of 180 days. Therefore, to find the maturity date, we add 180 days to November 1.

Maturity date = November 1 + 180 days = April 30 of the following year.

To calculate the total interest expense incurred by Keesha Company at maturity, we need to determine the interest accrued over the term of the note. The formula to calculate interest is: Interest = Principal x Rate x Time.

Using the given information, the principal (P) is $175,000, the rate (R) is 9%, and the time (T) is 180/360 (since the term is given in days). Plugging in these values, we can calculate the total interest expense:

Interest = $175,000 x 9% x (180/360) = $7,875.

Therefore, at maturity, Keesha Company will have a total interest expense of $7,875 on the note.

For more questions on Interest, click on:

https://brainly.com/question/29415701

#SPJ8

Construct the Java statement that produced the following IJVM code: ILOAD j ILOAD n ISUB BIPUSH 21 IADD DUP IADD ISTORE į a) Show what the stack is doing for each instruction b) Comment the IJVM code with useful comments c) Write the JAVA CODE that is being executed by the IJVM code.

Answers

Answer:

Explanation:

a) Let's analyze the stack for each IJVM instruction:

ILOAD j: Loads the value of variable j onto the stack.

Stack: [j]

ILOAD n: Loads the value of variable n onto the stack.

Stack: [j, n]

ISUB: Subtracts the top two values on the stack (n - j).

Stack: [n - j]

BIPUSH 21: Pushes the constant value 21 onto the stack.

Stack: [n - j, 21]

IADD: Adds the top two values on the stack ((n - j) + 21).

Stack: [n - j + 21]

DUP: Duplicates the top value on the stack.

Stack: [n - j + 21, n - j + 21]

IADD: Adds the top two values on the stack ((n - j + 21) + (n - j + 21)).

Stack: [2 * (n - j) + 42]

ISTORE į: Stores the top value on the stack into variable į.

Stack: []

b) IJVM code with comments:

ILOAD j // Load value of variable j onto the stack

ILOAD n // Load value of variable n onto the stack

ISUB // Subtract n - j

BIPUSH 21 // Push constant value 21 onto the stack

IADD // Add (n - j) + 21

DUP // Duplicate the top value on the stack

IADD // Add top two values on the stack (2 * (n - j) + 42)

ISTORE į // Store the top value on the stack into variable į

c) The equivalent Java code for the provided IJVM code:

int result = 2 * (n - j) + 42;

į = result;

Note: In the Java code, the variables j, n, and į should be declared and assigned appropriate values before executing the code.

Simple integer division - multiple exception handlers

Write a program that reads integers userNum and divNum as input, and output the quotient (userNum divided by divNum). Use a try block to perform the statements. Use a catch block to catch any ArithmeticException and output an exception message with the getMessage() method. Use another catch block to catch any InputMismatchException and output an exception message with the toString() method.

Note: ArithmeticException is thrown when a division by zero happens. InputMismatchException is thrown when a user enters a value of different data type than what is defined in the program. Do not include code to throw any exception in the program.

Ex: If the input of the program is:

15 3
the output of the program is:

5
Ex: If the input of the program is:

10 0
the output of the program is:

Arithmetic Exception: / by zero
Ex: If the input of the program is:

15.5 5
the output of the program is:

Input Mismatch Exception: java.util.InputMismatchException

Answers

In the below code, the user enters integers `userNum` and `divNum`. The program outputs the quotient of the numbers entered by the user.

The program uses a try block to carry out the necessary instructions. Another catch block is used to catch any ArithmeticException, and an exception message with the `getMessage()` method is outputted. Finally, another catch block is used to catch any InputMismatchException and output an exception message with the `toString()` method.Java code to implement the aforementioned program:```import java.util.InputMismatchException;import java.util.Scanner;public class Main{ public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int userNum = 0; int divNum = 0; int resultNum = 0; try { userNum = scnr.nextInt(); divNum = scnr.nextInt(); resultNum = userNum/divNum; System.out.println(resultNum); } catch (ArithmeticException excep) { System.out.println("Arithmetic Exception: " + excep.getMessage()); } catch (InputMismatchException excep) { System.out.println("Input Mismatch Exception: " + excep.toString()); } scnr.close(); }}```If the input of the program is: `15 3`The output of the program is: `5`If the input of the program is: `10 0`The output of the program is: `Arithmetic Exception: / by zero`If the input of the program is: `15.5 5`The output of the program is: `Input Mismatch Exception: java.util.InputMismatchException`

To know more about Arithmetic visit:

https://brainly.com/question/16415816

#SPJ11

A program that reads integers userNum and divNum as input, and output the quotient (userNum divided by divNum) is explained below.

The example program in Java is:

import java.util.InputMismatchException;

import java.util.Scanner;

public class IntegerDivision {

   public static void main(String[] args) {

       Scanner sc = new Scanner(System.in);

       try {

           int userNum = sc.nextInt();

           int divNum = sc.nextInt();

           int quotient = userNum / divNum;

           System.out.println(quotient);

       } catch (ArithmeticException e) {

           System.out.println("Arithmetic Exception: " + e.getMessage());

       } catch (InputMismatchException e) {

           System.out.println("Input Mismatch Exception: " + e.toString());

       }

       sc.close();

   }

}

Thus, in this programme, the user input is read using a Scanner object. We utilise sc.nextInt() inside the try block to read two integers, userNum and divNum.

For more details regarding Java, visit:

https://brainly.com/question/12978370

#SPJ4

Which of the following is NOT a category of suspicious TCP/IP packet?
1. Bad header information
2. Single-packet attacks
3. Suspicious data payload
4. Suspicious CRC value

Answers

The category of suspicious TCP/IP packet that is NOT correct is 4. Suspicious CRC value.

The Transmission Control Protocol/Internet Protocol (TCP/IP) is one of the most widely used protocol suites for communication in the world. TCP/IP packets, on the other hand, are frequently targeted by cybercriminals, who attempt to penetrate the network or carry out other malicious actions. Option number 2, "Single-packet attacks" is not a category of suspicious TCP/IP packets.

TCP/IP packets can be categorized as suspicious based on a variety of indicators. We will discuss the categories of suspicious TCP/IP packets and how to detect them. Following are the categories of suspicious TCP/IP packets:

Bad header information: TCP/IP packets with a bad or malformed header can be classified as suspicious. Attackers use headers to communicate their intentions to the victim's network. Malformed or altered headers might indicate the presence of an attack.Single-packet attacks: Attacks that use just one packet to carry out their mission are known as single-packet attacks. This category of suspicious TCP/IP packet can be quite tough to detect since they do not follow the same pattern as many other attacks, making it difficult to detect them.Suspicious data payload: The payload of a packet might contain malware, sensitive data, or malicious instructions. Attackers attempt to conceal these payloads inside packets to avoid detection. This category of suspicious packet can be detected by using pattern matching or statistical analysis of the payload.Suspicious CRC value: TCP/IP packets that have a bad checksum or CRC value are classified as suspicious. Attackers sometimes alter the CRC value to bypass security systems, and this can indicate the presence of an attack.

Based on the above explanation, option number 2, "Single-packet attacks" is not a category of suspicious TCP/IP packets. Hence, it is the right answer.

To learn more about TCP/IP, visit:

https://brainly.com/question/17387945

#SPJ11

Your new boss wants to know if you can use Kali in multiple environments. Kali supports which of the following (more than one answer may be correct): ARM (Advanced RISC Machine) Mainframe servers O Windows O Linux

Answers

Kali Linux supports the following environments:

ARM (Advanced RISC Machine): Kali Linux can be installed and used on devices that are based on ARM architecture, such as smartphones, tablets, and embedded systems.

Linux: Kali Linux is primarily designed for Linux-based operating systems. It is compatible with various distributions of Linux and can be easily installed on those systems.

Windows: While Kali Linux is primarily targeted towards Linux environments, it is possible to run Kali Linux on Windows systems using virtualization or subsystems like Windows Subsystem for Linux (WSL).

Therefore, the correct options are: ARM, Linux, and Windows.

Learn more about Kali Linux can be installed from

https://brainly.com/question/30264901

#SPJ11

For the following specifications, design a linear phase-blocking FIR filter using the Hamming window-design technique. Then find the impulse response and the magnitude response.
Lower and upper low-band edge frequencies:

0.47, 0.67, A, = 50dB

Lower and upper passband edge frequencies:

0.3, 0.7, R₂ = 0.2dB

Answers

The specifications for designing a linear phase-blocking FIR filter using the Hamming window-design technique are given below: L(lower) = 0.3, L(upper) = 0.7, R₂ = 0.2dB, F(lower) = 0.47, F(upper) = 0.67, A = 50dB.

Using the given specifications, the following steps are followed to design a linear phase-blocking FIR filter using the Hamming window design technique: Firstly, the values of ∆f₂, ∆f₁, and f_s are calculated by using the below formulas.

∆f₂ = L(upper) - L(lower) = 0.7 - 0.3 = 0.4∆f₁ = F(upper) - F(lower) = 0.67 - 0.47 = 0.2f_s = 2 × max(L(upper), F(upper)) = 2 × 0.7 = 1.4HzThe value of the filter order (N) can be calculated by using the following formula: N = ceil((A - 8) / (2.285 * ∆f₁)) + 1 = ceil((50 - 8) / (2.285 × 0.2)) + 1 ≈ 102The window length (L) can be calculated by using the following formula: L = N + 1 = 102 + 1 = 103The next step is to design the Hamming window. The following formula is used to design the Hamming window.

h(n) = 0.54 - 0.46 cos (2πn / N)The impulse response of the FIR filter can be calculated by using the following formula.h(n) = sin(2πL(n-N/2))/π(n-N/2)) * w(n), where w(n) is the designed Hamming window and n = 0, 1, …, N.

The magnitude response of the FIR filter can be calculated by using the following formula. H(w) = |H(w)| = ∑h(n) e^(-jwn)The magnitude response plot is shown below. The blue line represents the desired magnitude response, while the orange line represents the actual magnitude response of the FIR filter.

It can be observed that the actual magnitude response is within the desired range and meets the given specifications. Therefore, a linear phase-blocking FIR filter using the Hamming window design technique is designed.

To know more about phase-blocking

https://brainly.com/question/2141988

#SPJ11

Elevator Pitch Presentation for Electrical and Computer Engineering Student:-

Write a short concise persuasive and impactful elevator pitch presentation description of the organization, business plan, and business idea or yourself as a potential suitor for any organization. For Example for the business plan and idea you follow two-step:-

Identify the need/Problem
Identify your unique selling Proposition
Elevator Pitch (For yourself as a potential candidate) your elevator pitch includes

Describe yourself (skills, experience,…)
Describe what you bring to the table (demonstration statement "I have this (strength/skill) that I demonstrated when I (did this/proposed this")
Describe why you are unique (referring to the demonstration statement)
Describe your goal (in alignment with the company goals and current projects

Answers

Elevator Pitch Presentation for Electrical and Computer Engineering Student:

Hi, my name is [Your Name], and I am an Electrical and Computer Engineering student. I am excited to be here today to share with you my skills and experience.

My skills include proficiency in programming languages such as Python, C++, and Java. I also have experience in designing and implementing digital circuits, and developing software applications for various projects.

What I bring to the table is a unique combination of technical expertise and creativity. For instance, I designed and implemented a device that used machine learning algorithms to detect and classify objects with high accuracy. The project required me to apply my knowledge of circuit design, programming, and data analysis, and I am proud of the results we achieved.

I believe my unique approach to problem-solving makes me stand out from other candidates. I enjoy thinking outside the box and coming up with innovative solutions to complex problems.

My goal is to use my skills and experience to contribute to projects that align with the company's mission and goals. I am passionate about using technology to create products that can make a positive impact on people's lives.

Thank you for considering me as a potential candidate. I am confident that I can bring value to your organization and look forward to discussing this opportunity further.

Learn more about  Engineering   from

https://brainly.com/question/28321052

#SPJ11

Why is it important, even on sidentify where the program is spin-waiting, that is looping while (implicitly or explicitly) waiting for something to change. add sched yield() calls at the appropriate place inside these -processor machines, to keep the critical sections as small as possible?
Why is spin-waiting without yielding usually inefficient?
When might spin-waiting without yielding or blocking actually be *more* efficient?

Answers

In a spin-waiting scenario, a program continuously loops while waiting for a certain condition to change. In such cases, it is important to add sched_yield() calls at appropriate places to keep the critical sections as small as possible. Here's why:

Efficiency: Spin-waiting without yielding can be inefficient because it consumes CPU resources while continuously looping. This means that the CPU is actively engaged in executing the spin-waiting loop instead of performing other useful tasks. It leads to wastage of CPU cycles and decreases overall system performance.

Fairness: By adding sched_yield() calls, the program voluntarily yields the CPU to allow other threads or processes to execute. This promotes fairness by giving other entities an opportunity to use the CPU and prevents a single thread from monopolizing system resources.

Responsiveness: Adding sched_yield() calls improves the responsiveness of the system. Without yielding, a spin-waiting thread may continuously hog the CPU, leading to delayed execution of other tasks or threads. By periodically yielding the CPU, other threads can get a chance to run, improving system responsiveness.

However, there are cases where spin-waiting without yielding or blocking can be more efficient:

Low contention: If the expected waiting time is short and contention for resources is low, spin-waiting without yielding or blocking can be more efficient. In such cases, the overhead of context switching and thread rescheduling may be higher than the time it takes to acquire the desired resource.

Hardware-specific optimizations: On certain hardware architectures or in specific low-level programming scenarios, spin-waiting without yielding can be more efficient due to hardware optimizations like memory barriers or specialized spin-lock instructions. These optimizations allow for efficient spinning without the need for context switching or yielding.

It's important to carefully analyze the specific context, system characteristics, and resource contention levels to determine the most efficient approach between spin-waiting with yielding and blocking or spin-waiting without yielding.

Learn more about  spin-waiting scenario from

https://brainly.com/question/32268476

#SPJ11

After replacing a laptop touchpad, a technician finds that the touchpad does not move the cursor. However, a USB mouse does. Before opening the laptop case to re-check the connection, which of the following actions should the technician perform? Increase the operating system's mouse speed setting. Unplug the USB mouse and re-check touchpad movements. Toggle the scroll lock key on the keyboard. Perform a minimal boot of the operating system so that device drivers are not loaded.

Answers

Answer:

Before opening the laptop case to re-check the connection, the technician should unplug the USB mouse and re-check touchpad movements.

During construction, _________ provide a means by which the owner and architect can confirm the intent of the design & ensure that materials to be installed meet the owner's expectations.

Answers

During construction, submittals provide a means by which the owner and architect can confirm the intent of the design and ensure that materials to be installed meet the owner's expectations.

Submittals typically include product data, samples, shop drawings, and other relevant information related to the construction project. The review and approval of submittals are important processes in ensuring that the construction project meets the required quality standards and specifications.

The purpose of submittals is to provide detailed information about the proposed materials, products, equipment, or systems that will be used in the construction project. This information includes product data, samples, shop drawings, technical specifications, and other relevant documentation.

By reviewing submittals, the owner and architect can verify that the proposed materials and equipment align with the project requirements, design specifications, and quality standards. They can confirm that the selected products will perform as intended and meet the desired aesthetic, functional, and performance criteria.

Learn more about  owner and architect can confirm from

https://brainly.com/question/32564791

#SPJ11

When a StackADT is implemented using an oversized array, which of the following is a MORE efficient implementation? Having the bottom of the stack at index 0 of the array. Having the top of the stack at index 0 of the array. Both choices are equally efficient.

Answers

When implementing a StackADT using an oversized array, it is more efficient to have the bottom of the stack at index 0 of the array.

Having the bottom of the stack at index 0 allows for easier insertion and removal operations, as the top of the stack remains fixed at the end of the array. This means that pushing and popping elements from the stack can be done in constant time, without the need for shifting elements within the array.

On the other hand, having the top of the stack at index 0 would require shifting elements in the array every time an insertion or removal operation is performed. This would result in a less efficient implementation, as it would require additional time and resources to maintain the order of the elements in the array.

Therefore, having the bottom of the stack at index 0 of the array is the more efficient implementation in this case.

Learn more about  index 0 of the array from

https://brainly.com/question/31692412

#SPJ11

Which is an example of baseline evaporator data?

Answers

An example of baseline evaporator data could be a set of measurements or observations taken from an evaporator system under normal operating conditions.

This data represents the baseline or reference performance of the evaporator and can be used for comparison and analysis purposes. It typically includes variables such as inlet and outlet temperatures, flow rates, pressure differentials, energy consumption, and other relevant parameters that characterize the evaporator's operation. Baseline evaporator data provides a benchmark for evaluating the performance of the system over time, identifying deviations or anomalies, and making informed decisions regarding maintenance, optimization, or troubleshooting.

Baseline evaporator data refers to a set of measurements or observations that are taken from an evaporator system under normal operating conditions. This data is used as a reference point for comparison with future measurements or observations, in order to detect any deviations or anomalies that may indicate a problem with the evaporator system.

Learn more about baseline evaporator data  from

https://brainly.com/question/27872092

#SPJ11

Why was the logistic activation function a key ingredient in training the first MLPs?

Answers

Answer:

its derivative is always nonzero, so Gradient Descent can always roll down the slope.

Explanation:

The logistic activation function was a key ingredient in training the first MLPs because its derivative is always nonzero, so Gradient Descent can always roll down the slope. When the activation function is a step function, Gradient Descent cannot move, as there is no slope at all.







1. A cylindrical magnetron works on the principle of cyclotron radiations. Brief your understanding of cyclotron radiations in relation to cylindrical magnetron.

Answers

A cyclotron is a type of particle accelerator that uses a combination of magnetic and electric fields to accelerate charged particles to high energies.

The cylindrical magnetron is a type of vacuum tube that uses the principles of cyclotron radiation to generate high-frequency electromagnetic radiation.

Cyclotron radiation is the result of the acceleration of charged particles in a magnetic field. When charged particles are accelerated, they emit electromagnetic radiation that is perpendicular to their motion. The frequency of the radiation is directly proportional to the velocity of the charged particles, which in turn is determined by the strength of the magnetic field and the radius of the particle's path.

Cylindrical magnetrons use a magnetic field to confine a stream of electrons to a spiral path around a cylindrical electrode. As the electrons move along this path, they emit cyclotron radiation in the form of high-frequency electromagnetic waves.

These waves are then extracted from the device and used in a variety of applications, including radar, microwave ovens, and medical imaging systems.

The efficiency of a cylindrical magnetron depends on the strength of the magnetic field, the diameter of the electrode, and the voltage applied to the device. By optimizing these parameters, engineers can create magnetrons with high power output and high efficiency, making them useful in a wide range of applications.

To know more about Cyclotron radiation

https://brainly.com/question/24123396

#SPJ11

Your company policy allows gift exchanges with customers up to a certain limit. By mistake, you have given a gift beyond the limit mentioned in your company policy to a customer's representative. What is the best thing to do? Contact your company's senior management and ask for assistance. Ask your customer to give you something worth the difference between the limit allowed and the cost of the gift. Ask your customer to return the gift only if it is above his/her company limit. Forget it and don't tell anyone.

Answers

If an employee has mistakenly given a gift to a customer's representative, exceeding the limit stated in the company policy, the best thing to do would be to contact the company's senior management and ask for assistance.

Admitting the error to senior management is essential because if the issue becomes known through other channels, it will reflect poorly on the company. A customer representative receiving a gift exceeding the policy limit may be seen as a bribe, even if there was no malicious intent. Senior management will then decide on the best course of action to take in this situation.

Management may also make a decision to accept the mistake and leave it alone. However, the most important thing is to report the error to senior management. This will show that the employee has integrity and is trustworthy, which may help mitigate the consequences if there are any, and help prevent similar mistakes in the future.

To know more about company's senior management visit:

https://brainly.com/question/16289727

#SPJ11

Steam with specific enthalpy of 3278kj/kg goes through nozzle at station A velocity of 20m\s. If the exit area of the nozzle are adiabatic, find enthalpy per kg of steam leaving nozzle of steam is incompressible

Answers

If the steam is incompressible, it means that its specific volume remains constant throughout the process. In this case, the enthalpy per kilogram of steam leaving the nozzle will also remain constant.

Given that the specific enthalpy of the steam at station A is 3278 kJ/kg and the velocity at station A is 20 m/s, we can calculate the enthalpy per kilogram of steam leaving the nozzle.

The enthalpy per kilogram of steam leaving the nozzle can be determined using the specific enthalpy equation:

h2 = h1 + (V1^2 - V2^2)/2

Where:

h1 = specific enthalpy at station A

h2 = specific enthalpy at the exit of the nozzle

V1 = velocity at station A

V2 = velocity at the exit of the nozzle

Since the steam is incompressible, the specific volume remains constant. Therefore, the velocity at the exit of the nozzle, V2, can be calculated using the equation:

V2 = V1 * (A1/A2)^0.5

Where:

A1 = cross-sectional area at station A

A2 = cross-sectional area at the exit of the nozzle

Since the exit area of the nozzle is adiabatic, the cross-sectional area at the exit remains the same as the cross-sectional area at station A (A1 = A2).

Substituting the given values into the equations, we can calculate the enthalpy per kilogram of steam leaving the nozzle:

V2 = V1 * (A1/A2)^0.5

V2 = 20 m/s * (1/1)^0.5

V2 = 20 m/s

h2 = h1 + (V1^2 - V2^2)/2

h2 = 3278 kJ/kg + (20^2 - 20^2)/2

h2 = 3278 kJ/kg

Therefore, the enthalpy per kilogram of steam leaving the nozzle is 3278 kJ/kg, assuming the steam is incompressible.

Learn more about constant throughout the process from

https://brainly.com/question/30891992

#SPJ11

Matlab Assignment BME496

Consider the filtration of a fluid flowing within a Hollow Fiber Module which consist of 1000 fibers. Assume that the length of the hollow fiber is 20 cm and that the radius of the hollow fiber is 0.005 cm. if the filtration flux is 0.5 cm/s and the feed to the Module is 500 cm3/s. Use MATLAB to do the following:

Plot the Flow rate in each fiber as a function of Z (i.e F(z))

If the concentration of a solute in the feed is 6 g/L. Knowing that the sieving coefficient (So) is 0.4. Plot the concentration of the solute in the fiber (in g/L) as a function of z (i.e Cb(z))

If the concentration of a solute in the feed is 6 g/L. Knowing that the sieving coefficient (So) is 0.4. Plot the concentration of the solute in the fiber (in g/L) as a function of z (i.e Cb(z)) if length of the hollow fiber is 10 cm

If the concentration of a solute in the feed is 6 g/L. Knowing that the sieving coefficient (So) is 0.4. Plot the concentration of the solute in the fiber (in g/L) as a function of z (i.e Cb(z)) if the radius of the hollow fiber is 0.01 cm

The submitted file must be in a pdf format and must include:

Cover page: Student(s) names and Student(s) numbers.

Matlab Code

Matlab plots: the plots must have all details such as: axes names, unit, legends….ext.

Discussion of the obtained results in your own words

Answers

Given information: Length of the hollow fiber, [tex]L = 20[/tex]cm Radius of the hollow fiber,[tex]r = 0.005[/tex] cm Filtration flux,[tex]J = 0.5[/tex] cm/s Feed to the module, [tex]Q = 500 cm3/s[/tex] Concentration of a solute in the feed, [tex]C = 6[/tex]g/L Sieving coefficient, So = 0.4

Therefore, the concentration of the solute in the fiber can be found using the formula, [tex]C b(z) = C*(1-So)*exp(-z^2/(4*L*J))*exp(r^2/R^2-z^2/(4*L*J))C b(z) = C*(1-So)*exp(-z^2/(4*L*J))*exp(1^2/0.01^2-z^2/(4*L*J))Plot of C b(z) for r = 0.01[/tex]cm will be, The MATLAB code for the above can be written as: c lc; clear all; close all;%Given Data[tex]L = 20; %cm r = 0.005; %cm J = 0.5; %cm/s Q = 500; %cm^3/s C = 6; %g/L So = 0.4;%Flow Rate F = (Q./(pi*r^2)).*exp(-(z.^2)./(4.*L.*J))[/tex]

figure(1)plot(z,F,'LineWidth',2);x label('z (cm)')y label('Flow Rate (cm^3/s)')title('Flow Rate in each fiber')grid on% Concentration of the solute in the fiber (in g/L) as a function of z C b = C.*(1-S_o).*exp(-(z.^2)./(4.*L.*J));figure(2)plot(z,Cb,'LineWidth',2);x label('z (cm)')y label('C b (g/L)')title('Concentration of the solute in the fiber')grid on% C b(z)

For Discussion From the obtained plots, it can be observed that the flow rate in each fiber is maximum at the inlet of the module and it decreases gradually as the fluid passes through the fibers.

To know more about Radius visit:

https://brainly.com/question/13067441

#SPJ11

1. Consider a logical address space of 2,048 pages with a 4-KB page size, mapped onto a physical memory of 512 frames. a. How many bits are required in the logical address? b. How many bits are required in the physical address? c. What is the maximum amount of physical memory in this system? 2. Assuming a 1-KB page size (address o.. 1023), what are the page numbers and offsets for the following address references (provided as decimal numbers)? (30 points) a 128 b. 1024 c 21205 d. 16425o e. 121357 f. 1647931s The MPV operating system is designed for embedded systems and has a 24-bit virtual/logical address, a 20-bit physical address, and a 4-KB page size. How many entries are there in each of the following? 3. A conventional, single-level page table. An inverted page table. 4. Consider a paging system with the page table stored in memory. If a memory reference takes 50 nanoseconds, how long does a paged memory reference take? If we add TLBs, and if 75 percent of all page-table references are found in the TLBs, what is the effective memory reference time? (Assume that finding a page-table entry in the TLBs takes 2 nanoseconds, if the entry is present.)

Answers

The number of bits required in the logical address is log2 (2^15) = 15 bits.b. To calculate the number of bits required in the physical address, the size of the physical memory needs to be determined, which is the product of the number of frames and the frame size, which is the same as the page size.

The number of entries in an inverted page table is equal to the number of frames in the physical memory, which is [tex]2^20 / 2^12 = 2^8 = 256.4.[/tex]

If a memory reference takes 50 nanoseconds, a paged memory reference will take the time to access the page table plus the time to access the page in memory. Since the page table is stored in memory, the time to access it is the memory access time, which is 50 nanoseconds.

Therefore, the total time to access a paged memory reference is 50 + 50 = 100 nanoseconds.If we add TLBs, and if 75 percent of all page-table references are found in the TLBs, the effective memory reference time is:

Effective memory[tex]reference time = (TLB access time * hit rate) + (memory access time * miss rate)[/tex]

where hit rate is the fraction of page-table references found in the TLBs and miss rate is the fraction of page-table references not found in the TLBs. So, the effective memory reference time is:

[tex]Effective memory reference time = (2 * 0.75) + (50 * 0.25) = 1.5 + 12.5 = 14 nanoseconds.[/tex]

To know more about logical address visit:

https://brainly.com/question/30636625

#SPJ11

Where is a clutch (bell) housing flange face most susceptible to wear at its mating surface with the flywheel housing?

Answers

The clutch housing flange face is most susceptible to wear at its mating surface with the flywheel housing due to constant contact and friction between the two surfaces. Over time, this can lead to surface damage, such as grooves or rough spots, which can cause problems with the proper functioning of the clutch and transmission.

In particular, the area around the dowel pins is especially prone to wear and damage, as this is where the majority of the force is concentrated during clutch engagement and disengagement. Additionally, if the clutch is not properly aligned with the flywheel housing, it can cause uneven wear and damage to the flange face.

To prevent excessive wear and damage to the clutch housing flange face, it is important to regularly inspect the clutch system for proper alignment and function, and to address any issues promptly. This may include replacing worn components, adjusting the clutch linkage, or realigning the clutch assembly with the flywheel housing.

Learn more about  clutch housing flange face from

https://brainly.com/question/14528932

#SPJ11

explain why steel is ductile at room temperature, but may be brittle at a low temperature. (b) a number of treatments can affect the yield strength of the steel, e.g., work hardening, tempering (modifying the precipitates), grain growth (changing the grain size), etc. to minimize the brittle-to-ductile transition temperature (tbd), should we try to increase or decrease the yield strength?

Answers

Steel is ductile at room temperature, but it may become brittle at low temperatures. Steel, in its pure form, is a crystalline structure that has iron atoms in the center of the cube, surrounded by atoms of carbon or iron.

This lattice structure enables the iron and carbon atoms to move freely, making steel ductile. This ductility is due to the ease with which iron and carbon atoms are allowed to slide past each other when under stress, resulting in the ductile nature of steel. It means steel can be formed or stretched into various shapes without breaking or cracking. In the case of low temperatures, the atoms within the lattice structure are restricted in their movement, limiting the ability of iron and carbon atoms to slide past each other. The brittleness of steel increases as the temperature decreases, limiting its ductility. The yield strength of steel can be influenced by several processes, including work hardening, tempering, and grain growth. Increasing the yield strength increases the brittle-to-ductile transition temperature, resulting in increased brittleness. This leads to an increased risk of failure of steel structures. Decreasing the yield strength of steel reduces the brittle-to-ductile transition temperature, resulting in a higher ductility for steel. It would be better to reduce the yield strength of steel to minimize the brittle-to-ductile transition temperature.

To know more about ductile visit:

https://brainly.com/question/29961125

#SPJ11

According to Timmons, ethical theories are hypothetical accounts of why people believe what they happen to believe about ethics. True False QUESTION 18 On Moral Relativism (aka Unrestricted Cultural Relativism), each person gets to decide entirely for themselves which moral rules they must follow. True False

Answers

According to Timmons, ethical theories are not described as hypothetical accounts of why people believe what they happen to believe about ethics. Therefore, the statement "According to Timmons, ethical theories are hypothetical accounts of why people believe what they happen to believe about ethics" is false.

Regarding the second statement about Moral Relativism, the statement "On Moral Relativism (aka Unrestricted Cultural Relativism), each person gets to decide entirely for themselves which moral rules they must follow" is true. Moral Relativism asserts that moral judgments are relative to individual perspectives or cultural norms, allowing individuals to determine their own moral rules.

Learn more about  According to Timmons, ethical theories   from

https://brainly.com/question/30905011

#SPJ11

Discuss 5 application of ceramics in electrical or electronics engineering. Give a description of the types of ceramics, its properties and specific application Criteria for Grading: Presentation 30% Content -70%

Answers

Ceramics are known for their ability to withstand high temperatures, resist wear and tear, and resist corrosion. They are frequently utilized in a variety of electrical and electronic engineering applications. In this article, we'll go over five of the most popular ceramic applications in electrical and electronic engineering.

Types of ceramics: Ceramic materials may be classified into the following categories:- Non-crystalline ceramics- Partially crystalline ceramics- Crystalline ceramics Properties of ceramics:- Extremely hard- Fragile and brittle- High melting temperature- Resistant to chemicals- Electrically insulating- Can handle high temperatures- Can withstand high pressures Here are 5 popular applications of ceramics in electrical and electronic engineering:1. Insulators Insulators are materials that do not conduct electrical current. As a result, they're frequently employed as coatings or supports in electrical devices. Because they're electrically non-conductive, ceramic insulators are a popular choice.2. Capacitors Ceramic capacitors are frequently employed in electronic circuits due to their capacity to hold electric charge. They are made up of a thin layer of ceramic material coated in metal. These capacitors are used in a variety of electronic circuits, including audio amplifiers and power supplies.3. Resistors Ceramic resistors are frequently used in high-power electronic applications due to their ability to manage current flow. These resistors are made up of ceramic materials with metal coatings. They have the capacity to withstand high temperatures and voltage levels.4. Transducers Transducers are devices that convert one form of energy into another. Piezoelectric ceramics are used in transducers to convert electrical energy into mechanical energy, or vice versa.

To know more about Ceramics visit :

https://brainly.com/question/30545056

#SPJ11

an application needs to process events that are received through an api. multiple consumers must be able to process the data concurrently. which aws managed service would best meet this requirement in the most cost-effective way?0 / 1 pointamazon simple notification service (amazon sns) with a fan-out strategyamazon simple queue service (amazon sqs) with fifo queuesamazon eventbridge with rulesamazon elastic compute cloud (amazon ec2) with spot instances

Answers

The AWS service that would best meet the requirement of processing events received through an API with multiple concurrent consumers in a cost-effective way is Amazon Simple Queue Service (Amazon SQS) with FIFO queues.

SQS provides a reliable, scalable, fully managed message queuing service that enables decoupling and asynchronous communication between distributed software components and microservices. With FIFO queues, messages are processed in the order they are received, which ensures that events are processed sequentially. This is important for workflows where ordering matters, such as financial transactions or logs.

Additionally, SQS offers concurrency handling to allow multiple consumers to process messages from the same queue concurrently. This feature ensures high throughput and reduced latency.

Using Amazon EC2 with spot instances could also work, but it requires more setup and management efforts than using SQS. Moreover, the cost may not be as predictable as with SQS.

Thus, Amazon Simple Queue Service (Amazon SQS) with FIFO queues is the recommended AWS managed service for this requirement.

Learn more about FIFO queues from

https://brainly.com/question/30902000

#SPJ11

Find the solution of the differential equation
Y(k+2)-3y(k+1)+2y(k)=0
Initial condition :y(0)=0 ,y(1)=1

Answers

The solution to the differential equation is

y (k)= (-1/3  ) * 1[tex]^{k}[/tex] +(1/3) * 2[tex]^{k}[/tex]  

= (  -1/3) +(2/3) * 2[tex]^{k}[/tex]

 How is this so ?

To solve the   given differential equation Y(k+2) - 3y (k+1) +2y(k) = 0 with the initial conditions y(0) = 0 and y(1) = 1, we can use the method of characteristic roots.

Let's assume the solution has the form y(k)=   r[tex]^{k}[/tex]. Substituting this into the differential equation, we get   -

[tex]r^k+2[/tex] -  + [tex]2r^k[/tex] = 0

Dividing through by [tex]r^k[/tex], we have

r² - 3r + 2 = 0

This    is a quadratic equation,which can be factored as

(r - 1  ) (r - 2) =0

So, we have two characteristic roots  

r1 = 1 and r2= 2.

The general solution is given by   -

y(k) = A   * [tex]r1^k[/tex] +B * [tex]r2^k[/tex]

Applying the initial conditions, we have -

y(0) = A * 1⁰ + B* 2⁰ =   A + B

= 0 → A = -B

y(1) =A * 1¹ + B * 2¹

=    A + 2B = 1

Solving these equations    simultaneously,we find A = -1/3 and B = 1/3.

Therefore, the solution to the differential equation Y(k+2) - 3y(k+1) + 2y(k) = 0 with the initial conditions y(0) = 0 and y(1) = 1 is  -

y(k )   = (-1/3) * 1[tex]^{k}[/tex] +(1/3) * 2[tex]^{k}[/tex]

= (-1/3) +   (2/3) * 2[tex]^{k}[/tex]

Learn more about differential equation:
https://brainly.com/question/1164377
#SPJ1

while analyzing an intermittent error, james, an independent contractor for hkv infrastructures, finds that the destination host is constantly asking the source to retransmit the data. he finds that the bug might be related to the transport layer of the osi model. since the tcp provides reliable delivery protocols, analyze which of the following characteristics of the tcp protocol james should check to fix this error.

Answers

If James suspects that the issue is related to the transport layer of the OSI model, then he may want to focus on the Transmission Control Protocol (TCP), which is one of the most commonly used transport protocols.

Based on the symptom of the destination host constantly asking for retransmission, it sounds like there may be issues with reliable data delivery. Here are a few characteristics of TCP that James could investigate:

Sequence numbers: TCP assigns a sequence number to each segment it sends, and uses acknowledgement numbers to confirm receipt of those segments by the receiver. If there are errors in the sequence numbers, or if acknowledgements are not being sent or received correctly, this could cause issues with reliable delivery.

Flow control: TCP uses a sliding window mechanism to manage flow control, which means that the sender will only send as much data as the receiver can handle at any given time. If there are issues with this mechanism, such as incorrect window sizes or problems with the receiver's buffer, this could also impact reliable delivery.

Retransmission timers: If a packet is lost or damaged in transit, TCP will initiate a retransmission of that packet after a certain amount of time has elapsed. If these timers are not set correctly, or if they are not being triggered when they should be, this could lead to repeated requests for retransmission.

By investigating these and other characteristics of TCP, James may be able to identify the root cause of the reliability issues and implement a solution to fix the problem.

Learn more about transport layer from

https://brainly.com/question/31486736

#SPJ11

Rod ACD, formed as a circular arc, weighs 290N and is loaded as shown. Din connections are made at A, B and C. Determine the internal forces at point E. ķ 150 mm AP 45° 150 १० E C D BD 200N

Answers

To determine the internal forces at point E, we need to analyze the equilibrium of the forces acting on rod ACD.

Given:

Weight of rod ACD (W) = 290 N

Load at point B (BD) = 200 N

Length of AD = 150 mm

Angle APC = 45°

First, let's resolve the forces acting on rod ACD:

Weight (W) acts vertically downward at point C.

Load at point B (BD) acts vertically downward at point B.

Internal forces at point E consist of an axial force (AE) and a shear force (SE).

Since the rod is in equilibrium, the sum of forces in the vertical direction must be zero:

ΣFy = W + BD - AE = 0

Substituting the given values:

290 + 200 - AE = 0

Solving for AE:

AE = 490 N

To determine the shear force at point E (SE), we can consider the equilibrium of moments about point E. Since the rod is in equilibrium, the sum of moments about any point must be zero:

ΣME = -BD * AB - W * AC - SE * AE = 0

Substituting the given values:

-200 * 150 - 290 * 150 * cos(45°) - SE * 150 = 0

Solving for SE:

SE = -499.35 N

Therefore, the internal forces at point E are an axial force of 490 N (tension) and a shear force of -499.35 N (compression).

Learn more about forces acting on rod ACD. from

https://brainly.com/question/30465865

#SPJ11

4. draw a simple schematic/diagram of signals clk_dv, clk_en, and clk_en_d signals. it should be a translation of the corresponding verilog code.

Answers

The Verilog code translation for the signals clk_dv, clk_en, and clk_en_d:

// Declaring the three signals

wire clk_dv;

wire clk_en;

wire clk_en_d;

// Generating the clk_dv signal by inverting clk_en_d

not #1 clk_en_d_inv(clk_en_d, clk_dv);

// Generating the clk_en_d signal by delaying clk_en through a D flip-flop

d_ff #(1, 0, 0) clk_ff(clk_en, clk_en_d);

A text-based language called Verilog is used to describe electrical circuits and systems. Verilog is designed to be used in electrical design for timing analysis, test analysis (fault grading and testability analysis), logic synthesis, and verification through simulation.

The design and verification of digital circuits at the register-transfer level of abstraction are where it is most frequently utilized. In addition, it is applied to the design of genetic circuits as well as the verification of analogue and mixed-signal circuits.

Learn more about verilog code here:

https://brainly.com/question/31481735

#SPJ4

Match the following terms and identifying phrases.
1. Allow maximum operating speeds by reducing back pressure during cylinder extension or retraction.
2. Pneumatic control circuit that will hold an actuator in a selected position after only momentary input signal.
3. Reduce injuries by preventing inappropriate operation.
4. Also called an FRL unit.
5. Maximize system control Choose.
6. Hold circuit actuators momentarily to allow completion of a task.
7. Produce higher pressure needed in a small section of a system

a.Memory circuit b.Trio unit c.Logic functiond circuit d.Quick-exhaust valve e.Booster circuit f.Safety circuit h.Time-delay circuit

Answers

Based on the given terms and identifying phrases, the matching is as follows: Produce higher pressure needed in a small section of a system - e. Booster circuit

Pneumatic control circuit that will hold an actuator in a selected position after only momentary input signal - h. Time-delay circuit

Reduce injuries by preventing inappropriate operation - f. Safety circuit

Also called an FRL unit - b. Trio unit

Maximize system control - c. Logic function circuit

Hold circuit actuators momentarily to allow completion of a task - a. Memory circuit

Allow maximum operating speeds by reducing back pressure during cylinder extension or retraction - d. Quick-exhaust valve

Learn more about  system - e. Booster circuit  from

https://brainly.com/question/29396299

#SPJ11

when your program is run it should ... the program should use a dictionary of dictionaries to store the stats (wins, losses, and ties) for each player. you can code this dictionary of dictionaries at the beginning of the program using any names and statistics that you want. make sure to provide stats for at least three players. the program should begin by calling a function display names(players) which displays an alphabetical list of the names of the players. the program should then loop to allow the user to view the stats for the specified player by calling display stats(players). if the name does not exist, print a string with the name indicating there is no such player. the program should stop when a non-y value is entered and print a string at the end of the program code must use best practices, including a main() and comments to describe the code.

Answers

An example program that fulfills the given requirements:

python

Copy code

def display_names(players):

   sorted_names = sorted(players.keys())

   print("Player names:")

   for name in sorted_names:

       print(name)

def display_stats(players):

   name = input("Enter the player name: ")

   if name in players:

       stats = players[name]

       print("Stats for", name)

       print("Wins:", stats["wins"])

       print("Losses:", stats["losses"])

       print("Ties:", stats["ties"])

   else:

       print("No such player:", name)

def main():

   players = {

       "Player A": {"wins": 10, "losses": 5, "ties": 3},

       "Player B": {"wins": 7, "losses": 8, "ties": 1},

       "Player C": {"wins": 12, "losses": 2, "ties": 4}

   }

   display_names(players)

   while True:

       choice = input("Do you want to view player stats? (y/n): ")

       if choice.lower() != "y":

           break

       display_stats(players)

   print("Program terminated.")

if __name__ == "__main__":

   main()

In this program, a dictionary of dictionaries named players is used to store the stats for each player. The display_names function prints an alphabetical list of player names. The display_stats function allows the user to enter a player name and displays the corresponding stats if the player exists. The program loops until the user chooses to stop, and finally, it prints a termination message.

Learn more about def display_names(players): from

https://brainly.com/question/26172581

#SPJ11

Other Questions
2. [5pts.] COS X = Solve - 2 sin ZA 2 2 for X: Let Y, Y, Y, denote a random sample from pdf: fo) = ((0+1)y 0 Suppose that a company has used the discounted payback period for investment appraisal and has found that the project will never recover back the initial investment. What do you recommend the company to do? Explain. Assume that the company does not have any specific optimal payback period which partition type identifies the partition as one that holds the boot loader program describe what it means for dna molecules to be semi-conservative. A national survey indicated that 30% of adults conduct their banking online. It also found that 60% are under the age of 50, and that 15% are under the age of 50 and conduct their banking online. a) What percentage of adults do not conduct their banking online? b) What type of probability is the 15% mentioned above? c) Construct a contingency table showing all joint and marginal probabilities. d) What is the probability that an individual conducts banking online given that the individual is under the age of 50? e) Are Banking online and Age independent? 1) Five windows in a house could be either open, ajar, or closed. How many possible states could the windows be? The PRODUCT table contains these columns PRODUCT_ID NUMBER(9) DESCRIPTION VARCHAR2(20) COST NUMBER(5.2) MANUFACTURER ID VARCHAR2(10) Steve want to display product costs with following desired results: 1. The cost displayed for each product is increased by 20 percent. 2. The product manufacturer id must be 25001, 25020, or 25050. 3. Twenty percent of the original cost is less than $4 Which statement should you use? SELECT description, cast 1.20 FROM product WHERE cost. 204.00 AND manufacturer_id IN (25001: 25020 25050): SELECT description cost 20 FROM product WHERE cost 20 4.00 AND manufacturer_id BETWEEN 25001 AND "25050 SELECT description, cost 1.20 FROM product WHERE cost" 204 AND manufacturer_id (25001:25020. 250507: Suppose there is a Chinese firm that could produce a "widget" at a cost of 9qw, where qw is the number of widgets. It can then ship these widgets to a U.S. firm at a transport cost of $1 per unit and for a price of pw. The U.S. firm can then turn one widget into one car at a cost of $10. Cars are then sold on the world market, where inverse demand for cars is given by: P = 500-2Q.If the Chinese firm is a perfect competitor, what is P =Pw =Q = qw =U.S = Chinese = 4. When Interest rate changes, the impact on a bank's earnings depends on the repricing of their assets or liabilities. = $250 Loan A (6%, 1 year) = $100 Loan B (9%, 2 years) = $200 Total Assets Deposit A (3%, 3 months) Deposit B (5%, 1 year) Total Liabilities = $50 = $300 =$300 a. The average maturity of its assets is larger than that of its deposits, as is typical of most banks. The net interest margin or spread is ( 4.7% ). b. Assume that the deposit rates three months later increase from 3% to 4.5%. The spread will be reduced to ( 3.42% from 4.7%. which method of code breaking tries every possible combination of characters in an attempt to ""guess"" the password or key? Question 86 2 pts A firm is producing 1,000 units at a total cost of $5,000. If it were to increase production to 1,001 units, its total cost would rise to $5,008. What does this information tell you about the firm? O MC=$8, ATC=$5 O MC=$8, AVC = $5 O MC=$5, ATC=$8 O MC = $5, AFC=$8 "Human resource accounting is the process of identifying and reporting investments made in the human resources of an organization that are presently unaccounted for in the conventional accounting practices." Why is this so? write medical use of cannabis in curing cancer. Would you break the law if your relative was suffering through it ? The Vermilion flycatcher (Pyrocephalus rubinus)is a small bud species native to the Galapagos Islands. You are a conservation ecologist interested in determining which (actors are responsible foe limiting its population size. You collect data at sites featuring different densities of this species and display these data graphically. Based on the four graphs below, which population measure has the largest limiting effect on populations? As part of Sushil's performance review, she was given a list of goals and objectives. How will her work on these goals affect her in the future?a. They will create a new mission for the organization.b. They will replace the need for tactical plans.c. They will serve as a mechanism for performance evaluation.d. They will allow her to maximize her potential.e. They will allow her manager to plan future work. The theoretical output that could be attained if a process were operating at a full speed without interruption is called A. Maximum capacity B. Effective capacity C. Capability D. Efficiency E. Design capacity Your parents will retire in 19 years. They currently have $300,000 saved, and they think they will need $1,050,000 at retirement. What annual interest rate must they earn to reach their goal, assuming they don't save any additional funds? Round your answer to two decimal places. Answer the 3 questions below. Provide the reasoning behind your answer AND comment on another student's post (provide constructive feedback).Think of a company from which you buy a product or service (any company, online/store front). Specify when and where you share data with that company.Do you believe the company does a good job collecting data from these encounters? Why? (Respond in at least 3 sentences)Now, think of another company from which you have purchased a product and been disappointed. Identify the CRM process that may be at fault. Specify how that process could be improved. (Respond in at least 3 sentences) A $3000, 8.5% bond redeemable at par in seven years bears coupons payable annually. Compute the premium or discount and the purchase price if the yield, compounded annually, is 7%, 8%, and 9%. The purchase price of the 7% yield bond is _____$. The 7% yield bond is sold at a premium of ______$. The purchase price of the 8% yield bond is __________$. The 8% yield bond is sold at a premium of _____$