Questions
Task 3      Write a program that pushes the first 10 natural numbers to the stack,...

Task 3

     Write a program that pushes the first 10 natural numbers to the stack, then pops those numbers. Use the debugger to view how the stack changes after each instruction. Once all the data has been pushed to the stack, take a screenshot of the stack in memory.

Task 4

    Write a subroutine called “Area” that calculates the area of a rectangle. Use accumulator A and B to pass the length and the width to the function. Use accumulator D to return the result.

HINT:

  • load the width and height into accumulators A and B.
  • Call the subroutine.
  • Provide a flowchart, a snapshot of CPU registers before and after executing the subroutine.

    Now re-write the program from Task 3, but this time use the stack to pass the function arguments and the return value.

HINT:

  • load the width into accumulator A, then push A to the stack
  • load the height into accumulator B, then push B to the stack
  • Allocate one word on the stack for the return value.
  • Call the subroutine.
  • After you return from the function, deallocate all variables from the stack.
  • Provide a drawing of the stack frame and a snapshot of of the stack before, during and after executing the subroutine.

Write in Assembly for HCS12

In: Computer Science

please I want you to answer this question and most importantly, the answer is not already...

please I want you to answer this question and most importantly, the answer is not already available on this site or other site

Course Learning Outcome: Apply Organizational behavior knowledge and skills to manage diversified culture in the organizational settings (Lo 2.2).

Essay: Differences in Culture and Diversity at workplace

Essay

Write an essay about the differences in Culture and Diversity at workplace. Use examples, peer-reviewed journals to support your answer. This essay must be at least 1000-word in length.

Directions:

• use their own words.

• Be three to five pages in length (1000-1200 words), which does not include the title page, abstract or required reference page, which are never a part of the content minimum requirements.

• Use and APA style guidelines.

• It is strongly encouraged that you submit all assignments into the safe assignment Originality Check prior to submitting it to your instructor for grading.

• Write a three-part essay (i.e., an essay that includes an introduction paragraph, the essay’s body, and a conclusion paragraph) that address the questions using a question and answer format.

• Your well-written paper should meet the following requirements:

In: Operations Management

Complete the worksheet according to the following guidelines: In the space provided, write each term’s definition...

Complete the worksheet according to the following guidelines:

  • In the space provided, write each term’s definition as used in ecology. You must define the term in your own words; do not simply copy the definition from a textbook. Provide APA-formatted citations for all paraphrased responses inserted into this worksheet. Every cited work must also have a corresponding reference entry on the References page at the end of this worksheet.

  • In the space provided after each term’s definition, provide an explanation that illustrates the importance of the concept, method, relationship, or study to which the term refers. In your explanation, you may wish to consider the following:

  • How has it influenced ecology?
  • Why is it important to understand the appropriate application of the term or concept?

Save the completed worksheet as a Microsoft® Word document with your name in the file name.

Click the Assignment Files tab to submit your assignment.

Submitted by: [Type your name here.]

Term

Definition in your own words

Explanation of Importance

Environment

Population

Scientific Method

Evolution

Adaptation

Natural Selection

Chromosomes

The Origin of Species

Fitness

Gene Pool

Selection

In: Biology

Annotated Bibliography: An annotated bibliography is a list of citations to books, articles, and other resources....

Annotated Bibliography:

An annotated bibliography is a list of citations to books, articles, and other resources. Each citation is followed by a brief descriptive and evaluative paragraph: the annotation. The purpose of the annotation is to inform the reader of the relevance, accuracy, and quality of the sources cited. An annotated bibliography can also be referred to as an extended APA style reference sheet. Annotations are at minimum 150 words.

Annotated Bibliography Assignment Description:

Step 1: Perform research to retrieve scholarly journal articles and books as it relates to the topic of “Ethics in Healthcare”. You will create citations for these 4 resources in APA format.

Step 2: You will write 4 concise annotations that summarize each of your 4 references in Step 1. These annotations should include at 4 to 6 sentences that:

Summarize the main purpose of the reference as it relates to the provided topic

“Ethics in Healthcare”

2. Compare or contrast this work with another you have cited

3. Discuss how this work explains your selected topic

Citations with annotations (annotated bibliography) must be alphabetized by author’s last name.

**If no author is given, consider the first letter of the first word of your citation when alphabetizing.

In: Operations Management

Fan Bingbing is one of China’s highest-profile celebrities. She is one of the best paid actors...

Fan Bingbing is one of China’s highest-profile celebrities. She is one of the best paid actors in the world and is known in the west for her role in X-Men: Days of Future Past. In 2018, Fan Bingbing ‘disappeared’ following allegations of tax evasion. She returned to public life in 2019 following an investigation by the Chinese tax authorities. She apologised and agreed to pay fines and unpaid taxes to avoid criminal prosecution. Reaction to Fan Bingbing’s return has been mixed. Users of Weibo (a social media network in China) have been ‘overwhelmingly negative’ (The Guardian, 2019). Comments have included ‘these scandalous celebrities should forever be discarded by the audience’. The Guardian (2019) Chinese star Fan Bingbing reappears after nearly a year in the wilderness, The Guardian, 25 April, 2019.

Overall word limit: 3000 words

Required: Critically evaluate the approach to tax compliance that was used by the Chinese tax authorities in the Fan Bingbing case.

Note: a detailed description of the Fan Bingbing case is not required. The focus of your response should be a critical evaluation of the approach to tax compliance that was used by the Chinese tax authorities.

In: Economics

Imagine you are on a work team that has two people who make all the decisions....

Imagine you are on a work team that has two people who make all the decisions. These two people tend to work closely together and ignore your input during meetings. Two other team members have stopped contributing to the team and sometimes don’t even attend meetings. The team has been together for over three months now. Your supervisor wants you to talk with the entire team about how all of you can function together and work more effectively as a cohesive team.

Using this topic as your inspiration, write a short response in a Word document on how you would approach this situation. Address the following questions in your response:

What will you say when you address the entire team?

What strategies would you recommend the team put in place so that the team can function more effectively?

What are two possible objections you might get from your team members?

How would you overcome those two objections during the meeting?

Your response should be 400 to 500 words in length.

In: Operations Management

11.10 LAB: All permutations of names PLEASE ANSWER IN C++! Write a program that lists all...

11.10 LAB: All permutations of names

PLEASE ANSWER IN C++!

Write a program that lists all ways people can line up for a photo (all permutations of a list of strings). The program will read a list of one word names (until -1), and use a recursive method to create and output all possible orderings of those names, one ordering per line.

When the input is:

Julia Lucas Mia -1

then the output is (must match the below ordering):

Julia Lucas Mia 
Julia Mia Lucas 
Lucas Julia Mia 
Lucas Mia Julia 
Mia Julia Lucas 
Mia Lucas Julia 

----File: main.cpp----

#include <vector>
#include <string>
#include <iostream>

using namespace std;

// TODO: Write method to create and output all permutations of the list of names.
void AllPermutations(const vector<string> &permList, const vector<string> &nameList) {

}

int main(int argc, char* argv[]) {
vector<string> nameList;
vector<string> permList;
string name;

// TODO: Read in a list of names; stop when -1 is read. Then call recursive method.

return 0;
}

In: Computer Science

Morphology Exercises Divide the following words by placing a + between their morphemes (Some of the...

Morphology Exercises

Divide the following words by placing a + between their morphemes (Some of the words maybe monomorphemic and therefore indivisible.)

Example:  replaces = re + place + s

retroactive

befreinded

televise

margin

endearment

psychology

unpalatable

holiday

grandmother

morphemic

mistreatment

deactivation

saltpeter

airsickness

Match each expression under A with the one statement under B that characterizes it.

A

B

a. noisy crow

b. scarecrow

c. the crow

d. crowlike

e. crows

(1) compound noun

(2) root morpheme plus derivational suffix

(3) phrase consisting of adjective plus noun

(4) root morpheme plus inflectional affix

(5) root morpheme plus inflectional suffix

(6) grammatical morpheme followed by lexical morpheme

Write the one proper description from the list under B for the italicized part of each word in A.

A

B

a. terrorized

b. uncivilized

c. terrorize

d. lukewarm

e. impossible

(1) free root

(2) bound root

(3) inflectional suffix

(4) derivational suffix

(5) inflectional prefix

(6) derivational prefix

(7) inflectional infix

(8) derivational infix

In: Psychology

An Interbrand study estimated that the Apple brand was worth almost $200 billion. This value is...

An Interbrand study estimated that the Apple brand was worth almost $200 billion. This value is best described as:

Group of answer choices

Market Capitalization

Brand solvency

Brand positioning

Brand equity

Which of the following is most likely to fall under the classification as illegal price discrimination?

Group of answer choices

A distributor charges a higher price to one retailer than to a similar retailer, and there is no justifiable difference in the costs of selling to each retailer.

The cinema gives a discounted price to customers over the age of 65.

Walmart in one city charges different prices than a Walmart in a different city.

All of the above are examples of illegal discrimination

A primary reason to quickly address service failures is to:

Group of answer choices

minimize the zone of tolerance.

increase empowerment zones.

avoid negative word-of-mouth from upset customers.

avoid a situational ethics conflict.

keep management from finding out what happened.

Printers can be pretty cheap, but then the replacement ink cartridges are really expensive. This willingness of consumers to pay the high price of the ink cartridges is an example of:

Group of answer choices

reference pricing

fixed pricing

cross-price elasticity

collusion

In: Economics

Suppose Tom’s brother works for an airline as a union representative for the machinists working on...

Suppose Tom’s brother works for an airline as a union representative for the machinists working on the planes. Two years ago, there was a forced landing that severely injured five people on the flight of one of the airline’s passenger planes. While watching television at Tom’s house, he notices his brother is rather depressed. Tom asks him what is wrong. “Remember that crash of Flight 3183 to Buffalo a while back?” the brother asks. Tom shakes his head in the affirmative. “Yeah. You were worried whether or not it would be blamed on your workers for a mechanical failure.” The brother sighs. “Well, we got word today that the NTSB is going to find that one of my guys was at fault. They’re going to announce their findings by the end of the week.” Tom nods while returning his attention to the television. The next day, Tom picks up the phone to call his broker, selling all the shares he has in the airline. Using supply/demand analysis, what would we expect to happen to the share price of the airline once the NTSB announcement is made that the airline was at fault? Ethically, should Tom have reacted the way he did? Discuss.

In: Economics