is sampled at a rate of to produce the sampled vector and then quantized. Assume, as usual, the minimum voltage of the dynamic range is represented by all zeros and the maximum value with all ones. The numbers should increase in binary order from bottom to top. Find the bit combination used to store each sample when rounded to the nearest integer between and (clipping may occur). Note: A partially-correct answer will not be recognized. You must answer all three correctly on the same

Answers

Answer 1

Answer:

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011

Explanation:

Assume that the number of bits is 8. The voltage range input is -8 to 7 volts. The range is thus 15V, and the resolution is 15/2^8 = 0.0586 volts. We will first add +8 to the input to convert it to a 0-15v signal. Then find the equivalent bit representation. For 7.8 volts, the binary signal will be all 1's, since the max input voltage for the ADC is 7 volts. For 4.95, we have 4.95+8 = 12.95 volts. Thus, N = 12.95/0.0586 = 221. The binary representation is 11011101. For -0.8, we have -0.8 + 8 = 7.2. Thus, N = 7.2/0.0586 = 123. The binary representation is 1111011.

Thus,

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011


Related Questions

Two Electric field vectors E1 and E2 are perpendicular to each other; obtain its base
vectors.

Answers

Answer:

<E1, E2>.

Explanation:

So, in the question above we are given that the Two Electric field vectors E1 and E2 are perpendicular to each other. Thus, we are going to have the i and the j components for the two Electric Field that is E1 and E2 respectively. That is to say the addition we give us a resultant E which is an arbitrary vector;

E = |E| cos θi + |E| sin θj. -------------------(1).

Therefore, if we make use of the components division rule we will have something like what we have below;

x = |E2|/ |E| cos θ and y = |E1|/|E| sin θ

Therefore, we will now have;

E = x |E2| i + y |E1| j.

The base vectors is then Given as <E1, E2>.

Air at 100°F, 1 atm, and 10% relative humidity enters an evaporative cooler operating at steady state. The volumetric flow rate of the incoming air is 1765 ft3/min. Liquid water at 68°F enters the cooler and fully evaporates. Moist air exits the cooler at 70°F, 1 atm. There is no significant heat transfer between the device and its surroundings and kinetic and potential energy effects can be neglected. Determine the mass flow rate at which liquid enters, in lb(water)/min.

Answers

Answer:

Check the explanation

Explanation:

Kindly check the attached image below to see the step by step explanation to the question above.

A steady green traffic light means

Answers

You can continue on forward through the traffic light....

Answer:

Its C. you may proceed, but only if the path is clear

Explanation:

I just gave Quiz and  its correct

Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost. 2. Derive a class BulkDiscount from DiscountPolicy, as described in the previous exercise. It should have a constructor that has two parameters, minimum and percent. It should define the method computeDiscount so that if the quantity purchased of an item is more than minimum, the discount is percent percent. 3. Derive a class BuyNItemsGetOneFree from DiscountPolicy, as described in Exercise 1. The class should have a constructor that has a single parameter n. In addition, the class should define the method computeDiscount so that every nth item is free. For example, the following table gives the discount for the purchase of various counts of an item that costs $10, when n is 3: count 1 2 3 4 5 6 7 Discount 0 0 10 10 10 20 20

4. Derive a class CombinedDiscount from DiscountPolicy, as described in Exercise 1. It should have a constructor that has two parameters of type DiscountPolicy. It should define the method computeDiscount to return the maximum value returned by computeDiscount for each of its two private discount policies. The two discount policies are described in Exercises 2 and 3. 5. Define DiscountPolicy as an interface instead of the abstract class described in Exercise 1.

Answers

Answer:

Java Code was used to define classes in the abstract discount policy,The bulk discount, The buy items get one free and the combined discount

Explanation:

Solution

Code:

Main.java

public class Main {

public static void main(String[] args) {

  BulkDiscount bd=new BulkDiscount(10,5);

BuyNItemsGetOneFree bnd=new BuyNItemsGetOneFree(5);

CombinedDiscount cd=new CombinedDiscount(bd,bnd);

System.out.println("Bulk Discount :"+bd.computeDiscount(20, 20));

  System.out.println("Nth item discount :"+bnd.computeDiscount(20, 20));

 System.out.println("Combined discount :"+cd.computeDiscount(20, 20));    

  }

}

discountPolicy.java

public abstract class DiscountPolicy

{    

public abstract double computeDiscount(int count, double itemCost);

}    

BulkDiscount.java  

public class BulkDiscount extends DiscountPolicy

{    

private double percent;

private double minimum;

public BulkDiscount(int minimum, double percent)

{

this.minimum = minimum;

this.percent = percent;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if (count >= minimum)

{

return (percent/100)*(count*itemCost); //discount is total price * percentage discount

}

return 0;

}

}

BuyNItemsGetOneFree.java

public class BuyNItemsGetOneFree extends DiscountPolicy

{

private int itemNumberForFree;

public BuyNItemsGetOneFree(int n)

{

  itemNumberForFree = n;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if(count > itemNumberForFree)

return (count/itemNumberForFree)*itemCost;

else

  return 0;

}

}

CombinedDiscount.java

public class CombinedDiscount extends DiscountPolicy

{

private DiscountPolicy first, second;

public CombinedDiscount(DiscountPolicy firstDiscount, DiscountPolicy secondDiscount)

{

first = firstDiscount;

second = secondDiscount;

}

at Override

public double computeDiscount(int count, double itemCost)

{

double firstDiscount=first.computeDiscount(count, itemCost);

double secondDiscount=second.computeDiscount(count, itemCost);

if(firstDiscount>secondDiscount){

  return firstDiscount;

}else{

  return secondDiscount;

}

}  

}

How does a car batteray NOT die?

Answers

Answer:

bye hooking plugs up to it to amp it up

Find a negative feedback controller with at least two tunable gains that (1) results in zero steady state error when the input is a unit step (1/s). (and show why it works); (2) Gives a settling time of 4 seconds; (3) has 10% overshoot. Use the standard 2nd order approximation. Plot the step response of the system and compare the standard approximation with the plot.

Answers

Answer:

Gc(s) = [tex]\frac{0.1s + 0.28727}{s}[/tex]

Explanation:

comparing the standard approximation with the plot attached we can tune the PI gains so that the desired response is obtained. this is because the time requirement of the setting is met while the %OS requirement is not achieved instead a 12% OS is seen from the plot.

attached is the detailed solution and the plot in Matlab

Sludge wasting rate (Qw) from the solids residence time (Thetac = mcrt) calculation. Given the following information from the previous problem. The total design flow is 15,000 m3/day. Theoretical hydraulic detention time (Theta) = 8 hours. The NPDES limit is 25 mg/L BOD/30 mg/L TSS.

Assume that the waste strength is 170 mg/L BOD after primary clarification.

XA=MLSS = 2200 mg/L,
Xw = Xu = XR = 6,600 mg/L,
qc = 8 days.

Make sure you account for the solids in the discharge.

What volume of sludge (Qw=m3/day) is wasted each day from the secondary clarifiers?

Answers

Answer:

The volume of sludge wasted each day from the secondary classifiers is Qw = 208.33 m^3 / day

Explanation:

Check the file attached for a complete solution.

The volume of the aeration tank was first calculated, V = 5000 m^3 / day.

The value of V was consequently substituted into the formula for the wasted sludge flow. The value of the wasted sludge flow was calculated to be Qw = 208.33 m^3 / day.

Other Questions
9. Farrah hasn't been feeling well for several days. She knows her boss is not super understanding when it comesshe's in rough shape. What should she do?calling in sick, and it's a really busy time at work, but shes in rough shape what should she do.A. Go to work but wear a mask to cover her mouthB. Stay home for at least a day to keep from spreading germsC. Go in but try to avoid coming into contact with othersD. Plan to go in but come home after lunch if she doesn't feel better 13421 + = + = 74 Levine Company uses the perpetual inventory system. Apr. 8 Sold merchandise for $9,300 (that had cost $6,873) and accepted the customer's Suntrust Bank Card. Suntrust charges a 4% fee. 12 Sold merchandise for $5,000 (that had cost $3,240) and accepted the customer's Continental Card. Continental charges a 2.5% fee. Prepare journal entries to record the above credit card transactions of Levine Company write it as a product: -[tex]ax^{6}[/tex]+[tex]\frac{1}{8}[/tex] Body systems in the human body work together to support the essential life functions of the body. The urinary system interacts with the cardiovascular system in several significant ways. Which of these is NOT an accurate interaction between the two body systems?A)The kidneys secrete an enzyme called rennin that helps control blood pressure.EliminateB)The kidneys filter metabolic waste products and toxins from blood for excretion from the body in urine.C)The kidneys excrete a great amount of sodium and water helping control sodium concentration and blood pressure.D)The kidneys secrete erythropoietin, a hormone which stimulates the production of white blood cells in the body. Write a problem that could be modeled with y=200(0.9). How does the author organize ideas in the passage? (im very confused on this one) can you please summarize The Untiming of Ben and Ruby: Episode 5 help me fill in the blanks pleasee Carlinville Car Parts, Inc. has been provided by its lenders and owners with $46,000,000 to purchase assets. The most recent income statement showed Earnings Before Interest and Taxes (EBIT, or Operating Income) of $10,500,000, and net income of $3,950,000. Income tax was paid at a 25% average annual rate. What was Return on Invested Capital (ROIC) for the year? Inside the retina of our eyes are receptors called rods and cones. Rods measure the brightness we see and cones determine _____. A) the color we seeB) the white we seeC) the dimness we seeD) the loudness we hear Which is NOT true about religious divisions after the Reformation? *1 pointO most of Northern Europe become ProtestantO most of Southern Europe stayed Catholicthe official religion of England was Calvinistthe European countries spread their religion to their colonies in America what is the solution of this system of linear equations? y=2x-3 2x=y-3a. infinitely many solutionsb. (0, -3)c. (0,0)d. no solution a box cost $2.48, but it is on sale for $1.49. How much do you save on one box when bought on sale? Now how much would you save if you bought a second box? 0.5 moles of CO2 have a volume of 50 L and a pressure of 0.8210 atm. What must be the temperature of the gas? Read the excerpt from The Inheritors. EMIL: Guess you don't know much about the Espionage Act or you'd go and make a little friendly call on your uncle. When your case comes to trialand Judge Lenon may be on the bench(whistles) He's one fiend for Americanism. What best describes the effect of the word fiend in this excerpt? Triangle XYZ is a right triangle.Use the drop downs to determine the length of the legs of the right triangle.What is the length of Side X Z?What is the length of Size Y Z? To what other holiday does Douglass compare the Fourth of July? Who were the Puebloans? B and T cells of the immune system have unique B and T cell surface receptors (respectively) as shown above. What is the function of the variable and the constant regions of the B and T cell receptors of the vertebrate immune system? A)There will be an increase in inflammatory response during an innate immune response. B)There will be a decrease in allergic responses on the part of the individual to allergens in the environment. C)There will be an increase in variety of the shape of the B and T cell receptors, allowing them to recognize and destroy more pathogens. D)There will be a decrease in pathogens that can enter the body, resulting in a decrease of antibodies present and circulating in the blood.