Questions
Choose a mature firm from stocks on the ASX1 and make sure that the firm pays...

Choose a mature firm from stocks on the ASX1 and make sure that the firm pays a dividend. (MUST use academic references)

1. Explain and justify the criteria that you used to identify the mature firm and the growth firm.


2. Calculate the dividend yields and dividend payout ratios of the firm in the last five years.

3. Explain how the ratios are calculated

4. Determine whether there has been a major change in the company’s dividend policy in the last five years and discuss the possible reasons why there is/isn’t a major change.

Thanks for help in advance!

In: Finance

Review these questions and scenarios: a student copies a homework, is that cheating? If a student...

Review these questions and scenarios:

a student copies a homework, is that cheating?

If a student edits a paper that was written by another in a previous term and submits it as his/her own, is that a problem?

Is it okay for a student who forgot to check the patient's CBC and instead fills in a number that s/he thinks is good on the care plan?

It is absolutely acceptable for students to have their papers proof read. Describe the difference between proofreading help and someone writing the paper. What are the signals and boundaries of academic integrity?

Now, write a 100 word statement about one or more of these questions.

In: Nursing

Use this information as you create an SPSS dataset using the data chart below paying particular...

Use this information as you create an SPSS dataset using the data chart below paying particular attention in assigning the proper variable type (scale/interval, ordinal, or nominal) in the Measure column in the Variable View in SPSS.

School ID

School Region

Enrollment

Academic Rank

278

West

56

1

044

East

825

2

416

North

134

3

489

North

152

4

223

West

79

5

126

South

345

6

013

East

924

7

156

South

256

8

In: Statistics and Probability

read the following descriptions of hypothetical studies. Explain whether each is an experiment, non-experiment, or quasi-experiment...

read the following descriptions of hypothetical studies. Explain whether each is an experiment, non-experiment, or quasi-experiment and state why for identifying, and for explanation). 5. To test whether phone use decreases academic success, a professor compares the grades of students who have used their phones in class to those of students who have never used their phones in class. 6.Belk Gym gives out surveys to students who use the facilities during the month of January to find out how satisfied they feel with the gym and the work out classes offered.

In: Psychology

For the corporation you identified in Discussion One, describe the components of the Internal Environment. Identify...

For the corporation you identified in Discussion One, describe the components of the Internal Environment. Identify their competencies and their competitive advantage. This is also the S & W of a SWOT analysis.

The internal analysis focuses on identifying and evaluating a firm’s strengths and weaknesses in the functional areas of business, including:

(1) management;

(2) marketing;

(3) finance;

(4) accounting;

(5) production or operations;

(6) research and development, also known as R&D; and

(7) management information systems, also known as MIS.

The discussion post should be a minimum of 300 words, and include at least one academic journal reference.

In: Operations Management

In at least 2-3 pages, please discuss the following: 1-What are the habits of healthy families?...

In at least 2-3 pages, please discuss the following:

1-What are the habits of healthy families?

2-What's the impact of abuse on children?

3-What factors build resilience in children?

4-How can faith/spirituality offset the impact of mistreatment for children?

Include a subheading per discussion question above for organization. Be sure to start with an intro paragraph on what the paper will cover and end with a summary paragraph on the main points covered and overall implications. Also, be sure to integrate at least one academic journal to support some of your comments.

In: Psychology

Instructions: Write a blog entry on your personal blog ( minimum 400 words ) and fully...

Instructions:

Write a blog entry on your personal blog ( minimum 400 words ) and fully discuss the following questions:

  • What is Fair Use?
  • How does Fair Use apply to work for hire and work for education?

In addition, your blog entry must meet the following criteria:

  • Provide at least 2 high-quality examples of the application of fair use in mediated communications for learning.
  • Reference at least two articles or websites related to the topic.
  • Conform to academic writing conventions, supporting opinions with facts.
  • Follow the APA style guide.

In: Computer Science

DISCUSS how an organization can be vulnerable to fraud – use specific examples from a company...

DISCUSS how an organization can be vulnerable to fraud – use specific examples from a company that you are familiar with, but please do not identify the company by name. In your opinion, which is more important - prevention or detection? Or are they equal? Identify at least two ways that the company could have prevented and/or detected the fraud that you have identified. Discuss how the company’s reaction to instances of fraud can influence employees’ future actions. Your discussion should be 325-400 words.

Support your answer using a minimum of two professional or academic sources.

In: Accounting

NCAA Please provide a citation for each response; you can not simply cite the textbook because...

NCAA

Please provide a citation for each response; you can not simply cite the textbook because textbook have many contributors.

  1. Discuss the importance of recruiting as a component of resource acquisition for athletic departments.
  2. Discuss the specifics pertaining to permissible financial assistance available to student-athletes.
  3. Discuss how the current systems of rules governing the operation of intercollegiate athletic departments impact how departments are managed.
  4. Discuss how the current systems of rules enforcement impact the management of intercollegiate athletic departments.
  5. Discuss the distinction between initial and continuing academic eligibility.

In: Operations Management

Following is the activity of javascript. i have tried to do it but got stuck from...

Following is the activity of javascript. i have tried to do it but got stuck from question 3, I have also attached my javascript code right after the HTML file. can you please help me. Inside the java script code, it contains all the necessary token. if you run the html file, it will display longitude as a AQI so need to fix that.

Web Services Activity (1%)

You need to sign up to the API to obtain a key/token at WAQI API [link]

You should save the files as w9-webservices.js and w9-webservices.html

We would like to display the AQI information around the current user's geoposition on a map.

Instructions:

  1. When the page loads, get the user's current location using the Geolocation API's getCurrentPosition method. You should use a callback function.
    Display an appropriate error message as required if geolocation fails to get a position.
  2. In the callback function from (1), you should display a map centered at the current coordinates, with an appropriate zoom level.
  3. Obtain the map coordinate boundaries using MapBox's map.getBounds() method.
  4. Using the map boundary data, make a call to the AQI Map Query API [link: https://aqicn.org/json-api/doc/#api-Map_Queries-GetMapStations ] . You should use a callback function for this API call. The URL (with query string and :placeholders) looks like this: https://api.waqi.info/map/bounds/?token=:token&latlng=:latlng&callback=:callback
  5. In the callback function from (4), display a Marker and associated Popup for each location within the boundary coordinate data from (3). If no data is returned, display an appropriate error message.

    You should ensure that the Marker used is of an appropriate color depending on the AQI value (see table below).

    The Popup should display the AQI value and the station name in plain black text.

    AQI range

    Colour

    0 -- 50

    Green

    51 -- 100

    Yellow

    101 -- 150

    Orange

    151 -- 200

    Red

    201 -- 300

    Purple

    301 -- 500

    Maroon

  6. We can detect when the user changes the zoom level using:
    map.on('zoomend',function(){
        // run some code if the zoom changes
    });
    
    When the user changes the zoom (and thus the map boundaries change), you should update the map information by running (3) -> (5) again.

Notes:

  • You can add CSS inline or to the header section

Here's some code to get you started with the HTML page:

<html>
<head>
  <meta charset="utf-8">
  <title>Week 9 Web Services Activity</title>
  <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
  <!-- Import MDL libraries -->
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  <link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
  <script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
  <!-- Import Mapbox libraries -->
  <script src="https://api.mapbox.com/mapbox-gl-js/v1.7.0/mapbox-gl.js"></script>
  <link href="https://api.mapbox.com/mapbox-gl-js/v1.7.0/mapbox-gl.css" rel="stylesheet" />
  <style>
    /* Define any CSS here */
    #map { width: 80vw; height: 80vh }
  </style>
</head>
<body>
  <div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
    <header class="mdl-layout__header">
      <div class="mdl-layout__header-row"> <span class="mdl-layout__title">Check the air quality on the map</span> </div>
    </header>
    <main class="mdl-layout__content">
      <div class="mdl-grid">
        <div class="mdl-cell mdl-cell--8-col"> 
          <!-- Map div -->
          <div id='map'>
                    </div>
        </div>
      </div>
    </main>
  </div>
  <script src="w9-webservices.js"></script>
</body>
</html>

w9-webservices.js

"use strict";

// mapbox token

const MAPBOX_TOKEN = "pk.eyJ1IjoidGVlZSIsImEiOiJja2c2ODQ0cHQxMXUwMnJsZDJyOTY5YXRvIn0.0yh14c1R35E-dxvvAC1nxw";

// WAQI token

const WAQI_TOKEN = "4e4ff5b84906529e3768ed72754304c9057587c1";

navigator.geolocation.getCurrentPosition((position) => {

doSomething(position.coords.latitude, position.coords.longitude);

});

function doSomething(lat,lng){

console.log(lat,lng);

mapboxgl.accessToken = MAPBOX_TOKEN;

let map = new mapboxgl.Map({

container: 'map',

style: 'mapbox://styles/mapbox/streets-v9', // stylesheet location

center: [lng,lat], // starting position [lng, lat]

zoom: 13 // starting zoom

}) ;

map.setCenter([lng,lat]);

let marker = new mapboxgl.Marker({ "color": "#FF8C00" });

marker.setLngLat([lng,lat]);

let popup = new mapboxgl.Popup({ offset: 45});

let desc = `AQI: ${lng}`; // at the moment i have just used AQI value as a lngitude.

popup.setHTML(desc);

marker.setPopup(popup)

marker.addTo(map);

popup.addTo(map);

}

In: Computer Science