IT476 week 6

Discussion Questions:

1- Describe first normal form (1NF), second normal form (2NF), and third normal form (3NF) in Database Normalization process.

2- What three data anomalies are likely to be the result of data redundancy? How can such anomalies be eliminated? Explain.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

SE217 week 6

Question 1

In your own words, describe a procedure used in programming. Why is it important to use procedures?

question 2

Submit a program that calculates the Weekly Pay of an employee using procedure in Visual Logic.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

IT217 week 6 discussion

1. Change the example on pages 194-195 of the do…while loop into a while…wend loop. 

What is the difference between a do,,,while loop and while…wend loop? 

2. Change the while…wend loop example of page 200 into a for…next loop

What is the difference between a while…wend loop and for…next loop? 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Security Architecure & Design agile design implementations

Part 1: 600 words
As you consider the reputation service and the needs of customers or individual consumers, as well as, perhaps, large organizations that are security conscious like our fictitious enterprise, Digital Diskus, what will be the expectations and requirements of the customers? Will consumers’ needs be different from those of enterprises? Who owns the data that is being served from the reputation service? In addition, what kinds of protections might a customer expect from other customers when accessing reputations?

 Part2: 600 words

In today’s fast-paced, often “agile” software development, how can the secure design be implemented?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Ethical

Joe’s actions are ethical?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Final project draft

 

The Final Project requires the student to find a current case of an organization/brand/company who is either (a) engaging in a positive social responsibility campaign or (b) acting in a manner that is ethically questionable. The paper should include the following:

  1. Introduce the organization
  2. Outline the the issues involved in the case
  3. Document the Strategic Communication Tactics used in the case.
  4. Offer perspective on the behaviors in the case and its effect on stakeholders and society in general.
  5. Provide a conclusion

 

To find a case to write about, students should explore current news media, trade press and/or company websites.

For this initial draft, complete an annotated outline. An annotated outline usually has comments, explanations and references to the material you will write. You are telling us what you are going to tell us. An example of an annotated out is Sample #2 located here. Write your annotated outline like this sample.

Assignment Format: MS Word Document; APA format

Length: 4  pages

Citations Required: Minimum 3 Scholarly Reference

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

5/2 Discussion Read

  1. Read Chapters 9 and 10, and review Chapter 6 in your textbook.
  2. Using the discussion link below, respond to the following questions:
    1. What was the most useful takeaway for you from this workshop’s reading?
    2. What concept from the reading is the most applicable to you now in your profession, and how might you implement it?
  3. 300 word

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

5/3 discussion BI

  1. Read Chapters 9 and 10 in your textbook : Principles of Information Systems
  2. Using the discussion link below, respond to the following prompts and questions:
    1. Describe the use of business intelligence (BI) in a real-world situation that you have experienced, or research BI used within a Fortune 1000 organization. What tools are used for reporting and decision making? Why would managers and senior leadership want to have BI delivered as a set of dashboards?
    2. How should BI be used to make decisions in an organization?
    3. Conduct research using the internet, and discuss trends in artificial intelligence (AI) and robotics.
  3. Your initial post should be at least 300 words and supported with credible outside references.

4. Review the posts attached and reply in 150 words individually. 

5. Include citations to at least one credible information source in your replies.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

5/4 Presentation

  1. Prepare a PowerPoint sales presentation that addresses the following:
    1. Give five main reasons for implementing business analytics in a client’s business operations.
    2. Select three departments in the organization that would benefit from BI, and describe what those benefits would be.
    3. Summarize how artificial intelligence could be used to enhance decision-making in the organization.
  2. You may use your own workplace, an organization researched on the internet, or the organization you have chosen for your final project.
  3. The PowerPoint presentation should be a minimum of 12 slides.
  4. Be sure to use good presentation skills, and check your grammar. The first slide should provide an introduction, and the last slide should list any references used in the presentation using APA formatting.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

It217 week 6 Assignment

 

1. Modify the conversion2loop.as program to allow the user to enter up to 10 grades for Assignment, up to 10 grades for Discussion, up to 10 grades for Attendance, and 2 grades for Tests. 

2. Calculate the average grade for each group in question 1. 

3. Calculate the total average grade for the course in letter grade and numerical grade assuming that Assignment is 30%, Discussion 30%, Attendance 15%, Tests 25%.

Submit the “.bas” program and the screenshots of the program and the outputs.

HERE IS THE CODE BELOW

‘Convert grades to letter

average = 0

count = 0

do

input “enter grade: “; grade

select case

case grade >= 90

result$ = “A”

case grade>=80

result$ = “B”

case grade >= 70

result$ = “C”

case grade >= 60

result$ = “D”

case grade <60

result$ = “F”

end select

print result$

 confirm “Again”; answer$

 if answer$ = “yes”  then

 count = count +1

 total = (total + grade)

 average = total/count

end if

 loop while answer$ = “yes”

count = count +1

  total = (total + grade)

 average = total/count

 print count; ” grades entered.”

 print “Average is: “;average

grade = average

select case

case grade >= 90

result$ = “A”

case grade>=80

result$ = “B”

case grade >= 70

result$ = “C”

case grade >= 60

result$ = “D”

case grade <60

result$ = “F”

end select

print result$

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now