erlang program

 

Write an Erlang program that counts the word frequencies in the file assign3-part2.txt. Erlang uses a list of tuples as a hash table. Write four Erlang functions.

  1. This function has a string file name parameter and returns a list of words in the file. Open the file with file:open. The file lab3-part2.txt was written in a text editor as one line, so io:get_line will read the whole file. string:tokens will separate it into words. Its second argument specifies all the delimiters.
    • file:open(lab3-part2.txt”,read).
    • L1= io:get_line(S, '').
  2. This function has two parameters, a string word and a list of tuples, and returns a list of tuples with the word added appropriately. Each tuple is a word key and a frequency value. The lists:keyfind method will find a tuple if it exists and return false if it does not. If the word is not found use lists:append to add a tuple with the word as key and 1 as the frequency. If the word is found use lists:replace to replace the tuple with a new tuple with frequency increased by one.
  3. This function has a list of words as parameter and returns a hash table of tuples of words and their frequencies. The string:to_lower method will make a word lower case to provided the desired case insensitivity. Use the lists:foldl method to build the answer using the function 2.
  4. This function outputs the final hash table sorted by frequency from high to low using the lists:sort function. Its one parameter is the file name. It uses functions 3 and 1.

week-15 discussion

 

Do you feel the benefits of cloud computing are worth the threats and vulnerabilities? Have we arrived at a point where we can trust external agencies to secure  our most precious data? Please explain your answer.

CYB/ 130

It’s important to program your code efficiently. Efficient code manages errors and exceptions and cleans up memory after it ends. The try-except statements are helpful in handling errors that are detected during execution.

Respond to the following in a minimum of 175 words:

  • What are the 2 categories of errors when debugging code? How can the try-except statements handle errors in Python? Provide a code example that supports your comments.

Assignment

Develop a disaster recovery plan for an organization. There are many different templates available online for you to use as reference and guidance. Your plan should cover the following sections (these sections detail the elements in a DR plan in the sequence defined by industry compliance standards ISO 27031 and ISO 24762).This section should summarize key action steps (such as where to assemble employees if forced to evacuate the building) and list key contacts with contact information for ease of authorizing and launching the plan.

  •     Introduction
  •     Roles and Responsibilities
  •     Incident Response
  •     Plan Activation
  •     Document History
  •     Procedures

Your paper should meet the following requirements:

  • Be approximately six to eight pages in length, not including the required cover page and reference page.
  • Follow APA 7 guidelines. Your paper should include an introduction, a body with fully developed content, and a conclusion.
  • Support your answers with the readings from the course and at least ten scholarly journal articles to support your positions, claims, and observations, in addition to your textbook. The UC Library is a great place to find resources.
  • Be clearly and well-written, concise, and logical, using excellent grammar and style techniques. You are being graded in part on the quality of your writing

HW

 

Write a work in APA Style that discusses each of the AACN Essentials and describe how you met each essential. Incorporate evidence from your previous Nursing Evolution assignments, as well as detailed examples from your didactic, skills lab, and clinical rotations.

For each essential include the following:

  • A brief summary explanation of the essential that is cited with at least one scholarly source
  • At least one example of how you met the essential during your nursing program

Help in my internship report

I need help in writing my internship report about IT business application solution role as IT BRM job 

This should include:
Daily tasks and projects 
Technology used
Details of dairy report and meeting 
Challenge s and issues 
New lesson learned scenarios 
All above should sound as internship report 
Note: the report must be not less than 20 pages

IT214 final project

IT214: Computer Science and Engineering

TERM PROJECT

ASSIGNMENT:

Write a Python 3 program to simulate a checkout (register) at a supermarket or clothing store. Here are the requirements: the program must…

o    be able to store 15 items

o    store the price for all items

o    store a description for each item (One word description) 

o    calculate Maryland sales taxes if required – 6%

o    calculate Virginia sales tax if required – 4.3% base

o    provide a total of the purchase

o    maximum 5 items per purchase (for this project)

o    display on screen the receipt

o    Terminate the program on request.

Write a document explaining your project – include source code. Turn in (upload) your document to the assignment in Canvas. Demonstrate the ‘checkout’ in class. 

INSTRUCTIONS:

1.   Follow the APA Publications Manual sixth Ed. Projects/Papers are to be typed (use a word processor, Times New Roman with font size 12).  

2.   Limit your project/paper to fifteen pages, double-spaced on standard-sized paper (8.5″ x 11″) with 1″ margins on all sides, exclusive of title page, bibliography.

3.   Write clearly. Check your grammar and spelling.

4.   Write in your own words. The class is conducted in English; your paper must be in English. Start early.

5.   Upload your paper to the FINAL PAPER assignment in Canvas by 6:00pm on the last day of class. 

6.   DO NOT SEND YOUR PROJECT/PAPER VIA E-MAIL. 

Engaging in a Team Setting

Being able to work in and manage teams is an important aspect of working in organizations. Training and education sessions require coordination among several individuals and departments. You must be honest in your interactions by providing accurate information and showing respect to those both in your team and in other departments. As the team leader, it is up to you to model ideal team behavior. Please do some research on team best practices and address the following:

  • Identify at least 4 best practices that might be included in a team code of conduct. Write a brief paragraph summarizing each best practice.
  • Describe at least 2 ways you and your team can demonstrate honesty and respect to your co-workers in other departments as you coordinate and deliver the training sessions.
  • Discuss at least 1 way to acknowledge the contributions of your team members at the conclusion of the training.
  • Discuss at least 1 aspect of ensuring mutual support among team members during the installation.