Entries by Student

write my assignment 15878

CAN YOU DO THIS FOR ME

 You are required to create a thread in response to 1 of the provided prompts (choose only 1) for each forum. Each thread must be 500-750 words.  

Each thread and each reply must include at least 2 scholarly sources (published within the last 5 years) in addition to the course textbook and relevant biblical integration. All citations and references must be in current APA format.

Discussion Board Forum 1: Thread 

Thread Prompt: Choose 1 of the following prompts to complete your thread:

1. What seems to be the main source of conflict between supervisors, employees, and the HR department?

2. Do you believe that managers should be  given more autonomy to make personnel decisions such as hiring,  appraising, and compensating subordinates, or do you believe that  managers should be given less autonomy to make such decisions? Explain  and substantiate your reasoning.

3. Why would employers want to fire  employees whose dependents are having serious health problems? What do  you think would be the reaction of employees with healthy dependents who  suspect this might be happening? Explain.

In a world that is quick to state  discrimination has taken place, there is a new discrimination emerging  (i.e., reverse discrimination). Is this form of discrimination really  discrimination? What diversity practices would you put in place to  prevent any kind of discrimination?

Submit your thread by 10:59 p.m. (CST) on Sunday.

 

"Not answered?"


Get the Answer

write my assignment 27361

Consider your organization or another organization with which you are familiar. Briefly describe the organization, and then answer the following questions:

  • What do you think is one of the most interesting uses of database technology by this organization? Why?
  • Who benefits from this use? In what ways?
  • Are there any downsides?
  • Are there any additional database technologies (or uses of the same technology) that you think this company should consider? Explain.
  • As a business manager, how can you effectively utilize database technologies to better do your job?
  • Embed course material concepts, principles and theories, which require supporting citations along with at least two scholarly peer reviewed references in supporting your answer. Keep in mind that these scholarly references can be found in the Saudi Digital Library by conducting an advanced search specific to scholarly references.
  • You need to reply to at least two peers’ post answers to this discussion question. These replies need to be substantial and constructive in nature. They should add to the content of the post and evaluate/analyze that post answer. Normal course dialogue doesn’t fulfill these two peer replies but is expected throughout the course. Answering all course questions is also required.
  • Use Saudi Electronic University academic writing standards and APA style guidelines.

Be sure to support your statements with logic and argument, citing all sources referenced. Post your initial response early, and check back often to continue the discussion. Be sure to respond to your peers’ posts as well.

Required

  • Chapter 3 in Information Technology for Management (attached)
  • Brown, D. S. (2016, May 26). 7 reasons why you need a database management system. Retrieved from https://
  • Maté, A., Trujillo, J., García, F., Serrano, M., & Piattini, M. (2016). Empowering global software development with business intelligence. Information and Software Technology, 76, 81-91.
  • McStravick, G. (2018, January 12). Opinion: The future is now: 2018 market predictions for database and data management. Retrieved from https://
  • Skyrius, R., Katin, I., Kazimianec, M., Nemitko, S., Rumšas, G., & Žilinskas, R. (2016). Factors driving business intelligence culture. Issues in Informing Science and Information Technology, 13, 171-186. Retrieved from http://iisit.org/Vol13/IISITv13p171-186Skyrius2620.pdf
  • Vera-Baquero, A., Colomo Palacios, R., Stantchev, V., & Molloy, O. (2015). Leveraging big-data for business process analytics. The Learning Organization, 22(4), 215-228.

 

"Not answered?"


Get the Answer

write my assignment 20427

Hello, I am looking for someone to write an essay on Sampling. It needs to be at least 500 words.

This is true in for example agricultural research organizations that test on the pesticides, herbicides and plants the farmers and consumers need. Since they cannot go round asking each and every stakeholder, the manager sends the team to sample a few of those for the market research (Hillger 2006).

The other importance is that sampling cuts costs of organization especially that spend on market research. The cost reduction is in terms of sampling researchers and also sampling the participants. This is cost effective compared to employing the whole team of researchers which is expensive and time consuming. This is used by motor vehicle manufacturing companies in many parts of the world like Germany, America and Japan. This sampling decision is approved by middle-level and top-level managers of such companies (Danford 2009).

Managers are tasked with staffing. This entails short listing candidates for interviews and hiring a few of those shortlisted. This process requires employment of sampling procedures. This is because when a job position is advertised, many qualified and some unqualified individuals apply and it is the work of human resource managers in collaboration with other managers to short list them based on the qualifications and this is mostly done through systematic or even random sampling (Caruth et al. 2009).

One of the skills of the manager is to build power bases (Evans et al. 2007). This means that the manager will have to decentralize power and activities in the organization for effectiveness and achievement of organization’s goals and objectives. This power distribution can be done through cluster or stratified sampling. This means that the manager will divide the organization into different departments and have supervisors or line managers control it. This is common in banks which have decentralized the power of

 

"Not answered?"


Get the Answer

write my assignment 30903

Please I need help with the result of this project

copy and paste the sample code below into the Python programming app of your choice, one program at a time. RUN THE PROGRAM to make sure it’s working properly. IF YOU GET AN ERROR, please correct the error and run the program again to make sure it’s working properly. NOTE: I ran all these programs successfully in Python 3.6 (32-bit)

Then, for EACH PROGRAM, make the asked-for changes and rerun the program. Correct any errors, so that you can turn in the assignment with no errors thrown.

I need a screen print of each changed program once you have run the program to make certain that it’s working. Copy and paste your changed code into text, and submit that document as well. please thank you,

SAMPLE PROGRAMS WITH OUTPUT

********************

1. Need help wrting Python program that prints out the words, with special indentation, of “Twinkle, twinkle, little star”.

PROGRAM:

print(“Twinkle, twinkle, little star, ntHow I wonder what you are! nttUp above the world so high, nttLike a diamond in the sky. nTwinkle, twinkle, little star, ntHow I wonder what you are!”)

OUTPUT:

Twinkle, twinkle, little star,

   How I wonder what you are!

      Up above the world so high,

      Like a diamond in the sky.

Twinkle, twinkle, little star,

   How I wonder what you are!

MAKE THESE CHANGES:

Print out a different (short) poem. Have each line of the poem print individually, but with NO indentation as shown in the OUTPUT above.

********************

2. Need help wrting Python program that displays the current date and time.

PROGRAM:

import datetime

now = datetime.datetime.now()

print (“Current date and time : “)

print (now.strftime(“%Y-%m-%d %H:%M:%S”))

OUTPUT:

Current date and time :

2018-01-31 14:23:03

MAKE THESE CHANGES:

Make the above program print out Greenwich Mean Time in addition to what it’s already doing.

********************

3.Need help writing Python program to print out a set containing all the colors from a list which are NOT present in another list.

Test Data:

color_list_1 = set([“White”, “Black”, “Red”])

color_list_2 = set([“Red”, “Green”])

Expected Output :

{‘Black’, ‘White’}

PROGRAM:

color_list_1 = set([“White”, “Black”, “Red”])

color_list_2 = set([“Red”, “Green”])

print(color_list_1.difference(color_list_2))

OUTPUT:

{‘White’, ‘Black’}

MAKE THESE CHANGES:

Change the above program to use numbers instead of colors.

********************

4.Need help writing Python program to display your details like name, age, address in three different lines.

PROGRAM:

def personal_details():

   name, age = “Simon”, 19

   address = “Bangalore, Karnataka, India”

   print(“Name: {}nAge: {}nAddress: {}”.format(name, age, address))

personal_details()

OUTPUT:

Name: Simon

Age: 19

Address: Bangalore, Karnataka, India

MAKE THESE CHANGES:

Add details as to where you attended high school and college.

********************

5. Need help writing Python program to compute the future value of a specified principal amount, rate of interest, and a number of years.

Test Data : amt = 10000, int = 3.5, years = 7

Expected Output : 12722.79

PROGRAM:

amt = 10000

int = 3.5

years = 7

future_value = amt*((1+(0.01*int)) ** years)

print(round(future_value,2))

OUTPUT:

12722.79

MAKE THESE CHANGES:

Change the amout, interest rate, and number of years and run the program again.

********************

6. Need help writing Python program to calculate midpoints of a line.

PROGRAM:

print(‘nCalculate the midpoint of a line :’)

x1 = float(input(‘The value of x (the first endpoint) ‘))

y1 = float(input(‘The value of y (the first endpoint) ‘))

x2 = float(input(‘The value of x (the first endpoint) ‘))

y2 = float(input(‘The value of y (the first endpoint) ‘))

x_m_point = (x1 + x2)/2

y_m_point = (y1 + y2)/2

print();

print(“The midpoint of line is :”)

print( “The midpoint’s x value is: “,x_m_point)

print( “The midpoint’s y value is: “,y_m_point)

print();

SAMPLE OUTPUT:

Calculate the midpoint of a line :                                                                           

The value of x (the first endpoint) 2                                                                        

The value of y (the first endpoint) 2                                                                        

The value of x (the first endpoint) 4                                                                        

The value of y (the first endpoint) 4                                                                        

The midpoint of line is :                                                                                    

The midpoint’s x value is: 3.0                                                                              

The midpoint’s y value is: 3.0

NO CHANGES HERE.

********************

7. Need help writing Python program to check if a string is numeric.

PROGRAM:

str = ‘a123’

#str = ‘123’

try:

   i = float(str)

except (ValueError, TypeError):

   print(‘nNot numeric’)

print()

OUTPUT:

Not numeric

NO CHANGES HERE.

********************

8. Need help writing Python program to input a number, if it is not a number generate an error message.

PROGRAM:

while True:

   try:

       a = int(input(“Input a number: “))

       break

   except ValueError:

       print(“nThis is not a number. Try again…”)

       print()

POSSIBLE OUTPUT:

Input a number: H

This is not a number. Try again…

Input a number: 3

MAKE THESE CHANGES:

Have a statement print out after a number is entered as well.

********************

9. Need help writing Python program to sum all counts in collections.

PROGRAM:

import collections

num = [2,2,4,6,6,8,6,10,4]

print(sum(collections.Counter(num).values()))

OUTPUT:

9

NO CHANGES HERE.

********************

10. Need help writing Python program to print the calendar of a given month and year. Note: Use ‘calendar’ module.

PROGRAM:

import calendar

y = int(input(“Input the year : “))

m = int(input(“Input the month : “))

print(calendar.month(y, m))

SAMPLE OUTPUT:

Input the year : 2018

Input the month : 8

   August 2018

Mo Tu We Th Fr Sa Su

      1 2 3 4 5

 6 7 8 9 10 11 12

13 14 15 16 17 18 19

20 21 22 23 24 25 26

27 28 29 30 31

MAKE THESE CHANGES:

Print out a different month of the year. Then try printing out a group of months – something like 3 calendars, instead of just one, and see what happens.

That’s it!

 

"Not answered?"


Get the Answer