Questions
Part 1: Scenario You are the owner of a Vancouver hair salon. (Please make up the...

Part 1:

Scenario

You are the owner of a Vancouver hair salon. (Please make up the name and location. Use your imagination.) Due to the pandemic and a sharp decline in demand, you had to lay off all of your staff and close in March.

Now, with some pandemic restrictions lifted, your salon is once again open for business. You need to hire back your former hair stylists. Write a message to your former employees requesting that they return to work. Maintain a professional tone.

Instructions: Choose if the message should be written as an email, memo, or letter. Write the message in Word. I’m expecting less than 200 words. Upload the file to this folder when you are done. Don’t forget to proofread!

Part 2:

Scenario

Write a message to your clients explaining that your hair salon is open once again. Share with them a promotion of your choosing to entice them to make an appointment.

Instructions: Choose if the message should be written as an email, memo, or letter. Write the message in Word. I’m expecting less than 200 words. Upload the file to this folder when you are done. Don’t forget to proofread!

Grading Rubric:

Tone

Audience

Clarity

Conciseness

Cohesion

Graphic Highlighting

Formatting

In: Computer Science

Part One: Write an interactive program to calculate the volume and surface area of a three-dimensional...

Part One: Write an interactive program to calculate the volume and surface area of a three-dimensional object. Use the following guidelines to write your program:

  1. Create a word problem that involves calculating the volume and surface area of a three-dimensional object. Choose one of the following:
    • Cube: surface area 6 s2 , volume s3
    • Sphere: surface area 4πr2 , volume (4.0/3.0) π r3
    • Cylinder: surface area 2π r2 + 2 π r h, volume π r2 h
    • Cone: surface area πr(r+√(h2+r2) ), volume 1.0/3.0 π r2 h
  2. Print the description of the word problem for the user to read.
  3. Ask the user to enter the information necessary to perform the calculations.
  4. Use 3.14 for the value of π as needed.
  5. Print the results of each calculation.
  6. Write the pseudocode for this program. Be sure to include the needed input, calculations, and output.

Part Two: Code the program. Use the following guidelines to code your program.

  1. To code the program, use the Python IDLE.
  2. Using comments, type a heading that includes your name, today’s date, and a short description of the program.
  3. Follow the Python style conventions regarding indentation and the use of white space in your program.
  4. Use meaningful names for all variables.

In: Computer Science

In a big chain of retail stores annual performance appraisal system is used as a base...

In a big chain of retail stores annual performance appraisal system is used as a base for determining the
employee’s annual raise. Upper management has the authority to double the increment on an exceptional
performance. One of the problems with the appraisal system is that it is more inclined towards
subjectivity. A new sales manager joined the chain in December 2019 and annual performance appraisal
of two supervisors one from grocery section and one from the toys section was due in April 2020. Due to
lockdown in March 2020 the sales of grocery section were above targets and consequently, the supervisor
from the grocery section got double increment on the recommendation of the manager.
Question: 01 Word limit 200 words
Question 1: Keeping in view, the possible raters’ error in performance appraisal, discuss the specific error
that occurred in this scenario and how it could be handled? Justify your answer with solid arguments.
Question: 02 Word limit 100 words
Question 2: Each supervisor has a team consisting of 10 to 15 sales staff. While assessing “Quality of
work” of team members, supervisors can choose one of the following categories.
 Unsatisfactory
 Marginal
 Satisfactory
 Good
 Outstanding.
Which of the appraisal tool is being used in that retail store and what is its disadvantage?

In: Operations Management

Consider the data in the file Growth.csvwhich contains data on average growth rates over 1960-1995 for...

Consider the data in the file Growth.csvwhich contains data on average growth rates over 1960-1995 for 65 countries, along with variables that are potentially related to growth. A complete description of the data is given in data description which is under the name Growth- Data Description and can be found on Blackboard.

Using this data, carry out the following empirical exercises:

Construct a table that shows the sample mean, std. deviation, minimum and maximum values for the variablesGrowth, Trade-Share, YearsSchool, Oil, Rev_Coups, Assasinations, and RGDP60.

Run a regression of Growthon TradeShare, YearsSchool,Rec_Coups, Assasinations and RGDP60.Show the output of this regression in R (take a screenshot and crop the output summary in your word file that contains your answers).

What is the value on the coefficient on Rev_Coups?Is it statistically significant? Do interpretation on this coefficient.

What is the value of the adjusted R-square? Do these variables explain the majority of country growth?

Use the regression to predict the average annual growth for a country that has average values for all regressors.

Repeat (3) but now assume that the country’s value for TradeShareis one std. deviation above its mean.

Notes: Please submit through email an individual word file with your answers WELL ORGANIZEDalong with your R code (.R file) at the end.

In: Math

Design, plan, test, and write a computer program in Java that asks the user to enter...

  • Design, plan, test, and write a computer program in Java that asks the user to enter 1 number and a String. You will display the first n characters of the string where n is the number entered. For example, if the user enters 3 and java then you will print jav. If they enter 5 and Halloween then you print Hallo. If the user enters a number less than 0 then set the number to 0. Assume the user will not enter a number greater than the length of the string. Display the percentage of the word displayed. For 3 and Java, the percentage is 75%. For 5 and Halloween the percentage is 55.55555555555556%. No if, loops, arrays, classes or methods are needed. You will also need the String class to complete this problem.

Write the Java code for the program, the entire program can be written inside a main method.

Make sure the main method outputs your full name on screen.

Copy your code, with programmer comments, headers and place this into your MS Word document.

Follow Java Naming Conventions

Do not forget about importing java.util.Scanner, and using Scanner input = new Scanner(System.in); with input.nextLine(); and input.nextInt();

Update the test table with the actual outputs

inputs

Expected outputs

Actual outputs

Description

Sample Run

Enter a number:

3

Enter a String:

Java

Jav

You printed 75.0% of Java

In: Computer Science

Please Write-In Python Language (Topic: Word frequencies) Method/Function: List<Token> tokenize(TextFilePath) Write a method/function that reads in...

Please Write-In Python Language (Topic: Word frequencies)

Method/Function: List<Token> tokenize(TextFilePath)
Write a method/function that reads in a text file and returns a list of the tokens in that file. For the purposes of this project, a token is a sequence of alphanumeric characters, independent of capitalization (so Apple, apple, aPpLe are the same token). You are allowed to use regular expressions if you wish to (and you can use some regexp engine, no need to write it from scratch), but you are not allowed to import a tokenizer (e.g. from NLTK), since you are being asked to write a tokenizer.

Method:  Map<Token,Count> computeWordFrequencies(List<Token>)
Write another method/function that counts the number of occurrences of each token in the token list. Remember that you should write this assignment yourself from scratch so you are not allowed to import a counter when the assignment asks you to write that method.

Method: void print(Frequencies<Token, Count>)
Finally, write a method that prints out the word frequency count onto the screen. The print out should be ordered by decreasing frequency (so, the highest frequency words first).

Print the output in this format:

<token> -> <freq>

Please give me some notes about the codes, thanks!!!

In: Computer Science

Please use Python! def getText(file): This function should open the file named file, and return the...

Please use Python!

def getText(file):

This function should open the file named file, and return the contents of the file formatted as a single string. During processing, you should (i) remove any blank lines, (ii) remove any lines consisting entirely of CAPITALIZED WORDS , and (iii) replace any explicit ’\n’ (newline) characters with spaces unless directly preceeded by a ’-’ (hyphen), in which case you should simply remove both the hyphen and the newline, restoring the original word.

def getText(file):

pass

def flushMarks(text):

This function should take as input a string such as what might be returned by getText() and return a new string with the following modifications to the input:

Remove possessives, i.e., "’s" at the end of a word;

Remove ’)’, ’(’, ’,’, ’:’, ’-’, ’_’, ’...’, ’"’ and "’"; and Replace ’!’, ’?’ and ’;’ with ’.’

A condition of this function is that it should be easy to change or extend the substitutions made. In other words, a function that steps through each of these substitutions in an open-coded fashion will not get full credit; write your function so that the substitutions can be modified or extended without having to significantly alter the code. Here’s a hint: if your code for this function is more than a few lines long, you’re probably not doing it right.

# Specification: takes a string, text, and removes possessives ('s)

# and most punctuation ('(),:\'"- —_').

#

def flushMarks(text):

pass

In: Computer Science

This assignment will be submitted to Turnitin®. Instructions Instruction: Complete your essay in a new MS...

This assignment will be submitted to Turnitin®.
Instructions

Instruction: Complete your essay in a new MS Word document and upload to iCollege. Your answer should demonstrate your ability to apply the concepts learned in our class. The word count of the text that includes your “own words” should be at least 500 words (about 700 max.). The text should be typed double-spaced using a 12-point font size in Times New Roman.

  1. The text argues that our standard of living depends upon the division of labor, upon the fact that people specialize, develop skills in their specialization, and then exchange for the goods and services they do not produce. Do you think it is possible to carry the division of labor too far? Is it likely that people get so “overspecialized” that they become alienated, and lose their creativity and their ability to understand a broad range of problems?

Suggested Answer: Students should discuss the advantages and disadvantages of division of labor. Someone specializing in the execution of a single operation might master it, but might be quite inadequate at others. Remember the famous Bruce Lee quote, “I fear not the man who has practiced 10,000 kicks once, but I fear the man who has practiced one kick 10,000 times.” Related concepts: Multiskilling, job rotation, job enrichment, assembly line.

In: Economics

A solid cylinder r = 17.5cm r = 17.5 cm, h = 16.5 cm h = 16.5 cm has a mass of 13.49 kg 13.49 kg. This cylinder is floating in water.

A solid cylinder r=17.5 cm">r=17.5 cm , h=16.5 cm">h=16.5 cm has a mass of 13.49 kg">13.49 kg . This cylinder is floating in water. Then oil is poured on top of the water until the situation. How much of the height of the cylinder is in the oil?

In: Physics

Let me know if the Adjusted trial balance on December 31, 20X6 is needed to answer...

Let me know if the Adjusted trial balance on December 31, 20X6 is needed to answer the below as I can provide it. Thank you!

Questions 4 through 10 are based on the following December 31, 20X6 year-end account balances for XYZ Co. after adjusting entries had been prepared but before the books were closed for the year.                                                 

                Cash……………..…………………………….250,000

                Accounts receivable…………………….……..680,000

                Marketable securities…………………………...60,000

                Prepaid insurance……………………………….35,000

                Prepaid rent….………………………………….30,000

                Office equipment…………………………….....620,000

                Accumulated depreciation: equipment………...200,000

                Land……………………………………………750,000

                Accounts payable………………………………306,000

                Dividends payable……………………………… 50,000

                Interest payable…………………………………... 8,750

                Income tax payable……………………………...30,000

                Unearned client service revenue………………..180,000

                Notes payable (long-term).……………………..350,000

                Common stock………………………………….750,000

                Retained earnings….…………………………....315,200

                Dividends…………………………………….......75,000

                Client service revenue………………………...1,200,000

                Travel expense………………………………..…..28,000

                Office supplies expense…………………………..20,000

                Advertising expense………………………………45,000

                Salary expense…………………………………...400,000

                Utility expense………………………………….....40,000

                Depreciation expense: equipment…………………25,000

                Interest expense……………………………….…...17,500

                Insurance expense……………………………….....52,000

                Rent expense……………………………………..175,000

                Income tax expense………………………………..87,450

Using the data for question 4, prepare the income statement for the year ended December 31, 20X6.  Attach your response in an excel or word file.

Using the data from Question 4, Prepare the statement of retained earnings for the year ended December 31, 20X6. Attach your response in an excel or word file.

Using the data in Question 4,  Prepare the statement of financial position as of December 31, 20X6. Attach your response in an excel or word file.

  1. Using the data in Question 4, Determine the working capital on December 31, 20X6.

    a.

    $350,756

    b.

    $480,250

    c.

    $580,520

    d.

    $574,750

  1. Using data from Question 4,  Determine the current ratio on December 31, 20X6.

    a.

    1.8356

    b.

    3.4781

    c.

    2.8749

    d.

    1.1355

  1. Based on data from Question 4,  Determine the acid-test (quick) ratio on December 31, 20X6.

    a.

    4.5586

    b.

    2.5000

    c.

    1.7225

    d.

    3.6752

In: Accounting