one page of answers

 

  1. Problem statement: what kind of problem is presented by the authors and why this problem is important?
  2. Approach & Design: briefly describe the approach designed by the authors
  3. Strengths and Weaknesses: list the strengths and weaknesses, in your opinion
  4. Evaluation: how did the authors evaluate the performance of the proposed scheme? What kind of workload was designed and used?
  5. Conclusion: by your own judgement.

Data Redundancy and Normalization

Please see below and answer with a minimum of 150 words and use references. 

 Discuss the relationship between data redundancy and normalization. What are the consequences if databases are not normalized? What problems is normalization addressing? Why is normalization crucial for effective database design and development?  

Preview the document

Research Essay

Essay 3 – Research Essay Assignment – Conspiracy Theories! Typed Draft Due Friday, March 26 at 11:00 am

  • Due Friday by 11am
  • Points 100
  • Submitting a file upload (Turnitin enabled)

Essay 3 Conspiracy Theories 1111.pdfPreview the document 

Research Essay Assignment – Conspiracy Theories!

For this assignment, you will research a popular conspiracy theory. These theories have not been proven due to their lack of concrete evidence, which is why they are still considered a theory. Your task is to select a popular conspiracy theory, provide background information on the theory, research the reasons behind the theory and then provide either the flaw(s) or the reason(s) why they are true!

To put it simply, a conspiracy theory is an alternative explanation to an event. In order for a conspiracy theory to first begin, there has to be some lack of evidence or something that may not make sense. Unfortunately, what makes it a conspiracy and not reality is the lack of hard evidence. This is why it’s difficult to prove a conspiracy theory.

These are important questions when looking at any conspiracy theory:

  • Does it make sense and/or is it reasonable?
  • Is there enough evidence to support the theory?
  • Does the conspiracy theory actually explain what happened?

Process:

  • Select your conspiracy theory.
  • Begin researching the theory.
  • EITHER Find reasons/sources to support the theory OR find three reasons/sources to discount the theory.
  • Begin the rough draft of your essay.

Expectations:

  • Your essay should be a minimum of three (3) pages and a maximum of five (5).
  • Your essay should have an introduction, at least three body paragraphs and a conclusion.
  • Your introduction must have a thesis statement that indicates a clear, reason(s) for your theory.
  • Double-space your essay
  • Type out your essay
  • Write in third person
  • Include a captivating title
  • Indent each paragraph
  • Keep paragraphs balanced (include the approximate number of sentences in each)
  • ALL sources needed to be cited accordingly to MLA or APA style

CHECK OUT THESE YOUTUBE VIDEOS TO HELP YOU GET STARTED

Why We Love Conspiracy Theories (And Why They Are So Popular Today)

https://www.youtube.com/watch?v=C0ojY3c8KWY (Links to an external site.)

25 Conspiracy Theories That Actually Ended Up Being True

https://www.youtube.com/watch?v=i3ZzokgIcgQ (Links to an external site.)

HERE ARE SOME POSSIBLE TOPIC IDEAS

9/11

The earth is flat

The moon doesn’t exist

Electronic banking is being used by the government to steal people’s identities

The AIDS virus is an artificial disease

The FDA is withholding a cure for cancer or AIDS

Michael Jackson is still alive

Vaccinations cause Autism

Global Warming has been invented and is not real

Illuminati

To successfully complete this assignment, your essay must include at least five outside sources of research information pertaining to your specific conspiracy theory. You must cite or quote from three of these sources.

These may include book chapters, articles taken from books, magazine articles, journal articles, newspaper articles, reviews, or internet website information.

Your essay must contain the following elements:

A clear thesis statement located in your introduction and supported throughout the paper.

Correct MLA or APA citations for all quotations, paraphrases, or summaries.

Pitfalls:

Using another person’s work without giving them credit.

Presenting a list of facts rather than organizing your material into a single, coherent essay.

Format:

Your paper, appropriately titled, should be between three and four typed pages, double-spaced, in a 12-point font. Include the word count at the top of the page.

Please put your name, the title of the course and index number, and the date on the top left-hand corner of the first page. Your title should be centered on the first page below your name, and you should begin your text one line below your title. 

C-2 Final paper 43p

  • 40 to 60 pages of scholarly APA literature.
  • 50 to 75 scholarly references with 85% being recent, i.e., within the last 3 years.
  • A cited problem/gap.
  • A cited reason for the problem gap.

Safe Harbor positions under HIPAA

Write an essay of at least 500 words discussing the Safe Harbor provisions under HIPAA.

Write in essay format not in outline, bulleted, numbered or other list format.  

Use the five paragraph format. Each paragraph must have at least five sentences. Include 3 quotes with quotation marks and cited in-line and in a list of references. Include an interesting meaninful title.

IT492 week 2 assignment

Assignment: 

Describe how organizational culture is related to project management. What type of culture promotes a strong project environment? Please give a specific example.

_____________________________________________

You are required to respond to the assignment question posted above with no less than 200 words.To support your response you are required to provide at least one supporting reference with proper citation. Your response will be reviewed by Unicheck, the plagiarism tool synced to Canvas.

business intelligence practical connection assignment

 

  1. This week select an organization that has a Global platform (they operate in more than one country), that has demonstrated operational excellence.  In this paper, perform the following activities:
    • Name the organization and briefly describe what good or service they sell and where they operate.
    • Note how they are a differentiator in the market.
    • Note the resources used to ensure success in their industry (remember resources are comprised of more than just people).
    • Explain what actions the company took to achieve operational excellence.
    • The above submission should be three pages in length.  Remember the total length does not include the APA approved cover page or the references.  There should be at least three APA approved references to support your work.

Review on Energy Resilience

I need a Review for the above topic. 

Basically State of art in energy infrastructure resilience and remaining sections which present in the attached document.

I have all the docs from which these can be picked and also an outline document and subtopics which need to be touched upon.

Attaching the docs from which state of the art to be picked, also another word document mentioning the outline(Literature Review-outline)

Literature Review-outline to kept as base file and to be worked on.

Thanks and Regards

Assignment Data Preprocessing – UFO Sighting Data Exploration

 I had attached the ufo_sightings_large.csv

  • In this assignment, you will investigate UFO data over the last century to gain some insight.
  • Please use all the techniques we have learned in the class to preprocesss/clean the datasetufo_sightings_large.csv
    .
  • After the dataset is preprocessed, please split the dataset into training sets and test sets
  • Fit KNN to the training sets.
  • Print the score of KNN on the test sets

 

1. Import dataset “ufo_sightings_large.csv” in pandas (5 points)

 

2. Checking column types & Converting Column types (10 points)

Take a look at the UFO dataset’s column types using the dtypes attribute. Please convert the column types to the proper types. For example, the date column, which can be transformed into the datetime type. That will make our feature engineering efforts easier later on.

 

3. Dropping missing data (10 points)

Let’s remove some of the rows where certain columns have missing values.

 

4. Extracting numbers from strings (10 points)

The length_of_time column in the UFO dataset is a text field that has the number of minutes within the string. Here, you’ll extract that number from that text field using regular expressions.

In [ ]:

​ 

5. Identifying features for standardization (10 points)

In this section, you’ll investigate the variance of columns in the UFO dataset to determine which features should be standardized. You can log normlize the high variance column.

 

6. Encoding categorical variables (20 points)

There are couple of columns in the UFO dataset that need to be encoded before they can be modeled through scikit-learn. You’ll do that transformation here, using both binary and one-hot encoding methods.

 

7. Text vectorization (10 points)

Let’s transform the desc column in the UFO dataset into tf/idf vectors, since there’s likely something we can learn from this field.

 

8. Selecting the ideal dataset (10 points)

Let’s get rid of some of the unnecessary features.

 

9. Split the X and y using train_test_split, setting stratify = y (5 points)

In [9]:

X = ufo.drop(["type"],axis = 1)
y = ufo["type"].astype(str)

 

10. Fit knn to the training sets and print the score of knn on the test sets (5 points)

In [1]:

from sklearn.neighbors import KNeighborsClassifier
knn = KNeighborsClassifier(n_neighbors=5)
# Fit knn to the training sets
knn.fit(train_X, train_y)
# Print the score of knn on the test sets
print(knn.score(test_X, test_y))

Assignment

I have attached file for the assignment instruction including the rubrics that need to follow throughly. 

Technology selected is artificial intelligence / machine learning