This passge below require analsyis and breakdown A decision tree is a decision support tool that...

This passge below require analsyis and breakdown


A decision tree is a decision support tool that uses a tree-like graph or model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements. (Brid, 2018) I choose the tree decision and I chose to use it on picking an outfit for work. In this model it’s much easier to have an understanding of the changes that are made if any. I have chosen this method as this is very simple to understand and we can add no of nodes to our decision if something we need to change very easily as compared to any mathematical model. You can refer to this tree shown below to make a decision.


critically analyze the passage

In: Economics

chemistry please I need report for lap experiment : 1- testing salt for cations 2- testing...

chemistry

please I need report for lap experiment :

1- testing salt for cations
2- testing salt for anions
3- titration

hint:
please send copy to my email
[email protected]

In: Chemistry

Complete the following dihybrid crosses. Draw out the Punnett for the F1 generation and the F2...

Complete the following dihybrid crosses. Draw out the Punnett for the F1 generation and the F2 generation.

  1. In Drosophila, fruit flies, individuals with ebony body color and vestigial (small) wings represent the homozygous recessive. If you crossed an individual that was homozygous dominant (normal) for both genes with an individual that was homozygous recessive for both genes, you would observe the following:

a. phenotypic ratio in the F1

b. phenotypic ratio in the F2

c. genotypic ratio in the F1

d. genotypic ratio in the F2

In: Biology

1) At 25

1) At 25

In: Chemistry

ArrayStack: package stacks; public class ArrayStack<E> implements Stack<E> {    public static final int CAPACITY =...

ArrayStack:

package stacks;
public class ArrayStack<E> implements Stack<E>
{
   public static final int CAPACITY = 1000; // Default stack capacity.
   private E[] data; //Generic array for stack storage.
   private int top = -1; //Index to top of stack./*** Constructors ***/
   public ArrayStack()
   {
       this(CAPACITY);
       }
   //Default constructor
   public ArrayStack(int capacity)
   {
       // Constructor that takes intparameter.
       data = (E[]) new Object[capacity];
       }
   /*** Required methods from interface ***/
   public int size()
   {
       return (top + 1);
       }
   public boolean isEmpty()
   {
       return (top == -1);
       }
   public void push(E e) throws IllegalStateException
   {
       if(size() == data.length)
       {
           throw new IllegalStateException("Stack is full!");
           }
       data[++top] = e;
       }
   public E top()
   {
       if(isEmpty())
       {
           return null;
           }
       return data[top];
       }
   public E pop()
   {
       if(isEmpty())
       {
           return null;
           }
       E answer = data[top];
       data[top] = null;
       top--;
return answer; }
}

Recall: In the array based implementation of the stack data type, the stack has a limited capacity due to the fact that the length of the underlying array cannot be changed. In this implementation, when a push operation is called on a full stack then an error is returned and the operation fails. There are certain applications where this is not useful. For example, a stack is often used to implement the \undo" feature of text editors, or the \back" button in a web browser. In these cases, it makes sense to remove the oldest element in the stack to make room for new elements. A similar data structure, called a leaky stack is designed to handle the above type of situation in a dierent manner. A leaky stack is implemented with an array as its underlying storage. When a push operation is performed on a full leaky stack, however, the oldest element in the stack is \leaked" or removed out the bottom to make room for the new element being pushed. In every other case, a leaky stack behaves the same as a normal stack. Write an implementation of the leaky stack data structure. Your class should be generic and implement the following public methods: push, pop, size, and isEmpty. Your class must also contain at least two constructors: one where the user does not specify a capacity and a default capacity of 1000 is used, and one where the user does specify a capacity.

Hint: The following is a skeleton of the class to get started (You will have to fill in the missing implementations of the abstract methods from the Stack interface):

public class LeakyStack implements Stack {

public static final int DEFAULT = 1000;

private E[] stack; private int size = 0;

private int stackTop = -1;

public LeakyStack()

{

this(DEFAULT);

}

public LeakyStack(int c);

public void push(E e);

public E pop();

public boolean isEmpty();

public int size(); }

In: Computer Science

Please look at the use of commercials and the use of commercials to advertise to children....

Please look at the use of commercials and the use of commercials to advertise to children.

Make sure you articulate some of the ethical issues you discover in commercials that target children.

In: Psychology

Consider the titration of a 20.0mL sample of 0.105M HC2H3O2 with 0.125M NaOH. Determine each of...

Consider the titration of a 20.0mL sample of 0.105M HC2H3O2 with 0.125M NaOH. Determine each of the following. a) Initial pH b) the volume of added base required to reach the equivelence point c) the pH at 5.0 mL of added base d) the pH at one-half of the equivelence point e) the pH at the equivelence point f) ph after adding 5.0ml of base beyond the equivalence point

In: Chemistry

Opportunity A: a "me-too" oncology drug currently in Phase 3 clinical trials that requires a $100...

  • Opportunity A: a "me-too" oncology drug currently in Phase 3 clinical trials that requires a $100 million investment today (year 0), and if successful, provides annual profits of $100 million over its remaining 10 year patent starting in year 3 (otherwise it returns nothing). Suppose the probability of success is 50%.
  • Opportunity B: a combination therapy of blinatumomab and chemotherapy designed to cure acute lymphoblastic leukemia that requires a $200 million investment today (year 0), and if successful, provides annual profits of $2 billion over its remaining 10 year patent starting in year 11 (otherwise it returns nothing). Suppose the probability of success is 5%.

A) What are the expected annual cash flows of opportunity A for years 3 to 12? (Note: Your answer should be expressed in units of millions of dollars.)

Expected annual cash flow = $___ million

B) What are the expected cash flows of opportunity B for years 11 to 20? (Note: Your answer should be expressed in units of millions of dollars.)

Expected annual cash flow = $____ million

C) Suppose we calculate the NPV of each opportunity by discounting the expected cash flows. Assume a discount rate of 12% per year for opportunity A, and 20% per year for opportunity B. What is the NPV of each opportunity? (Note: Your answer should be expressed in units of millions of dollars.)

NPV opportunity A = $____ million

NPV opportunity B = $____ million

In: Finance

Add up the total grams of organic material extracted via 3 extractions and compare it to...

Add up the total grams of organic material extracted via 3 extractions and compare it to the grams extracted with only 1 extraction. What conclusions can you make about the use of multiple extractions?

In: Chemistry

Create a class called Cuboid in a file called cuboid.py. The constructor should take parameters that...

Create a class called Cuboid in a file called cuboid.py. The constructor should take parameters that sets a private variable for each side of the cuboid. Overload the following operators: +, -, <, >, ==, len(), and str(). Return a cuboid with the appropriate volume for the arithmetic operators. Use the volume of the cuboid to determine the output of the overloaded comparison operators. Use the surface area of the cuboid to calculate the result of len(). For str() return a string that displays the side lengths, volume, and surface area. Let the user enter values used to create two Cuboid objects. Then print out all results of the overloaded operators (using the operator, not calling the dunder method). Create a file called assn14-task1.py that contains a main() function to run your program. It is fine for the program to only run once then end. You DO NOT need to create loop asking use if they want to "Play Again".

Note: The most complicated part of this is the + and -. Remember that arithmetic operators should return the same type as the operands, so a cuboid should be returned. The returned cuboid is based on the volume, which means you'll need to figure out what the side lengths should be. They can be anything valid.

 

Rubric

5 pts: All operators overloaded properly

5 pts: Print results using the overloaded operators

5 pts: Proper output

Note: No software dev plan or UML required

In: Computer Science

2.Some tumor suppressor genes inactivated during multi-step tumorigenesis may be readily identified because of LOH in...

2.Some tumor suppressor genes inactivated during multi-step tumorigenesis may be readily identified because of LOH in the chromosomal region carrying them, while others may be difficult to identify in this way. Describe the factors that allow or complicate this identification.

In: Anatomy and Physiology

To gain approval for a new network design, upgrade, or enhancement, you will have to present...

To gain approval for a new network design, upgrade, or enhancement, you will have to present your network design, project costs, and project plan to all the stakeholders, which includes senior leadership. Through the last five weeks, you have created your network design, and now it is time to promote that design and get approval for this project.

During the course, you have designed a network to meet the specific needs of your client. Now, it is time to showcase that design. When you are dealing with a client, communication plays a key role in your professional success. You may have a very effective design, but you may not still be able to achieve maximum client satisfaction if you cannot communicate your design to your client properly.
For this part of the Final Project, review this week’s resources. Give special attention to the resource “Oral Presentation and PowerPoint.” Remember the following when developing the presentation:

Keep the presentation short and simple.


Do not load the presentation down with paragraphs of text. Keep it simple and use images.


Make sure that the presentation is informative and that it uses facts and figures.


When presenting to a non-technical audience, try to refrain from making it too technical. Remember that the presentation would normally be presented to leadership who most likely will not understand the technical information.


Explain clearly to the leadership the costs and benefits that the network will offer to the organization.


Presentation (6–10 slides):
Create a PowerPoint presentation with a narrative overlay. The overall slide show must be in the 8–10 minute range. The presentation must be engaging, organized, easy to understand, appropriate for the intended audience, and complete the following:

Introduce the presentation


Describe the network in layman’s terms


Identify how the network meets each specific client need


Describe how the network ensures security


Provide technical details with which the client needs to be familiar


Instruct the client on any technical needs for supporting the network


Summarize the presentation


Note: To complete this presentation, you must have Microsoft PowerPoint 2007 or a higher version loaded on your computer. In addition, you must have a microphone to record your oral narrative to accompany the presentation.
Once the PowerPoint slides are complete, you have created a written copy of the narrative, and you have tested the narrative to be sure it is the proper overall length (time), you will embed the oral narrative into the file. To embed the narrative, complete the following steps.
Beginning with the first slide:

Select the Slide Show Tab—Record Narration—Set microphone level.

Talk into your microphone to make sure it is working properly.


Click OK—Begin your narrative for the first slide.


Advance to the next slide (left click)—Be sure you are done speaking before you left click.


Record the narrative for the second slide.


Continue advancing through the slides and recording your narrative.


After the last slide, you will be asked if you want to save the slide timings—Select SAVE.


Now start your slide show. The show will progress at the pace you set while creating the narrative for each slide.


If you need to redo the recording, simply go back to the first slide. Then, select the Slide Show Tab and re-record your narrative, or you may choose to re-record just one slide at a time.


REPEAT steps 1–8 until you are satisfied with the presentation and your slide show is completed in 6–10 minutes.


Save the PowerPoint presentation with embedded narrative.
Submit your Final Project Part 5 through uploading your file (saving it according to the filenaming convention specified in this Assignment’s submission link) by Day 5.

In: Computer Science

introduction for PH titration of vinegar

introduction for PH titration of vinegar

In: Chemistry

Due to Covid-19, businesses have had to shift how they market their products and services. I...

Due to Covid-19, businesses have had to shift how they market their products and services. I would like to see an example that you feel did a great job of this over the last couple of months. PLEASE USE WALMART

  1. Does your product/company do Retail Marketing? How has it changed? Provide a few sentences of detail.

6. How do you think the company/brand/product/service you selected can utilize this to create a competitive advantage? Provide a few sentences of detail.

In: Operations Management

Looking Good Co. has identified an investment project with the following cash flows. Year 1 $1000,...

Looking Good Co. has identified an investment project with the following cash flows. Year 1 $1000, Year 2 $200, Year 3 $800 and Year 4 $1500. If the discount rate is 12%, what is the present value of these cashflows?

In: Finance