2.Please read: Nohria, N., Groysberg, B., Lee, L.–E.(2008). Employee Motivation, Harvard Business Review, 86 (78), p78-84.
Article: https://hbr.org/2008/07/employee-motivation-a-powerful-new-model
And answer the following
...
view, 86 (78), p78-84.
Article: https://hbr.org/2008/07/employee-motivation-a-powerful-new-model
And answer the following questions:
1.Which motivation theory does Nohria et al.’s (2008, p. 80) model on the “the four drives that underline motivation” relate to?
2.Which of the ‘drivers’ best fit you and why?
3.Now read “the organizational levers of motivation” and refer to the model on “how to fulfill the drivers that motivate employees” (Nohria et al., 2008, p. 81-82). Are the author’s suggestions to motivate sufficient? Why (not)?
4.Read the section on the importance of management. How important do you see management as a driving force for motivation?
5.What is your overall take on the article? Is it the solution to motivation for millennials or Gen Zers like you?
View More
3.How much RHB, Maybank, CIMB, and Public Bank have invested in working capital?
Please answer the questions by referring to
...
he questions by referring to the "Group" section for the 2019 annual report
https://www.rhbgroup.com/~/media/files/malaysia/investor-relations/annual-reports/rhb_financial-report-2019.ashx
https://www.maybank.com/iwov-resources/corporate_new/document/my/en/pdf/annual-report/2020/Maybank_AR2019-Financial_Statements_Book.pdf
https://www.cimb.com/content/dam/cimb/group/documents/investor-relations/annual-reports/2019/cimb-2019-financial-statements.pdf
https://www.publicbankgroup.com/CMSPages/GetFile.aspx?guid=fcfffb0b-ac32-4537-8640-938f9eae894f
View More
4.How much RHB, Maybank, CIMB, and Public Bank have invested in working capital?
Please answer the questions by referring
...
e questions by referring to the "Group" section for the 2019 annual report
https://www.rhbgroup.com/~/media/files/malaysia/investor-relations/annual-reports/rhb_financial-report-2019.ashx
https://www.maybank.com/iwov-resources/corporate_new/document/my/en/pdf/annual-report/2020/Maybank_AR2019-Financial_Statements_Book.pdf
https://www.cimb.com/content/dam/cimb/group/documents/investor-relations/annual-reports/2019/cimb-2019-financial-statements.pdf
https://www.publicbankgroup.com/CMSPages/GetFile.aspx?guid=fcfffb0b-ac32-4537-8640-938f9eae894f
View More
6.CSE 1300
Problem Solving Practice Conditional Statements
Question 1: Student Fees
All KSU students pay fees in addition to their tuition.
Using the code
...
nts pay fees in addition to their tuition.
Using the code provided below as a starting point, write a conditional statement that determines how much a student will pay in fees.
• Students registered for 1 – 4 hours pay $843 in student fees.
• Students enrolled in 5 or more hours pay $993 in student fees.
The program should also display a message to students who have not enrolled in any classes: “You are not enrolled in any classes right now.”
NOTE: You must use the variables included in the code snippet get credit for this question.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int creditHours;
int fees = 0;
Scanner myScanner = new Scanner(System.in);
System.out.print("Please enter the number of credit hours you are taking this term: "); creditHours = myScanner.nextInt();
myScanner.close();
//YOUR CODE GOES HERE
} }
Break the Problem Down
Answer the following questions, then use the information to write your code.
What are the inputs in the pseudocode above? (INPUT)
What are we storing in the pseudocode above? (MEMORY)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 2: Block Tuition
The cost of KSU’s tuition is determined by the number of credit hours a student enrolls in.
Using the chart below, write a conditional statement (ONLY) that sets the value of a tuition variable to what that student will owe.
NOTE: For this problem you can assume that all students are enrolled in a minimum of 12 hours.
Number of Credit Hours 12
13
14
15 or more
Cost (in USD) $2224 $2410 $2595 $2718
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 3: Class Standing
Undergraduate students will be classified based on the number of earned institutional hours.
• Freshman:
• Sophomore:
• Junior:
• Senior:
0 - 29 hours
30 - 59 hours 60 - 89 hours
90 hours or more
Write a complete program that prompts the user for the number of credit hours they have completed. Write a conditional statement that prints out their class standing based on the information they provided.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter the number of credit hours you have earned: 29 You are a freshman.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 4: Maximum Course Load
KSU’s policy on maximum course loads during the academic year is as follows:
A student in good standing may register for up to 18 hours. The Registrar may approve up to 21 hours for students with an institutional GPA of 3.5 or higher. Students
Write a complete program that prompts the user for the number of credit hours they have signed up for. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. Once the maximum number of hours is determined, display a message to the user that states “You may enroll in X credit hours this semester.” where X is the number of credit hours determined by your program.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Please enter your GPA: 3.75
You may enroll in up to 21 credit hours this semester.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
Problem 5: First-Year Seminar
All first-year full-time students entering Kennesaw State University with fewer than 15 semester hours are required to complete a First-Year Seminar. Students with 30 or more credit hours are not eligible to enroll in a First-Year Seminar.
Write a complete program that prompts the user for the number of credit hours they have completed. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy.
When you run your program, it should display one of the following messages to the screen:
• You must enroll in First-Year Seminar.
• You do not have to take First-Year Seminar.
• You are not eligible for First-Year Seminar.
Sample Output
Break the Problem Down
Answer the following questions, then use the information to write your code.
What do we need to store? (MEMORY)
Enter the number of credit hours have you completed: 30
You are not eligible for First-Year Seminar.
What are the inputs in the problem statement above? (INPUT)
What calculations are needed? (PROCESSES)
What needs to be displayed to the user?
(OUTPUT)
How many conditions are there in your problem statement?
What are they?
Does something need to happen if the condition(s) are not met?
What type of conditional statement do you need?
Solution in Java
View More
12.Hi, i require somebody with advance knowledge in the following topics and teaching skills.
Functions, Cartesian coordinates, graphs,
kinematics.
Trigonometric functions
Exponential and
...
ions, Cartesian coordinates, graphs,
kinematics.
Trigonometric functions
Exponential and logarithmic
functions
Limits and differentiation
Algebra, vector and matrices
Combinatorics and Probability
This task is divided in 3 stages.
each stage will have its own milestone and will be released upon completion and review.
Please just bid if you are available for all the tasks, check carefully the times.
Complete a questionary with the math questions, approx. 7 pages every answer should be complete and extensive and fully explained in order to be fully understood the process. Approx. time 2 to 2.5 hours.
Task 2 will take place on
Monday, September 6, 2021 at: 1:00pm / 13:00
Coordinated Universal Time (UTC)
This task will include a similar questionary with A B OR C Answers, approx time 1.5 hours to 2 hours, This questions will be provided one by one and requires that we connect by chat live.
Task 3 will take place on
Monday, September 6, 2021 at: 1:00pm / 13:00
Coordinated Universal Time (UTC) after task2
Upon completion of task 2 a document similar to task 1 will be provided in pdf, this one need to be completed within 4 hours after provided approx. 7 pages every answer should be complete and extensive and fully explained in order to be fully understood the process.
For now I will provide task 1 document.
View More
14.Respond to ALL FOUR QUESTIONS. Each question carries 5 marks. Response to each question attempted should be at least 500
...
ould be at least 500 words. The document should adhere to APA guidelines. Please state the question and then post your answer below the Question.
Q1. How does marketing research help in the marketing planning process? Use a hypothetical business (e.g. a small sporting goods store, local hardware manufacturing small business, an independent publishing company, etc.) to discuss how market research helps in compiling market intelligence with regard to aspects such as product decisions, customer segmentation decisions, brand and pricing decisions, keeping stakeholders happy.
Q2. NuVision Lens, a mail-order contact lens company has struggled to break even after being five years in the eyewear market. The company’s founders had thought that high demand would exist for mail-order supply as a low-cost alternative to purchasing contact lenses at optical outlets. However, the market share of NuVision continues to be much less than the retail stores. NuVision Lens has hired you as their marketing consultant. Outline the steps that you will take to formulate a problem statement and research objective on the above situation.
Q3. Your friend, Ms.Destiny Brown is the CEO and founder of ‘Hide and Chic’ an upscale leather goods store based in Houston, Texas. Ms. Brown is actively considering to expand her company’s product line to include sports accessories including golf gloves, premium quality leather grips for tennis, squash, racquetball, badminton rackets, leather sports bags, etc. She has hired you to undertake a marketing research study to determine whether a market exists among retail outlets and sporting goods distributors in Houston, for these specialty items under the ‘Hide and Chic’ brand name.
Define and describe the target population for this study?
Discuss the sampling methods that could be used in this study.
Recommend, with reasons, the most optimal sampling procedures for this study.
Q4. Farm Fresh Grocery’ (FFG) has always used paper bags for sacking groceries. However, management has noticed that some competitors are offering reusable bags to their customers. FFG management has asked you to find out if its current customers would prefer bringing the reusable bags every time they visit the FFG store. A) Select two projective techniques to use in your research. Give reasons for your choice. B) Describe in detail how your two chosen techniques would be applied to this research problem.
View More
15.
Ethical dilemmas are those where there is neither an easy answer nor a decision that is absolutely the right one.
...
the right one. Healthcare professionals must deal with these challenges based on their training and knowledge of ethical principles and decision making. Choose an ethical dilemma from the list below and answer the questions that follow. Use your knowledge and understanding from what you have already learned from Unit 1 and 2 lessons and the textbook reading assignments.
Genetic testing and home test kits
Physician-assisted death
Artificial intelligence and clinical decision making
Organ transplantation and artificial organs
Note: If you would like to choose a dilemma other than one on the list, please consult with your instructor and obtain permission.
Describe the issue and why and how it poses an ethical dilemma for healthcare providers and healthcare organizations?
What ethical principle(s) would be applicable to the dilemma?
Describe the ethical decision-making steps used to come to an ethical decision? With whom would a healthcare professional consult in coming to a decision?
How are your personal values challenged? What would be a personal bias or conflict of interest in resolving this dilemma
View More
32.I'm stuck on this problem regarding finding the speed of a cart moving down and then up a slope from
...
rest. The current unit that our teacher has us on so far is centripetal motion, and I can't recall being taught how to solve this. File attached below shows my work so far, I don't necessarily need the work done for me, but I just want to be put on the right track, such as an equation to start with or what I need to look for. The answer I got was clearly incorrect for part a (which is what I need help with), so please help me get going in the right direction.
View More
37.I have 5 questions I am stuck on. Please help!
1. Enter the correct answer in the box.
Facundo crochets and sells
...
chets and sells baby blankets, b. Each blanket requires 3 skeins of yarn, and the total number of skeins Facundo uses, y, varies directly as the number of blankets he crochets, b.
Write an equation that models this relationship.
2. The weight of an object, w, varies inversely as the square of its distance from the center of Earth, d. When an astronaut stands in a training center on the surface of Earth (3,960 miles from the center), she weighs 155 pounds. To the nearest tenth of a pound, what will be the approximate weight of the astronaut when she is standing on a space station, in orbit 240 miles above the training center?
3. The square of g varies inversely as h. When g = 16, h = 2. What is the value of h when g = 40?
4. The number of days, d, it will take Manny to read a book varies inversely as the number of pages, p, he reads per day. If k is the constant of variation, which equation represents this situation?
5. The battery life for Bruhier’s cell phone is longer when he has fewer apps running. When only one app is running, the battery will last for 16 hours. When four apps are running, the battery will only last for 4 hours.
View More
51.You are sleeping on an air mattress, which forms a rectangular "box" shape. The length and width don't change, but
...
't change, but throughout the night the height of the mattress is decreasing. The rate at which it decreases varies over time: at the beginning it is just shrinking a tiny bit, but after a while it starts shrinking faster. If the height of the of the mattress follows the formula h=18-0.2x^2, where h is the height in inches and x is the time in hours, and the length of the mattress is always 74 inches, and the width of the air mattress is always 54 inches, please find the rate at which the VOLUME of the air mattress is changing after 2 hours. V ' =
cubic inches per hour after 2 hours. (Round to one decimal place, but take a picture of your work and send it to me if you're worried your answer might be slightly off.)
View More
65.ATTACHED ARE GRAPHS
QUESTION 1
Q1 to Q4
The job satisfaction for the four occupational groups were used (lawyer, physical therapist, cabinetmakers, and
...
oups were used (lawyer, physical therapist, cabinetmakers, and system analysts). The results obtained for a sample of 5 individuals from each groups. Using the "ANOVA Output" below, please answer the following questions ( Use the significance level 5%).
Q1. The value of the test statistic is ____________
QUESTION 2
Q2. The p- value of the test is _________________
QUESTION 3
Q3. At the 5% significance level, the null hypothesis is rejected if the value of the F statistics is >= _________________
QUESTION 4
Q4. Interpret the ANOVA result at the 5% significance level. Is there any difference in the job satisfaction among the four occupational groups? Answer either yes or no. Explain the reason of your answer statistically.
QUESTION 5
Data from a Trucking Company is Southern California were utilized to examine the relationship among total daily travel time (y), miles to traveled (X1), and the number of deliveries (x2). Based on the "Regression Output" below, please answer the following questions.
Q5. The number of sample used in this regression analysis is______________
QUESTION 6
Q6. What is the value of the coefficient of determination?
QUESTION 7
Q7. What is the F test statistic value for the regression model significane test?
QUESTION 8
Q8. What is the predicted travel time for X1 =95, and X2= 6?
QUESTION 9
Q9. Is X2 (number of deliveries) related to Y (travel time)? Answer either yes or no. Explain the reason of your answer statistically.
ATTACHED ARE GRAPHS
View More