Questions
Well the Subject Name is : Organizational Change and Development and in the class the topic...

Well the Subject Name is : Organizational Change and Development and in the class the topic which was discussed most was about Leaders Vs Managers and the importance how does these roles influence or important to the every organization.

Question: what is the importance of leaders and managers in an organization and why should that topic be discussed among the students most of the time. Also explain diff between leaders Vs Managers.

In: Operations Management

a) What are the most important principals for designing a good report or visual? b) What...

a) What are the most important principals for designing a good report or visual?

b) What would you specifically avoid in designing a good report or visual?

In: Computer Science

C++ Question 4. Formulate the following conditions • A last name starts with the letter H....

C++ Question

4. Formulate the following conditions

• A last name starts with the letter H.

• A last name starts with the letters Mac.

• A last name comes before "Jones".

In: Computer Science

Write a 100 to 200-word statement connected to Social Media, include at least one specific reference...

Write a 100 to 200-word statement connected to Social Media, include at least one specific reference (okay if it is from another source).

Make sure to include two positives and two downsides to using Social Media in Healthcare.  

In: Nursing

Three Sociological Paradigms Collapse Let’s assume that a “welfare stigma” exists in American society. Many people...

Three Sociological Paradigms

Collapse

Let’s assume that a “welfare stigma” exists in American society. Many people have a perception that welfare recipients are “lazy” and that they “steal” the tax money. People also believe that welfare recipients make babies to stay on welfare instead of working. In fact, most welfare recipients are children, the elderly, the sick, the mentally and physically handicapped or young mothers with few skills. Explain why this “welfare stigma” exists by using TWO of the three sociological paradigms, structural functionalism, social conflict paradigm, and symbolic interactionism.

In: Psychology

Show that if all nodes in a splay tree are accessed in sequential order, then the...

Show that if all nodes in a splay tree are accessed in sequential order, then the
total access time is O(N), regardless of the initial tree.

In: Computer Science

The annual sales for​ Salco, Inc. were $ 4.46 million last year. The​ firm's end-of-year balance...

The annual sales for​ Salco, Inc. were $ 4.46 million last year. The​ firm's end-of-year balance sheet was as​ follows:  Salco's income statement for the year was as​ follows:

a. Calculate​ Salco's total asset​ turnover, operating profit​ margin, and operating return on assets. b. Salco plans to renovate one of its plants and the renovation will require an added investment in plant and equipment of $ 1.09 million. The firm will maintain its present debt ratio of 50 percent when financing the new investment and expects sales to remain constant. The operating profit margin will rise to 13.9 percent. What will be the new operating return on assets ratio​ (i.e., net operating income divided by total ​assets) for Salco after the​ plant's renovation?

c. Given that the plant renovation in part ​(b​) occurs and​ Salco's interest expense rises by $ 53,000 per​ year, what will be the return earned on the common​ stockholders' investment? Compare this rate of return with that earned before the renovation. Based on this​ comparison, did the renovation have a favorable effect on the profitability of the​ firm?

Balance sheet

Current assets $500,000 Liabilities $994,000
Net fixed assets 1488000 Owners' equity 994000
Total Assets $1,988,000 Total $1,988,000

Income statement

Sales $4,460,000
Less: Cost of goods sold (3,490,000)
Gross profit $970,000
Less: Operating expenses (505,000)
Net operating income $465,000
Less: Interest expense (102,000)
Earnings before taxes $363,000
Less: Taxes (35%) (127,050)
Net income $235,950

In: Finance

5.16 Implement function indexes() that takes as input a word (as a string) and a onecharacter...

5.16 Implement function indexes() that takes as input a word (as a string) and a onecharacter letter (as a string) and returns a list of indexes at which the letter occurs in the word.

>>> indexes('mississippi', 's')

[2, 3, 5, 6]

>>> indexes('mississippi', 'i')

[1, 4, 7, 10]

>>> indexes('mississippi', 'a')

[]

In: Computer Science

Explain how the modular kernel design combines the benefits of both the layered and microkernel structures.

Explain how the modular kernel design combines the benefits of both the layered and microkernel structures.

In: Computer Science

make a python script that has the following typed: school = “cochise college” place = “online”...

make a python script that has the following typed:

school = “cochise college”

place = “online”

Then do the following with the given parameters.Set the script to have a function that takes two parameters, school and place, have your function return the first 5 characters of each parameter value, utilizing a slice. Change the script to have a function that takes two parameters, school and place, have your function return the first character of each parameter, utilizing an index value. Then, Modify the script to have a function that takes two parameters, school and place, have your function return the last character of the variable place for each parameter, utilizing an index value. Next, modify the script to have a function that takes two parameters, school and place, have your function return the variables school and place in title form. Lastly, modify the python script to have a function that takes two parameters, school and place, have your function check to verify that ‘cochise’ is in the school parameter and ‘online’ is in the place parameter. If it is have the function return, ‘Great you go to Cochise College Online!’, else have the function return, ‘You should check out Cochise College Online!’

In: Computer Science

The objective is to read the last five lines of a file (text file) in Perl....

The objective is to read the last five lines of a file (text file) in Perl. I wrote down what I have written so far in Perl but I get an error message saying, "Can't open sample.txt: No such file or directory." The sample.txt file is located in the same directory that I am executing the perl scripts on the command line.

sample.txt

=============================================================

My
name
is
Jennifer
and
I
like
to
eat
tacos
de
birria
.

===========================================================

#!/usr/bin/perl

$filename= 'sample.txt';

open my $fh, "+>", $file or die "Can't open $filename: $!\n";

print "$file[-5]\n";

print "$file[-4]\n";

print "$file[-3]\n";

print "$file[-2]\n";

print "$file[-1]\n";

In: Computer Science

Answer prompts According to our book Golash-Boza. Chapter 9, Racism and the Criminal Justice System. R&R,...

Answer prompts According to our book
  • Golash-Boza. Chapter 9, Racism and the Criminal Justice System. R&R, pp. 219 - 248.
  • Alexander, Michelle. “The Color of Justice.” The New Jim Crow, pp. 97-139. [Canvas PDF]
1. What roles do individual and institutionalized racism play in maintaining the high rates of incarceration for African Americans?

2. What are some of the ways that mass incarceration affects men and women differently?

3. Why do you think police officers are more likely to conduct drug raids in low-income, black neighborhoods than in wealthier, primarily white neighborhoods?

In: Civil Engineering

I'm doing a practice test and I can't seem to find the answers anywhere for these...

I'm doing a practice test and I can't seem to find the answers anywhere for these specific questions. If someone could please help clarify so I can learn that would be helpful!

1. Identify the true statements. Select ALL that apply.


a. Setters and getters are not required for public instance variables.

b. A setter method is return-type void and takes a parameter of the same type as its field.

c. A getter method has the same return-type as the field it retrieves and takes no parameters.

d. Every private instance variable in a class definition must have a mutator method.

2.
private char gender;public class Person {

static int number;

//...

public static void main(String[] args) {

Person person;

   //...

}

public static void callPerson(int hours) {

double payRate = 24.99;

}

}

The code above compiles okay. Refer to it to complete this matching exercise.

_____

person

_____

hours

_____

number

_____

payRate

_____

gender

1.

local reference variable

2.

class variable

3.

instance variable

4.

parameter

5.

local primitive variable


3. Identify the true statements. Select ALL that apply.

a. Static methods are also class methods

b. Static methods of a class can be called without instantiating the class.

c. A static method cannot access the data members of its own class.

d. A non-static method can be called from a static method.

4. What does the public visibility modifier mean?

a. means accessible from any class in the same package.

b. means accessible to the current program.

c. means accessible to any method in the class.

d. means accessible from any other classes.

5.

3. public class Person {
4. private double salary;
5. public Person() {
6. salary = 1000.0;
7. }

What type of constructor is illustrated by lines 5 through 7?


6. Identify the true statements. Select ALL that apply.

a. Constants in a class should be declared as final static.

b. Static variables and static methods of a class can be accessed by an object of that class and by the class name.

c. Static variables have a default value of null.

d. Anonymous objects are possible in Java.


7. What Java keyword sometimes used in a class definition refers to the class itself?

In: Computer Science

This program does password verification. It gives the user three attempts to type in the correct...

This program does password verification. It gives the user three attempts to type in the correct password. Assume that the password is "COMSC110" (You can hard-code this). If the user types in the correct password, display a message saying "Login successful" and break out of the loop, otherwise display " Login Failed" and go to the next iteration. If the user enters three unsuccessful entries, then display a message saying " Too many attempts, Try again later", Use a while loop.

In: Computer Science

Assume that lake Hefner has volume billion cubic meters with initial pollutant concentration of, The daily...

Assume that lake Hefner has volume billion cubic meters with initial pollutant concentration of, The daily inflow of water is million cubic meters with a pollutant concentration of, Assume that the water is well mixed in the lake and the water flow out from the lake at the same rate.

(a) How long will it take to reduce pollutant concentration in the lake?

(b) What will be the pollutant concentration in the lake eventually?

In: Advanced Math