In: Psychology
Describe how live theater could deal with the Intangibility, Inconsistency, Inseparability and Inventory (perishability) of marketing services.
(20 points)
In: Operations Management
1. Based on your current understanding of the three modern theoretical perspectives (Structural functionalism, conflict theory, and symbolic interactionist), give a summary of each perspective. Then, explain which one you agree most with and give an example as to why you think it best explains how society works.
2. Define one quantitative research method and one qualitative research method.
3. Define social capital and cultural capital and explain how they are pivotal for low-income and minority students' educational success.
In: Psychology
Ellie’s Edibles, Inc. is segmented into three divisions, and
$42,000 of the fixed expenses relate to the corporate (common)
expenses and had been allocated equally between the three
divisions.
| Total Company | Division X | Division Y | Division Z | ||
| Sales | $200,000 | $80,000 | $50,000 | $70,000 | |
| Variable Expenses | 120,000 | 52,000 | 30,000 | 38,000 | |
| Contribution Margin | $80,000 | $28,000 | $20,000 | $32,000 | |
| Fixed Expenses | 60,000 | 20,000 | 22,000 | 18,000 | |
| Net income (loss) | 20,000 | $8,000 | -$2,000.00 | $14,000 | |
A. Calculate the Contribution Margin Ratio for each segment and for the Total Company.
B. Revise the income statement presented above into a segmented income statement.
In: Accounting
Write below in Python
Get user name from keyboard using input() function
(Example username = input("Enter username:")
A: What is your name?
B: My name is XXXX.
B: What is yours?
A: My name is XXXX.
A: Nice to meet you.
B: Nice to meet you, too.
Use print statement and use input() function
In: Computer Science
Write a class IgnoreCaseComparator that implements Comparator<Character>. If it were used as the argument to List.sort(), it would sort the list ignoring case. This behavior is different from using the natural ordering of characters, where uppercase characters come before lowercase characters.
Note that this question is not asking you to sort a list -- just to write the comparator!
For example, if the unsorted list were [b, C, A, d], then the list would be [A, b, C, d] after sorting using this comparator. (If you had sorted using the natural ordering of characters, the result would instead have been[A, C, b, d].)
You may find a utility method of Character, such as Character.toLowerCase(), helpful.
You may assume that Comparator and Character are imported. You may not import other classes.
In: Computer Science
examine the organizational structure in which Ginni Rometty (IBM) currently operates or formerly operated. Using your research report on the organizational structure of her organization. Based on your research characterize the culture of the leader's organization. What is your estimate on what kind of organizational cultural analysis result this leader's organization would see?
In: Operations Management
In: Operations Management
An investor buys a condo for $160,000 by putting 10% down and financing the rest using the 15 year fixed rate in the WSJ. What are her monthly payments? Another investor decides to use an interest only loan to finance the same type of condo, the rate is 3.5% a year, what are the monthly payments? Three years later the condo is worth $170,000, what will be the return on the investment for each investor?
In: Finance
Consider collaborative software that you presently use (or have used in the past) in a business environment. Describe the collaborative software. How did the use of collaborative software affect the productivity of the business? Does the adoption of new technology always improve the productivity of an organization? Why or why not? Please discuss.
In: Operations Management
The Shippecasse Company had a Current Ratio of 1:2. The Company paid a $10,000 cash dividend to preferred shareholders that was previously declared. What is the effect of the payment journal entry on the current ratio and total stockholders' equity, respectively?
Select one:
a. Increase, Increase
b. Decrease, Decrease
c. Increase, No Effect
d. No Effect, Increase
e. Decrease, No Effect
In: Accounting
Do you agree with findings of the "I love rewards' and the comments by the chief executive and founder of "I love rewards" razors, sulemn, concerning the motivation attitudes of millennial? why or why not? in what other ways do you think millennials differ from older employees?
In: Operations Management
Using Java language:
Overall Situation:
You work for a company that sells cars and services cars. You have been instructed to write a program to help keep track of these operations for the store manager. Your company is moving to an object oriented programming system for all of its software, so you will have to create a car class and use it in your program. Besides creating the cars when the user chooses, the user can also change information about a car they choose. You will need to incorporate error handling to make sure that incorrect values are not stored if the user enters them for a change. There are also menu options for specific reports you should show on the screen when the user selects those options.
Car Class:
Your system works with cars. Each car has the following information it keeps: vin (a string), make (a string), model (a string), year (a number greater than 1970), mileage (a number not less than zero), price (a floating point number greater than 1000.)
Menu:
You need to have a menu system for this program. The user should be allowed to do several different things and each time returning to the main menu when they are done.
Main System Features/Processes:
Here are the main functional features your system has to have for the user:
(Hint: Have it in a separate method you are calling and print a message and ask them what they want to change and number them so you can do a separate If/Else or Switch. Then ask them for the value to change it to, and do it there. …don’t try to do it in the main menu.)
In: Computer Science
Towards the end of the chapter (p. 160-161), examples of deriving control signals are given. Table 5-6 lists out the "actions" to fetch/decode/execute each CPU instruction.
List out the control signals given when a CPU instruction is
being executed. For example, when each of the instructions X, Y,
and Z is being executed, the control unit gives a set of signals at
different time T:
X: at T4: A0 A1 C0
at T5, A1 B0
(function/inst X and at T4: signals A0 A1 C0 are given
function/inst X and at T5, signals A1 B0 are given)
Y: at T3, signals B1 C0
at T4, signals A1 B1 C1
Z: at T4: signals A0 C1
at T5, signals A1 B0 C0
Then, each signal is given when:
A0 = X T4 + Z T4 = (X+Z) T4
A1 = X T4 + X T5 + Y T4 + Z T5 = (X+Y) T4 + (X+Z) T5
B0 = X T5 + Z T5 = (X+Z) T5
B1 = Y T3 + Y T4 = Y (T3+T4)
C0 = X T4 + Y T3 + Z T5
C1 = Y T4 + Z T4 (Y+Z) T4
Q1. For the Fetch, Decode, and Indirect steps
(T0 through T3) list out signals like the above. First list out
signals used in Fetch, Decode, then Indirect. Then for each signal,
list its timing definition.
(There should be 8 different signals appeared 12 times.)
(10 pts)
Q2. For signals used to execute 7 different
memory-reference
instructions, sort them out the same way as above. First
by instruction name, then by signal name.
Order the listing alphabetically. (10 pts)
Q3. What is interrupt-handling and why is it useful for operation of I/O devices? (2 pts)
In: Computer Science
As- sume that the box contains 10 balls: 4 red, 5 blue, and 1 yellow. As in the text, you draw one ball, note its color, and if it is yel- low replace it. If it is not yellow you do not replace it. You then draw a second ball and note its color.
(1) What is the probability that the second ball drawn is yel low?
(2) What is the probability that the second ball drawn is red?
In: Math