You want to create a study to examine the psychological factors affecting how teenagers in an impoverished urban area spend their time outside of school. For this assignment, you will design this study. Below is a list of each of the components on which you will be evaluated. You will be evaluated based on the following: Use of the scientific method. Discussion of which methods you used, why, and potential sources of error. Explanation of the relationship between the hypothesis vs. the null hypothesis; and connection to your study. Analysis of potential ethical issues, their importance in research, and how to address them. Discussion of potential issues regarding culture, gender, diversity, or the environment and how to address them. Explanation of which types of sources were used and how these choices may affect results. An overview of how you would present your findings and why they can be classified as being within the field of psychology. Please provide your answers in a 3- to 4-page Microsoft Word document Cite any sources in APA format.
In: Psychology
HOW WOULD YOU WRITE THIS IN PYTHON? SHOW THIS IN PYTHON CODE PLEASE
# DEFINE 'all_keywords', A LIST COMPRISED OF ALL OUR NEGATIVE SEARCH KEYWORDS AS REQUIRED BY THE PROJECT
# FOR EACH ELEMENT IN 'full_list' (THE LIST OF LISTS YOU WOULD HAVE CREATD ABOVE THE PREVIOUS LINE)
# INITIALIZE THE SET 'detected_keywords' TO EMPTY
# DEFINE VARIABLE 'current_reviewer' FROM CURRENT ELEMENT OF 'full_list' BY EXTRACTING ITS FIRST SUB-ELEMENT,...
# ...CONVERTING IT TO A STRING, AND THEN STRIPPING THE SUBSTRING '<Author>' OFF THIS STRING
# GENERATE THE LIST 'separated_words' COMPRISED OF EACH SEPARATE WORD IN THIS REVIEWER'S COMMENTS, BY EXTRACTING THE SECOND SUB-ELEMENT...
# ...FROM THE CURRENT ELEMENT AND EXECUTING THE '.split' METHOD ON IT
# FOR EACH ELEMENT IN 'separated_words'
# FOR EACH ELEMENT IN 'all_keywords'
# if LOWER-CASE OF 'all_keywords' IS CONTAINED IN LOWER-CASE OF 'separated_words'
# ADD THE CURRENT ELEMENT OF 'all_keywords' TO THE SET 'detected_keywords'
# IF LENGTH OF 'detected_keywords' IS MORE THAN ZERO
# PRINT A LINE SUCH AS -- XYZ USED THE FOLLOWING KEYWORDS: {'bad,'rough'}
# ELSE
# PRINT A LINE SUCH AS -- XYZ DID NOT USE ANY NEGATIVE KEYWORDS.In: Computer Science
The CEO of your company would like to revamp the retirement options offered to employees.
Create a proposal that describes two to three different retirement plans that could be offered. In the proposal, you must identify specific requirements of the Employee Retirement Income Security Act of 1974 that the organization would need to fulfill. In addition to the proposal, management has asked the HR department to design a communication plan that encourages employee participation for one of the proposed retirement plans.
Prepare a 525- to 700-word proposal and communication plan. In your communication plan, include components that encourage participation in the retirement plan.
Answer the following questions:
I just need help with the introduction and conclusion
In: Operations Management
INSTRUCTIONS: A company has a centralized accounting system. Each individual department currently compiles its accounting paper transactions from its local accounting system. To eliminate the paper and increase efficiency, the Audit Manager of the company just asked you, IT auditor, to help him come up with a plan to implement an interface from each individual department’s accounting system to the centralized accounting system.
TASK: Prepare a memo to the Audit Manager naming and describing the most critical controls that you would recommend in this particular case. You are required to search beyond the chapter (i.e., IT literature and/or any other valid external source) to support your response. Include examples, as appropriate, to evidence your case point. Submit a word file with a cover page, responses to the task above, and a reference section at the end. The submitted file should be 5 pages long (double line spacing), including cover page and references. Be ready to present your work to the class.
In: Operations Management
You have two candidates for a marketing position. Both have similar educational backgrounds and certifications. However, the first candidate has 20 years of related experience, while the second candidate has 6 years of similar experience. The first candidate is asking for a competitive base salary plus one week extra vacation as part of the benefits package. The second candidate is asking for a competitive base salary plus a company smartphone (upgraded each year) and paid Internet service at home. The first candidate is willing to work a flexible schedule (nights, weekends, etc.), while the second candidate prefers to work remotely from home. Both are requesting to be included in the company's annual bonus plan. Write a 700- to 1,050-word paper that includes the following: Compare the direct and indirect compensation requests for each candidate. As an HR professional, what do you think is the best hiring decision for the company, and why? Format your paper consistent with APA guidelines.
In: Operations Management
In Java inputs and output values can easily be manipulated, for example when dealing with money the value should always be formatted to 2 decimals or another use is separating of words in even spaces, line breaks and etc. Your task is to prompt the user for 2 numbers one integer the other decimal and print their product in money format. The program should also take in two words delimitated by @ symbol.
Sample run 1:
Enter a whole number: 4
Enter a decimal number: 6.854
Enter two words delimitated by @ symbol: Mango@15@
Output:
The product of the 2 numbers: 27.416
The product in money format is: N$ 27.42
Assuming the user bought 4 Mango(s) costing N$ 6.85
The VAT to be charged is 15%, hence total due to be paid is N$
31.53
[Hint: The two word provided are the item sold and the VAT charged,
which is added on the product calculation. For formatted printing
and keyboard input see page 129 – 139 in the prescribed book]
In: Computer Science
Should I give the Page Quality (PQ) rate of LOW or LOWEST?
1. True/False - A page with a mismatch between the location of the page and the rate location; for example an English (UK) page for an English (US) rating task.
I think it's false because of this statement in the general guidelines. Do not consider the country or location of the page or website for PQ rating. For example, English (US) raters should use the same PQ standards when rating pages from other English language websites (UK) as they use when rating pages from the U.S websites. In other words, English (US) raters should not lower the PQ rating because the page location (UK) does not match the task location.
2. True/False A file type other than a webpage, for example: a PDF, a Microsoft Word document, or a PNG file.
3. True/False A page that gets a Didn't Load flag.
4. True/False Pages with an obvious problem with functionality or errors in displaying content.
In: Computer Science
def num_to_digit_rec(num, base):
"""
Return a list of digits for num with given base;
Return an empty list [] if base < 2 or num <= 0
"""
# Write your code here
return []
def digit_sum(num, base):
"""
Return the sum of all digits for a num with given base
Your implementation should use num_to_digit_rec() function
"""
# Write your code here
return 0
def digit_str(num, base):
"""
Given a number and a base, for base between [2, 36] inclusive
Converts the number to its string representation using digits
0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
to represent digits 0 to 35.
Return the string representation of the number
Return an empty string '' if base is not between [2, 36]
Your implementation should use num_to_digit_rec() function
"""
digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
# Can not find str representations for base not in [2, 36]
if base > 36 or base < 2:
return ""
# Calculate and return the str representation for num for the given base
# Write your code here
return ""
def uses_only(word, letters):
"""
Return True if word only uses characters from letters;
otherwise return False
"""
# Write your code here
return True
def digit_to_num(rep, base):
"""
Return -1 if base is not between [2,36] inclusive;
or if the string rep contains characters not a digit for the base;
Return the number represented by the string for the given base otherwise.
For example digit_to_num("1001", 2) is 9; digit_to_num("ABC", 16) is 2748.
"""
# Check if the base is valid
if base > 36 or base < 2:
return -1
digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
rep = rep.upper()
# Check if the rep only uses proper digits
# Write your code here
return 0
def run():
num = int(input("Enter a num: "))
base = int(input("Enter a base: "))
print(f"Digit list is {num_to_digit_rec(num, base)}")
print(f"Digit sum is {digit_sum(num, base)}")
print(f"String Rep is {digit_str(num, base)}")
rep = input(f"Enter a string rep of a num with base {base}: ")
print(f"The number is {digit_to_num(rep, base)}")
if __name__ == "__main__":
run()
Example:
Enter a num: 0 Enter a base: 5 Digit list is [] Digit sum is 0 String Rep is 0 Enter a string rep of a num with base 5: 3 The number is 3
In: Computer Science
Please Use your keyboard (Don't use handwriting)
MGT 311
I need new and unique answers, please. (Use your own words, don't copy and paste)
Please re-write my answer by using another words.. I need new and unique answers, please. (Use your own words, don't copy and paste)
________
Please re-write my answer by using another words.. I need new and unique answers, please. (Use your own words, don't copy and paste)
1.
A paper manufacturing organization:
The operations process here will have the entire supply chain comprising of sourcing to inventory management to production to finished goods storage to dispatch. The production process will be a major operations area that will involve issue of raw material from stock to the flow of this material through different processes at plant. There would be WIP/inventory at the end of each process step. Finally the end product will be packed as per specifications post inspection and stored for dispatch to customers.
There will be several decisions required to be taken here like what kind of raw material inventory to keep and the reorder points for the same, what capacity planning to be done depending on the demand, the processes/machines to be run as per the timelines and monthly targets defined, the internal mapping of manpower to processes, the output to be dispatched at the right time to the customers will all quality specifications met
An internal design office: An internal design office will be service organization working for clients to provide designs be it for architectural purposes or for home furnishing industry, etc. Here the operation process will be more streamlined and simpler where based on customer requirements, there will be team assigned to work on software to come up with the required design. One change here that we will see compared to a paper manufacturing organization is that even when the design is made, it can undergo iterations basis feedback received from customers.
The operations decisions will largely be on the expected timelines for creating a design, the manpower required to finish the project, the requirement for additional tools/software to aid in completion of work, etc.
2.
Marketing: Marketing may see this as an internal shift of thought process and their outgoing communication to stakeholders need to be aligned accordingly
Finance will see this as a change in the operating model and the MIS and operating performance need to be tracked likewise so that the accountability for the profitability of different work centers is not compromised
Human resources may feel concerned about the existing manpower and the skills they possess whether adequate to make this move
Accounting will need to look at the costs in a different manner compared to what was being done in a batch process and align with Finance
Information systems will need an overhaul as there would be a major ERP change due to this
3.
A soap factory is a manufacturing unit which has raw materials procured from different vendors, the raw materials are stored in a central location, issued in batches for production based on demand outlook and manufactured at different steps. The end product is then packed in the packing dept. and post inspection stored in batched ready to be dispatched to distributors/sellers
In: Operations Management
Write a paper based on this Economic Policy Topic List (you can't pick a topic outside this list – all these topics have been addressed by economists and there is a very large literature on these topics, it's up to you to do your research and do the work):
a) Global Warming (think any questions related to whether or not the government should implement policies to reduce global warming, whether the government should subsidize green energies, whether the government should implement a carbon tax, etc.)
b) Globalization (think any questions related to Free Trade or Protectionism)
c) Health Insurance (think questions related to the Affordable Care Act, a Single-Payer System, or complete
privatization of health insurance markets)
d) Immigration (think any questions related to the wage impact of immigration, the fiscal impact of
immigration, the institutional impact of immigration, the impact of immigration on innovation, etc.)
e) Minimum Wage
f) Poverty and Income Inequality
GUIDELINES: FORMAT, HOW TO SUBMIT, DEADLINES
Format
It's a Microsoft Word, Apple Pages, or PDF document (PDF is preferred).
Length is between 1,200 - 2,500 words (reference list not included).
Font: Times New Roman, Font Size: 12 points, Double Space, Margins: 1 inch (left, top, right, bottom), keep
footnotes at a minimum.
Your paper must have a cover page with Title of the Paper & Abstract summarizing what you did in your paper
(50-150 words) - it doesn't count toward word count. DON'T PUT ANYWHERE Your name, Your student ID number, Course title, Course section, CRN #, Professor's Name. The reason for that is that for assessment and evaluation purposes, we want you to be anonymous. Don't worry, when it comes to your grade, your paper will be graded by me using the scoring rubric below and hyperlinked below in PDF. Assessment uses exclusively the General Studies Learning Outcomes listed below using the rubrics included below BUT there is no grade attached to it. What matters for grade purposes is the SCORING rubric, which I included below and that you can see when you click on the assignment as well.
The paper sequence is to your choosing but your sections/sub-sections must be titled and you must have an Introduction, a Conclusion, and a Reference List.
In: Economics