Journal Article: Collaboration.

Journal Article: COLLABORATION

Your submission must include the following information in the following format: 

DEFINITION: a brief definition of the key term – (the definition should come from the article) 

SUMMARY: Summarize the article in your own words- this should be in the 200-word range. Be sure to note the article’s author, note their credentials and why we should put any weight behind his/her opinions, research, or findings regarding the key term. 

REFERENCE: The source for the analysis must be listed at the bottom of the submission – APA format required. Use only peer-reviewed journal articles for these assignments. Refrain from using blogs, .com’s, or other unreliable internet sources. Be sure to use the headers (Definition, Summary, Discussion, Reference) in your submission to ensure that all aspects of the assignment are completed as required. Any form of plagiarism, including cutting and pasting, will result in zero points for the entire assignment. Further, any flagged documents will result in zero points for the assignment. Flagged documents mean that an attempt at plagiarism exists, or manipulation of the Turnitin process has been attempted. This is unacceptable conduct and will not be tolerated.

programming exercise 3

refer to the attached documents in the uploads for details and guidelines.

First attachment is the actual exercise and second one is the modified one. So work and program as per second one and also follow the guidelines as mentioned in first one  as well. Please read and follow both the attachments carefully.

Bullying

Human service professionals are expected by the NOHS Ethical Standards to advocate for social justice. In this project, you will be researching contemporary social justice issues and choosing one as a focus on your project. After describing the issue and its impact on the affected population, you will create a plan of advocacy to eradicate the issue.

create an array list using the knowledge you have of how to build a doubly linked list(Array list is DDL based). Use provided files in addition to your files from previous work.

*UPDATE ASSIGNMENT ; Posted yesterday, but assignment due date is extended* 

*DUE DATE: APRIL 13th, 2021 @ 10:00PM EST**

      Your arraylist should be named AList.java      

      The arraylist will be tested with an object called Person (see attached) and integers.       

      The txt files show expected output with unaltered list testers.      

database

Following Week 3 Assignment you’ve created an ERD for the given problem statement, the next step is to create the database ( Data Insertion and Table creation) based on your ERD.

This is the second pass – it doesn’t have to be perfect.  The goal here is to think like an analyst or consultant – you must ensure that you understand the underlying business logic that drives the intended/expected functionality.  

Note: You are to design the database and write the SQL statements (code only). You are not to try to execute the statements .

Cloud-based Home Security System

Need to design a  Cloud-based Home Security System which should satisfy the below conditions

1. Must use AWS IoT core

2. Must support at least 1 or preferably 2 home security devices

3. Must use MQTT or other standard protocols to communicate with the cloud IoT core.

4. Must support multiple homes and require authentication.

5. The User can access the system using a website or app. The user can enter phone number to call or text in case of an intrusion.

6. The user chooses system’s action upon detecting a possible intrusion. 

7. Must work with real hardware devices (for example, camera or door sensor).

Virtual Business in Global Marketing

  1. Locate two sources concerning geopolitical risks in global supply chains to provide you with background information to answer the key questions below. Cite sources as applicable.
  2. Write an initial response to the following key question(s) or prompt(s):
    1. What are two to three main geopolitical risks of global supply chains?
    2. What are potential mitigations for the identified geopolitical risks?
  3. Balance is a condition in which different elements are equal or in the correct proportions. The key to achieving a culture of balance at work is first recognizing that balance is different for each and every employee and that it’s always changing.

Need at least 4 references and at least 500 words

Network Lab 1…..

 Please download the attached lab instructions and complete all the tasks. You will need to download Packet Tracer in order to complete these tasks. You need to turn in both Packet Tracer and the completed document. You will loose points if both attachments are not submitted. 

PYTHON PROGRAM RELATED TO INFORMATION RETRIEVAL AND WEB SEARCH

 

 

Problem 1  Automatically collect from memphis.edu 10,000 
unique documents. The documents should be proper after converting them to txt
(>50 valid tokens after saved as text); only collect .html, .txt, and and .pdf
web files and then convert them to text - make sure you do not keep any of
the presentation tags such as html tags. You may use third party tools to
convert the original files to text. Your output should be a set of 10,000 text
files (not html, txt, or pdf docs) of at least 50 textual tokens each. You must
write your own code to collect the documents - DO NOT use an existing or third party crawlercrawler.

Store for each proper file the original URL as you will need it later
when displaying the results to the user.

Problem 2  Preprocess all the files using assignment #4( "python program that preprocesses a 
collection of documents using the recommendations given in the
Text Operations lecture. The input to the program will be a directory
containing a list of (10000 unique documents)text files collected in above program.  documents must be converted to text before using them.

Remove the following during the preprocessing:
- digits
- punctuation
- stop words (use the generic list available at ...ir-websearch/papers/english.stopwords.txt)
- urls and other html-like strings
- uppercases
- morphological variations).)" This directory should have index terms( inverted
index of a set of already preprocessed files.Use raw term frequency (tf) in the document without normalizing it. Think about saving the generated index, including the document frequency (df), in a file so that you can retrieve it later) .Save all preprocessed documents in a single directory .