Questions
             The challenge for companies to be competitive is to reach international markets. To explore foreign...

            

The challenge for companies to be competitive is to reach international markets. To explore foreign market, 10 countries were selected from each of four global regions. The data on the cost associated with importing a cargo of goods by sea transport in these countries (in US$ per container) was collected.

  1. What is the response variable in this experiment?                                                                 

  1. Name the factor in this experiment and the number of levels of the factor.                         

  1. Complete the ANOVA table. (Full marks will be awarded for showing the calculations).   

ANOVA

Source of Variation

SS

Df

MS

F

p - value

Between Groups

  785464

Within Groups

41049

Total

  1. At the 0.05 level of significance, is there evidence of a difference in the mean cost of importing across the four global regions? (Show all steps and the needed calculations of hypothesis testing)     (4   marks)                                               

In: Statistics and Probability

Miller Model with Corporate and Personal Taxes Cruz Corporation has $100 billion of debt outstanding. An...

Miller Model with Corporate and Personal Taxes

Cruz Corporation has $100 billion of debt outstanding. An otherwise identical firm has no debt and has a market value of $450 billion. Under the Miller model, what is Cruz’s value if the federal-plus-state corporate tax rate is 28%, the effective personal tax rate on stock is 17%, and the personal tax rate on debt is 29%? Enter your answer in billions. For example, an answer of $1.23 billion should be entered as 1.23, not 1,230,000,000. Round your answer to two decimal places.

In: Finance

Black body (b) and purple eye (pr) are recessive autosomal mutations in Drosophila. Bridges crossed b/b...

Black body (b) and purple eye (pr) are recessive autosomal mutations in Drosophila. Bridges crossed b/b females and pr/pr males. F2 cross produced 684 wild-type, 371 black-bodied, and 300 purple-eyes flies. Do these result indicate that the b and pr genes are closely linked? Explain. Remember that there is no crossing over in male Drosophila

In: Biology

What new technologies were important in the history of bridges? Why did the Romans use elevated...

What new technologies were important in the history of bridges?

Why did the Romans use elevated aqueducts instead of pipes to convey their water?

Which of the Grand Challenges for the 21st century do you believe is most important? why? which challenge do you believe to be the least important? why? what challenges do you believe should be added to the list why?

In: Civil Engineering

1. a) Huygens' Principle. Pick a type of propagation of waves that light rays don't exhibit....

1. a) Huygens' Principle. Pick a type of propagation of waves that light rays don't exhibit. Several to pick in the notes. On a sheet of paper, graph the starting wavefront of your choice, and continue with the Huygens' Principle construction of at least 4 additional wavefronts. Does it look like the wave movement can not be described as a ray?

b) Name and describe one of the three processes mentioned that allow you to calculate intensity profile on a viewing screen behind a single slit screen.

c) You perform two experiments with a given laser: First with a single slit of width 1 mμ, and the other with two very narrow slits spaced also by 1 mμ. The viewing screen is two meters away. What will be larger, the width of the central maximum in the single-slit experiment, or the distance between the central maximum and the neighboring maximum in the double-slit experiment? Explain.

d) A pinhole camera is a closed cube that has a pinhole in the center of the front wall and a film on the back wall. If the side of the cube is 10 cm, how wide should the pinhole be for camera not to exhibit significant diffraction effects?

e) What was the principal equipment used in the Michelson-Morley experiment, and what was the conclusion of the experiment?

In: Physics

Consider a concentration cell. Two Ag-electrodes are immersed in AgNO3 solutions of different concentrations. When the...

Consider a concentration cell. Two Ag-electrodes are immersed in AgNO3 solutions of different concentrations. When the two compartments have an AgNO3-concentration of 1 M and 0.1 M, respectively, the measured voltage is 0.065 V (note: T in not necessarily = 25°C !).

a. What is the voltage, if the two compartments have AgNO3-concentration of 1 M and 0.01 M, respectively?

The electrochemical behavior of silver nanoclusters (Agn, with n the number of Ag atoms in the cluster) is investigated using the following electrochemical cells at 298 K:
I. Ag(s) | AgCl (saturated) || Ag+(aq, 0.01M) | Ag(s), E=0.170
II. (Pt electrode) Agn (s, nanocluster) | Ag+(aq, 0.01M) || AgCl (saturated) | Ag(s), with E = +1.030 V for Ag5 nanocluster and E = +0.430 V for Ag10 nanocluster

The standard reduction potential for Ag+ + e- → Ag, is E0 = +0.800 V.

b. Use this data to calculate the solubility product of AgCl.

The two nanoclusters Ag5 and Ag10-nanoclusters have standard potentials different from the potential of metallic bulk silver.

c. Calculate the standard potentials of Ag5 and of Ag10 nanoclusters. [for this part use Ksp(AgCl)=1.800·10-5; this is not the same value as calculated in b.]

d. What happens, if you put the Ag10 nanoclusters and – in a second experiment – the Ag5 nanoclusters into an aqueous solution of pH=5? Estimate the consequences using the reduction potentials you calculated.

In: Chemistry

Create “New Class…” named Book to store the details of a book Declare 3 fields for...

  • Create “New Class…” named Book to store the details of a book
  • Declare 3 fields for the details of the book:
  • field named author of type String
  • field named title of type String
  • field named callNumber of type String
  • Add overloaded constructors with the following headers and make sure each constructor has only 1 statement in the body that makes an internal method call to setBookDetails:
  1. public Book(String author, String title, String callNumber)
  2. public Book(String author, String title)

HINT: Initialize the callNumber field to an empty String in #2 constructor

  • Add accessor method getAuthor to return the author field
  • Add accessor method getTitle to return the title field
  • Add accessor method getCallNumber to return callNumber field
  • Add accessor method getBookDetails to return a String in the format:

“<title> :   <author> (<callNumber>)”

HINT: Complete with ONLY 1 line of code using String concatenation

  • Add mutator method setBookDetails with the following header to will initialize the fields to these parameters of the same name:

      public void setBookDetails(String author, String title, String callNumber)                    

NOTE: Use method call getBookDetails where the details of a book are needed (i.e. when listing/printing books or supplying information about a particular book)

  • Create “New Class…” named Genre to store a group of books
  • Import all necessary Java package library classes
  • Declare 2 fields for each genre:
  • field named genreName of type String
  • field named books of type ArrayList of Book
  • Write a constructor (with the following header) to initialize BOTH fields

public Genre(String genreName)

HINT: Make sure you instantiate a new books ArrayList object

  • Add accessor method getGenreName to return the genreName field
  • Add accessor getGenreBooks to return the books field
  • Add accessor getNumberOfGenreBooks returning # of items in the books
  • Add a method (with header below) to check if an index is valid in books

public boolean bookIndexValid(int index)

HINT: First make sure books collection is NOT null or empty

  • Overload method addGenreBook (with the following headers) to add a new book to the genre using the ArrayList .add method
  1. public void addGenreBook(Book book)
  2. public void addGenreBook(String author,String title,String callNumber)

HINT: Make sure you create a new Book object in #2

  • Add method to return the index (or –1, if not found) of the FIRST book in ArrayList books that EXACTLY matches a particular callNumber

public int findGenreBookWithCallNumber(String callNumber)

  • Use 2 local variables (index and searching) along with a while loop
  • (Only after ENTIRE search loop is completed - thus, outside of loop)    Check (using searching) if match was found, to determine the return value
  • (At some point) Print formatted book details (if found) or error (if not found)
  • Add method to remove ONLY the FIRST book in books matching callNumber:

public void removeGenreBookWithCallNumber(String callNumber)                                                               

  • MUST 1st use findGenreBookWithCallNumber( ) to find index of callNumber
  • if bookIndexValid( ) of the returned index, then perform removal using the index and then print formatted output “Removing: <book details>”
  • else print "NO book with call number: <callNumber>”

HINT: MUST NOT use any type of loops at all

  • Add method to remove ALL items in books matching a particular author

public void removeAllGenreBooksByAuthor(String author)                                                            

  • MUST use Iterator and while loop to search through the books ArrayList
  • Remove book if author EXACTLY matches (without case-sensitivity)
  • MUST print book details for EACH removed or 1 error output (if not found)

HINT: MUST use .remove method from Iterator to ensure proper removals

  • Add method void listAllGenreBooks( ) to print out ALL items in books
  • if books ArrayList is empty, print ”NO books to print”
  • else print heading “<genreName> BOOKS:” and use for-each to print each Book’s book details with leading “ <spaces>” on its own line
  • Add void listGenreBooksByAuthor(String author) to print ALL author matches
  • Always print heading: “<genreName> BOOKS BY AUTHOR <author>:”
  • Use for-each and String.equalsIgnoreCase( ) to check every book in books to find author matches to print their book details with leading “ <spaces>”

(Only after ENTIRE search loop is completed - thus, outside of loop)    Check if NO match found, then print ”NO books by author: <author>”

  • Create “New Class…” Library for a group of genres and a book of the week
  • Import all necessary Java package library classes
  • Declare 2 fields for each library:
  • field named bookOfTheWeek of type Book
  • field named genres of type ArrayList of Genre
  • Write a constructor with header public Library( ) to initialize both fields

HINT: Include instantiation of a new genres ArrayList object AND initialize bookOfTheWeek to either null or use (optional) pickBookOfTheWeek( )

  • Add method int getNumberOfTotalBooks to return the TOTAL number of books in the ENTIRE library (include ALL genres) or 0 if there are NO books

HINT: MUST use for-each loop and call to getNumberOfGenreBooks( )

  • Overload method addGenre (with the following headers) to add a new genre to the library using the ArrayList .add method:
  1. public void addGenre(Genre genre)                                                                         
  2. public void addGenre(String genreName)

HINT: MUST create and use a new Genre anonymous object in #2.

  • Add method void removeGenre(String genreName) to remove the FIRST genre ONLY in ArrayList genres matching the genreName search parameter                                 

HINT: MUST use Iterator to help get the genre to remove it and also include any formatted output detailing the removal or an error message (if not found)

  • Add method void listAllGenres( ) to print out ALL genreNames in genres with a heading format: “THE GENRE NAMES:” (or error msg if NO genres)

HINT: Use for-each and print formatted genre info with leading spaces “     ”

  • Add method void listAllLibraryBooks( ) to print out ALL books in ALL genres in the ENTIRE library                                               

HINT: First check using getNumberOfTotalBooks that the library has books and print error message if there are NO books in the entire library

HINT: MUST use Iterator and listAllGenreBooks to help print the books for each genre (Yes, I know it’s possible w/o an Iterator, BUT you MUST use it !!!)

Add method void printBookOfTheWeek( ) to print out the details of the bookOfTheWeek or an error stating that ”There is NO Book of the Week”HINT: MUST have a heading and use getBookDetails( ) to print the details

  • Add method void pickBookOfTheWeek( ) to randomly pick a Book in the entire library from any of the genres as the bookOfTheWeek                                               

HINT: First check that Library has books to chose from, then use Random to pick a random Genre. Then, MUST check the chosen Genre has books before picking a random Book from the randomly selected genre. If there are NO books in the selected genre, then repeat the loop by trying another genre. Remember to call getGenreBooks and printBookOfTheWeek (as needed)

In: Computer Science

Which of the following statements is true of American teenagers who are part of Generation Z?...

Which of the following statements is true of American teenagers who are part of Generation Z?

a. They are typically non-Hispanic and white.

b. They represent the largest cohort group.

c. They enjoy risky behaviors and have higher rates of underage drinking.

d. The majority will often buy a brand that has a positive social or environmental impact than one that doesn’t.

In: Economics

How do women and men compare in the pursuit of academic degrees? The table below present...

How do women and men compare in the pursuit of academic degrees? The table below present counts (in thousands) from the Statistical Abstract of degrees earned in 1996 categorized by the level of the degree and the sex of the recipient.

Bachelor Master Professional Doctorate Totals

Female 642 227 32 18

Male 522 179 45 27

Totals

i. Explain why sex is the independent variable.

j. Describe the differences in degree distribution between men and women. Use appropriate percentages.

k. Are these differences significant? Use an appropriate statistical test (with ? = 0.01) to determine whether sex and academic degree are independent.

l. Find lambda for this table. What does this tell us?

In: Statistics and Probability

Week 3 Case Study, Information Literacy: A Road to Evidence-Based Practice Nursing student Melissa is working...

Week 3 Case Study, Information Literacy: A Road to Evidence-Based Practice

Nursing student Melissa is working on her patient care plan for this week’s clinical experience. Melissa remembers being told in class that when considering patient outcomes, the nurse must consider evidence-based practices to serve as the basis of nursing care and that the nurse’s level of education and practice will reflect in different interventions.

What process will Melissa use as the standard to investigate evidence-based care to include in her patient’s care plan?

What examples can Melissa provide to demonstrate how BSN, MSN, and Doctorate prepared nurses utilize evidence-based practice interventions differently?

In: Nursing