Director of a luxury hotel company

Instructions
For this assignment, you will interview someone who works in the career field that you are most interested in(Director of a luxury hotel company) and write a report of your findings. The interview can be conducted by phone, email, correspondence, or in person.

How to Format Your Information Report:

Your report should be formatted like this:

Typed into a word processing program and printed out
3-4 pages long
Use 12-point Times New Roman font
1-inch margins on all sides
Double-space your text
What Your Report Should Contain:

Your report should include the following:

A title page that includes the business card information (or staple an actual business card to the title page) from the person you interviewed, class title and section number, date of your interview, and of course your name
A list of the questions and answers resulting from your interview (at least 10 questions and answers). The interviewee’s answers should be detailed. Present your report in a question-answer format. For example, present Question 1 and then the interviewee’s answer; then Question 2 along with the answer, and so forth.
A 1-page summary of information (do not go over 1 page) of the interview including the following:

a. Why you chose the interviewee?
b. What was the most positive aspect that you learned from the interview and why?
c. What was the most negative aspect that you learned from the interview and why?
d. Has your perspective changed about your career choice as a result of the interview and why?
e. What are your next steps after the interview?
a copy of the thank-you letter (or copy of a thank-you card) that you sent to your interviewee.
.

Watch the “The Self-Driving Car Capital Of The World” documentary and write and submit a review using this tab.

(1) The main thesis of the documentary; (2) Brief summary of the documentary; (3) Evaluation of the thesis (Do you agree with the thesis or not?); (4) Two or Three reasons why you agree or disagree with the documentarys thesis. Your reviews must have a college-level essay structure: Title, Introduction, Body, and Conclusion. Do not use any secondary source for this book review assignment.

View as Text / 1 HSC 110: Unit 2 Written Assignment (50 points)Name:Directions: After reviewing the unit chapters, complete the following questions. College-level writing is requiredSupported your opinion with current research (published article

  View as Text  / 1
HSC 110: Unit 2 Written Assignment (50 points)Name:Directions: After reviewing the unit chapters, complete the following questions. College-level writing is requiredSupported your opinion with current research (published articles; webpage links are notpermitted).Cite researched content for each question (APA format)Minimum word count for entire document is 250 words.1.Carbohydrate and amino acid balance (Chapter 2) – A person you know is following a diet composed primarily of carbohydrates. Explain in detail:a.The dietary importance of amino acids and proteins2.Nutrition and Fatigue Prevention (Chapter 4) – After finishing a grueling marathon, a runner exclaims, Whew, I think Ive used up all my ATP! Explain in detail:a.Is this possible?b.Why?

C or C++ Dictionary Trie

Write this program is C. Please comment code. And please show the results as well. As well as the execution on the command line.

You are given Shakespeare RomeoandJuliet.txt file which contains the whole book. (A large file). (Please use own files to test out code).
You are also given another text file called correctspelling.txt that contains correct spelling of words in the RomeandJuliet.txt. The correctspelling.txt file does not contain every word in RomeoandJuliet.txt. Each word of correctspelling.txt it on its own line. This file is in alphabetical order (but being in alphabetical order is not relevant). This is also a large .txt file.
You are basically looking for the misspelled words in Romeo and Juliet. If a word is not spelled like it is in correctspelling.txt then is in incorrect.
Take into account the 26 letters and apostrophe ( ). It is also case insensitive.
You will need to insert the words in correctspelling.txt into a dictionary tree. This tree should allow a caller to insert words to a tree to build a dictionary and search the tree to find if a given word matches (case insensitive search) any stored word in the tree.
Basically put correctspelling.txt in a dictionary tree.
Next test your dictionary tree implementation by building a dictionary tree from a source dictionary text file and then use the dictionary tree to perform spell checks on all words read from another text file and print out all misspelled words there.
Basically, in this code you will use check to see if the words in RomeandJuliet.txt is spelled the same as in correctspelling.txt. If a word in RomeandJuliet.txt is not in correctspelling.txt then it is considered misspelled.
Print the misspelled words to standard out. You can capture standard out to a file using the > and a filename. Please show how to do this in command line. The misspelled words should be EXACTLY how they were in the Romeo and Juliet book.
To sum up, insert the words in correctspelling.txt into a tree. So, if a word in the RomeoandJuliet.txt file is not spelled the way it is in correctspelling.txt then it is incorrect. Also, if there is a word in RomeoandJuliet.txt and not in correctspelling.txt then that word that is incorrect as well. The incorrect words should be printed to a standard out. The misspelled words should be in the order of how they appeared in RomeoandJuliet.txt.
I will give a small example below.
RomeoandJuliet.txt first line is- Enter Sampson and Gregory, with swords and bucklers, of the house of Capulet.
Example of first few words in correctspelling.txt
correctspelling.txt (each word on its own line)           and
                                                                                      bucklers
                                                                                      Enter
                                                                                      Gregory
                                                                                      of
                                                                                      the                                                                                                                 
                                                                                                                                                                                                                         
The misspelled words in RomeoandJuliet.txt is below and that is what should appear in the standard out. Each misspelled word on it own line.
Sampson
and
with
swords
house
Capulet
The misspelled words are exactly in the order of how they appeared in RomeoandJuliet.txt.