Questions
The publicity from Public Relations reaches a far wider audience than advertising generally does. Sometimes, your...

The publicity from Public Relations reaches a far wider audience than advertising generally does. Sometimes, your story might even be picked up by the national media, spreading the word about business all over the country.

1) From the point of view as a manager discuss the key to securing publicity and identifying your target market and developing a well-thought-out public relations campaign.

Write a 2-3 page double spaced paper using a 12 point font. This assignment is due by 04/30/2020 in class and will be graded based on depth and clarity.

In: Operations Management

Do research current acquisition tools as many as you can that are available up to now,...

Do research current acquisition tools as many as you can that are available up to now, specifying computer forensics vendor name, acquisition tool name and features of the vendor’s product. You can classify the listing vendors you found with Excel or Word table that contains each row with the acquisition tool name and each column, such as raw format, proprietary format, AFF format, other proprietary formats the tool can read, compression of image files, remote network acquisition capabilities, and method used to validate (MD5, SHA-1, and so on). NO more than 10 pages overall.

In: Computer Science

Given some data in a text file, the task is to scramble the text and output...

Given some data in a text file, the task is to scramble the text and output in a separate text file. So, we need to write a Python program that reads a text file, scrambles the words in the file and writes the output to a new text file.

Rules to be followed:

  • Words less than or equal to 3 characters need not be scrambled.
  • Don’t scramble first and last char, so Scrambling can become Srbmnacilg or Srbmnailcg or Snmbracilg, i.e. letters except first and last can be scrambled in any order.
  • Punctuation at the end of the word to be maintained as is i.e. “Surprising, ” could become “Spsirnirug, ” but not “Spsirn, irug”

In: Computer Science

Research Analysis Based on your readings from the textbook and lectures, answer the following questions regarding...

Research Analysis Based on your readings from the textbook and lectures, answer the following questions regarding your research. Select a peer-reviewed empirical article. Read through method and measurement, and identify each measured variable according to the scale upon which it was measured, and explain why you chose that particular scale of measurement. What are the variables you will be using in your research project for this class? Describe each of them. What scale(s) of measurement are you using for each? Submission Details Please provide your answers in a 3- to 4-page Microsoft Word document.

In: Psychology

various components of promotional activities that companies can use to attract consumers. These components include: •...

various components of promotional activities that companies can use to attract consumers. These components include:

• Theme

• Product sampling

• Open house

• Coupons, vouchers, and discount codes

• Contests and sweepstakes

• Premiums and giveaways

Based on these components, provide 3 examples of promotional activities from the list above that WOULD attract you to a sporting event. Why were these promotional activities effective in getting you to attend the event? Or, why would they be effective in the hypothetical situations?

**you can combine actual personal experiences with hypothetical experiences, as long as you provide a TOTAL of 3 examples!** No word minimum

In: Operations Management

Requirements: Your response should contain the following three parts, and should be developed with clear and...

Requirements: Your response should contain the following three parts, and should be developed with clear and concise paragraphs. Include a reference page for the source of the ethical issue if it is not what you have experienced.

Word Limit: 300-500

1. Identify an ethical issue you have witnessed or read about or heard about in the news.

2. Describe the issue: what is the issue? How is it an ethical issue? In describing the issue, identify the source: state where you saw, heard, or experienced the issue; state who or what is/are involved.

3. Offer a resolution to the issue using a specific ethical theory.

In: Psychology

Define and execute a process to evaluate your data warehouse data for incompleteness, nulls, and the...

Define and execute a process to evaluate your data warehouse data for incompleteness, nulls, and the ability to provide consistent query data.

Create a summary for your project sponsors to inform them of the quality of data they can expect from the new data warehouse.

Include the following information in your summary:

  • Your data evaluation strategy
  • Specific data evaluation queries
  • Sample results per query
  • Summary of findings

Document your summary as either:

  • A 10-slide Microsoft® PowerPoint® presentation with detailed speaker notes
  • A 2- to 3-page Microsoft® Word document

In: Computer Science

Explain the working principle of the rotary vane and ram type steering gear systems. Write down...

  1. Explain the working principle of the rotary vane and ram type steering gear systems. Write down all tests and controls are to be done related to steering gear. Explain why emergency steering operation drills are carried out on board and write down the emergency steering procedures. Write down the possible reasons, results and solutions of the following problems :
  • Oil leakages,
  • Difference in the actual rudder angle and ordered helm angle,
  • Excessive noise from steering gear,
  • High oil temperature,

No steering from remote control

I NEED GOOD ANSWER AND WRİTE WORD

In: Mechanical Engineering

chapter 8: Human Development Assignment: Developmental Psychology Instructions: Select an adult to study (someone who is...

chapter 8: Human Development

Assignment: Developmental Psychology

Instructions:

  1. Select an adult to study (someone who is a prominent person, singer/actor, politician, athlete, or someone in the news), I prefer president Donald Trump

  2. Prepare a 700-1000 word paper in which assess the following issues:

    1. What family issues or support systems may have influenced this person's learning style and behaviors?
    2. Select two theories of learning and apply them to the person you selected to study
      1. How does each theory explain their behavior, ideas, and achievements?
      2. Why?
      3. Include in paragraph citations and references

In: Psychology

// This pseudocode is intended to determine whether students have // passed or failed a course;...

// This pseudocode is intended to determine whether students have

// passed or failed a course; student needs to average 60 or

// more on two tests.

start

Declarations

num firstTest

num secondTest

num average

num PASSING = 60

output "Enter first score or 0 to quit "

input firstTest

while firstTest not equal to 0

output "Enter second score or 0 to quit"

input secondTest

average = (firstTest + secondTest) / 2

output "Average is ", average misspelled “t” for the word output

if average >= PASSING then

output "Pass"

else

output "Fail"

endif

endwhile

stop

In: Computer Science