Get Writing Help
WhatsApp
    Skip to content
Start Your Order

Author: <span>admin</span>

Uncategorized

You will submit a 4-page paper based on a country of your choice (country is on a first come, first serve basis). Country needs to be selected by 1/19/2021. Students will discuss a supply and demand d You will submit a 4-page paper based on a country of your choice (country is on a first come, first serve basis). Country needs to be selected by 1/19/2021. Students will discuss a supply and demand dilemma and how it impacts the economic climate, as well as two of the topics from the following list: real GDP per capita, unemployment, inflation, and the national debt. Students will also state the relevancy of the research as a tourist, future employee/employer in that nation, and/or concerned global citizen. PAPERS Papers should be typed in some reasonable typeface, not to exceed 12 point, with standard margins. Standard margins are approximately 1″ right, left, and bottom and 1.5″ on the top. Your paper should have a title page and a bibliography. These are not part of the page count. Neither are tables/graphs/other illustrations. Your paper should be at least 4 pages and probably not more than 6 Your pages must be numbered. You may use EITHER footnotes or endnotes. You may NOT use parenthentical citations that appear in the body of the paper. Any paper with parenthetical citations will be returned to you for correction. You may use any footnote/bibliography format that you choose, as long as it is consistent. See notes below on citations and plagiarism. Your paper is graded on (1) content, (2) interest, (3) originality, and (4) technique. CITATIONS AND PLAGIARISM In general, any idea or concept or fact that is not general knowledge and is not original should be cited appropriately. Plagiarism is remarkably easy to detect. Violators will, without exception, be talking to the appropriate academic authorities. Direct quotes MUST appear in quotation marks, but direct quotes should in general be used sparingly and only when the quote is written so uniquely (and interestingly) that it is not possible to paraphrase. Paraphrased ideas/facts from other sources must be cited appropriately. “Common knowledge” need not be cited, but you need to consider whether it really is common knowledge, something that most people could be expected to know, or not. Web sources must be carefully cited so that I can check them. Again, I don’t care about citation format, but it must be that I can type your link into my computer and immediately find your source. Web pages do change, so it is often a good idea to print out your source pages (and provide them with your paper if you think it necessary) Show more

You will submit a 4-page paper based on a country of your choice (country is on a first come, first serve basis). Country needs…

Uncategorized

For the Unit III Essay, imagine you are the lead trainer for a global organization. Through data analytics and observations, you have noticed that employees across the organization do not share their For the Unit III Essay, imagine you are the lead trainer for a global organization. Through data analytics and observations, you have noticed that employees across the organization do not share their knowledge with one another, whether that be from skills trainings they recently completed to general knowledge that could enhance the capabilities of the organization. This is a big issue for the chief executive officer (CEO), and the head of human resources (HR) has asked you to come up with solutions to address the issue. Within your essay, provide the information below. Give three reasons as to why employees do not share knowledge. Give three solutions that your organization can incorporate to encourage knowledge sharing among employees. Discuss the benefits that each solution offers and how each solution promotes knowledge sharing. For this essay, create a fictitious company name and location, and make your suggestions specific to that company. In the introduction, give the company name and location and some brief background information about the company and industry. Feel free to choose any industry (e.g., technology, manufacturing, or advertising) that interests you, and add any details that you think are necessary for your essay.Your essay must be at least two pages in length, not counting the title and reference pages. You are required to use at least one outside source to support your explanation. All sources used, including required unit resources, must be cited and referenced according to APA guidelines. Show more

For the Unit III Essay, imagine you are the lead trainer for a global organization. Through data analytics and observations, you have noticed that…

Uncategorized

The King is pleased with your loyalty and service. To reward you, he shows you a bag of gemstones (pearls and opals) and tells you that you may have all the pearls or all the opals, if you can tell hi The King is pleased with your loyalty and service. To reward you, he shows you a bag of gemstones (pearls and opals) and tells you that you may have all the pearls or all the opals, if you can tell him which is worth more. You are given this information: 1.   “gems.txt” is a file containing one line for each gem. The line says “opal” or “pearl” and the diameter of the gemstone, in millimeters (a double). There are a lot of lines in the file, with pearls and opals mixed in together. Sample input lines: opal 2.35 pearl 3.7 2.    The static functions exp(double) and pow(double, double) are defined in java.lang.Math. 3.    The estimated value of a pearl is exp(diameter/2) − 1 (Really! that is what they sell for.) 4.    The estimated value of an opal is 8.33 ∗ diameter2 Write a Java program to find out which collection is worth more. Implement these classes: 1.    The Gem Class. This is part of the model for the application. Implement the following members: (a)    Data members for the type of gem, as a String (“pearl” or “opal”), its diameter (mil- limeters) and its estimated value, which you will compute. (b)    A public constructor with two parameters (gem type and diameter). It will call one of the functions below and use the parameters and the answer to initialize the new object. (c)    Private functions calcOpal() and calcPearl() that use the diameter to calculate the value of a gem. Return the value. (d)    A toString() function that will neatly format the three data members of the gem. Format the dollar amounts to two decimal places. (e)   Any get-functions (accessors) you need, but NO set-functions (mutators). 2.   The Treasure Class. This is the controller class for the application. You may put your main function here. In addition, implement the following members and anything ELSE that you need: (a)    A Scanner for reading the input file, “gems.txt”. (b)    An ArrayList for holding the pearls. A second ArrayList for storing the opals. (c)    A function that reads the file, constructs Gem objects, and stores each object in one of the collections. (d)    A printGems() function, whose parameter is one of your collections. It prints a list of the gems in the collection. Print the dollar amounts to two decimal places. Delegate the formatting to the Gem class. While calculating their total value. RETURN, don’t print, the value of the collection. (e)   An evaluate() function that calls the printGems() function twice, First call it to print the pearls and print their total value. Then call it again to print the opals their total value. Finally, print a statement about which collection is the most valuable. Exam 1 – Practical: February 14–18, 2014  CSCI 6617 Java Programming               2 3.    Submission. Submitting your work properly is part of following instructions. (a)    Capture your screen output and paste it into a text file in your project directory. DO NOT USE a .doc or .docx file (b)    Zip or rar the entire project directory, with the output. (c)    Email the zipped file to my home email address. (d)    Save a copy on your own machine until you get the ”Got it!” message. Assessing The King’s Gems.                                                                                                                                                                   (30) The Exam 1 program will be graded on the following criteria: 1.    (12) Design Principles and Style •   (2) The program implements the instructions fully, using reasonable techniques. •   (2) All data members are private. There are no set functions. •   (2) Each class has the appropriate parts, that is, parts that belong in class B are in class B not in class A. •   (2) Constructors are written and used appropriately. •   (2) Appropriate built-in Java classes and data structures are used. •   (2) Indentation and blank lines are reasonable and consistent. Names are reasonable. There are comments in the program. They add to the clarity. They don’t clutter it or mislead the reader. 2.    (18) Functionality and Correctness •   (2) The file is opened correctly and opening exceptions are handled properly. •   (2) The file-read loop and end-of-file are handled correctly. •   (2) The program will work for a data file with more or fewer gems in it. •   (2) All gems appear in the output exactly once. •   (2) The calculated value of each gem is correct and the total values and final answer are correct. •   (2) The program runs to completion.  It does not go into an infinite loop or abort with an avoidable exception. •   (2) Output is provided. The code is provided. Both are in a zipped file sent by email. •   (2) The printGems() and evaluate functions output a list of gems with two neat columns. •   (2) Money amounts that look line money, with two decimal places. Decimal points should be lined up. Show more

The King is pleased with your loyalty and service. To reward you, he shows you a bag of gemstones (pearls and opals) and tells…

Uncategorized

Music has been used to imply emotions and suggest feelings for decades. Likewise, music is used to persuade audiences in various settings. Persuasion in music is a way of reinforcing images and inf Music has been used to imply emotions and suggest feelings for decades. Likewise, music is used to persuade audiences in various settings. Persuasion in music is a way of reinforcing images and influencing moods and behaviors. Marketing, advertising, several industries, and consumers benefit from persuasion music The Budweiser Lost Dog Super Bowl Commercial had several suggested emotions. Everyone could relate to this commercial. We have all had emotions related to a lost. We know how it feels to search for something or someone important to you. The love between “mans best friend” is undeniable. Having a missing pet can lead to feelings of desperation, sadness and despair. Music has an impact on the viewers emotional reactions and responses to advertisements. The background music in an advertisement must be attractive for influence. (Austin, Bigne, Marin, Guixeres, and Alcaniz 2021). This commercial spoke right to the viewers in a relatable way. The song lyrics were smooth, emotional, and calming. The melody went perfect with the situation. The emotions felt changed rather quickly. Human moods, energy levels, emotions, and feelings are altered and impacted by music. (Hansen and Melzner 2014). The music made my emotions shift especially when the dog was dirty, in a box, while in the rain. I was crying real tears by the time the dog was running home after being saved by the horses from a random wolf. The look on the mans face when he was reunited had my bottom lip trembling. This was a memorable and good commercial.  IN CLOSINGNow you might be wondering why Budweiser spent money on advertising to make us all cry like babies. They want to create the “best buds” emotion. They want you to think about drinking beer when you are happy, looking for lost loved ones, or reunited with missing or runaway pets. Since I do not drink, I got lost in the correlation of tears and beer. Should I feel Budweiser is the only beer needed when pets are missing? Should I keep Budweiser handy incase of a random stray wolf attack? Was the smell of Budweiser the reason the dog found his way home? Does Budweiser make horses protective? Was that the wolf from the “Twilight” series? This was a good commercial full of emotions. It had lost, drama, action, and a happy ending we all love. IN 6-7 LINES, RESPOND TO THIS DISCUSSION Show more

Music has been used to imply emotions and suggest feelings for decades. Likewise, music is used to persuade audiences in various settings. Persuasion in music is…

Limited Offer     Get 25% off your first order — use code STUDYLINK25 at checkout    Claim Now