Questions
Can prevention and wellness become the dominant focus of primary care? If so, what changes need...

Can prevention and wellness become the dominant focus of primary care? If so, what changes need to be implemented to achieve this result? If we focus on wellness, will it actually reduce costs by preserving health and avoiding costly illnesses?

In: Psychology

1. What do you think are the main challenges and implications being faced regarding the changes...

1. What do you think are the main challenges and implications being faced regarding the changes in the service concept of KidZania, centered on experiential learning?

2. Considering the experience gained from all their current parks as well as the external forces including increasing competition, market regulations, diversity of potential new markets, and technology integration, what criteria should KidZania’s management follow in selecting specific activities for its future “cities” to enhance experiential learning while remaining profitable?

In: Operations Management

A 455-mm diameter concrete pipe changes slope from 0.4% to 0.1% at a manhole. The roughness...

A 455-mm diameter concrete pipe changes slope from 0.4% to 0.1% at a manhole. The roughness height of the pipe is 1.5 mm and the design maximum flow rate is 84.2L/s. The inflow and outflow pipes are located directly opposite each other. Determine the required drop at the manhole.

Please shows steps for atleast one iteration.

In: Civil Engineering

Over the years we have seen large changes in US federal income tax rates, with the...

Over the years we have seen large changes in US federal income tax rates, with the highest marginal rates falling from 70% to under 40% today. Describe the impact of this change on the spread between US Treasury bonds and municipal bonds.

In: Finance

Consider how a star like the Sun changes after the Main Sequence. Put the following events...

Consider how a star like the Sun changes after the Main Sequence. Put the following events in the correct order.

1. The outer layers of the star drift off into space creating a planetary nebula.

2. Helium fusion in the core of the star ends

3. The hot, dense core of the star is left behind as a white dward that slowly cools and dims over time.

4. The star shrinks slightly, compressing a shell of hydrogen surrounding the non-burning helium core.

5. The shell surrounding the non-burning carbon/oxygen core begins to fuse helium, and the shell outside of that fuses hydrogen.

6. The star's core becomes hot enough and dense enough to begin fusing helium to carbon and oxygen, causing it to collapse inward somewhat.

7. Shell hydrogen fusion is disrupted and the star shrinks slightly

8. Fusion of hydrogen to helium in the core of the star ends.

9. The star shrinks slightly, compressing a shell of helium surrounding the non-burning carbon/oxygen core, and a shell of hydrogen surrounding the region of helium

10. The star's surface becomes cooler and the star's luminosity increases; the star is now a "red giant."

11.Hydrogen shell fusion causes the outer layers of the star to expand outward.

12. The star's surface becomes cooler and the star's luminosity increases; the star is now an "asymptomatic giant."

13. Shell fusion of hydrogen and helium cause the outer layers of the star to expand outward.

14. The shell surrounding the non-burning helium core begins to fuse hydrogen

15. The star's surface becomes somewhat hotter and the star's luminosity decreases slightly; the star is now a "horizontal branch" star

In: Chemistry

Describe how personality in adulthood changes and also how it remains stable. According to Erikson, what...

Describe how personality in adulthood changes and also how it remains stable. According to Erikson, what is the major goal of adulthood? What types of experiences in adulthood would lead to that? According to the Big Five Factor of Personality, where do you think you fall on traits such as openness, conscientiousness, extroversion, agreeableness, and neuroticism?

One of the major personality stereotypes in adulthood is the concept of the midlife crisis. What do researchers say about the midlife crisis?

In: Psychology

JAVA programming language Modify the following code. Make changes so that Movies can be sorted by...

JAVA programming language

Modify the following code. Make changes so that Movies can be sorted by title

-----------------------------------------------------------------

package Model;
import java.time.Duration;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
// TODO - Modify the movie class so that Java knows how to compare two Movies for sorting by title
public class Movie extends DataStoreObj
{
private String title;
private String description;
private LocalDate releaseDate;
private Duration runningTime;
private Rating rating;
private List<Genre> genres = new ArrayList<>();
private List<Actor> actors = new ArrayList<>();
// TODO: Add list of reviews
private List<Review> reviews = new ArrayList<>();
public Movie(String title, String description, Rating rating, String releaseDate, int runningTimeMinutes) {
this(null, title, description, rating, releaseDate, runningTimeMinutes);
}
public Movie(Long id, String title, String description, Rating rating, String releaseDate, int runningTimeMinutes) {
super(id);
this.title = title;
this.description = description;
this.rating = rating;
this.releaseDate = LocalDate.parse(releaseDate);
// https://stackoverflow.com/a/41800301/673393
this.runningTime = Duration.ofMinutes(runningTimeMinutes);
}
public Duration getRunningTime() {
return runningTime;
}
public String getTitle() {
return title;
}
public void addGenre(Genre genre) {
genres.add(genre);
}
public void addActor(long actorId) {
Actor foundActor = Datastore.getActorById(actorId);
actors.add(foundActor);
}
public List<Actor> getActors() {
return actors;
}
public void addReview(Review review) {
// TODO: Write code to add the review to the list
reviews.add(review);
}
public String toString() {
int runningTimeMinutes = (int) this.getRunningTime().getSeconds() / 60;
return String.format("%s (%s, %s) %s {%s min}", this.title, this.rating, this.releaseDate.getYear(), genres, runningTimeMinutes);
}
// TODO - You'll need a new method here to tell Java how to compare two movies by title
public List<Review> getReviews() {
return reviews;
}

}

In: Computer Science

Compare the structure of xylenol orange to phenolphthalein. Do some research to determine why phenolphthalein changes...

Compare the structure of xylenol orange to phenolphthalein. Do some research to determine why phenolphthalein changes color under acidic or basic conditions. Based on the chemistry of phenolphthalein, explain why xylenol orange is a different color in the presence and absence of zinc ions. It is useful to note that the xylenol orange-zinc complex that is red must abosorb light around 500-550 nm while the free xylenol orange molecule is yellow, so must absorb light around 400-450 nm. This general chemistry II. Please answer well!

In: Chemistry

Stock A has a beta of 0, the risk-free rate is 4% and the return on...

Stock A has a beta of 0, the risk-free rate is 4% and the return on the market is 9%. If the market risk premium changes by 8%, by how much will the required return on Stock A change?

In: Finance

Traditionally, the decision of which pricing policy firms should follow depends on all of the following...

Traditionally, the decision of which pricing policy firms should follow depends on all of the following EXCEPT:

the level of competition.

environmental changes.

the innovativeness of the product.

market characteristics.

company characteristics.

In: Operations Management