H6

  Download and read the document and answer all questions in the document. Please see attached document H6 & APA Criteria doc.    

Computer Architecture Report (7 pages research paper)

Write a research paper on ‘RISC-V’ microprocessor in a simplified ACM format using the guidelines provided in the attached documents. There are 3 attached files in this assignment. Make use of the project abstract and include it in the paper, follow the ACM template for writing the research paper, and other requirements mentioned in the file ‘Computer_Architecture_Report’. Plagiarism is NOT ACCEPTABLE for this task and turnitin report will be checked. Feel free to ask any questions regarding the project.

what have researchers learned about the impact of misinformation about COVID 19 on social media

Topic 1 : What have researchers learned about the impact of Misinformation about covid 19 on social media 

Topic 2: What have researchers learned about poverty in the Pakistan

Objective summary and compare & contrast assignments

choose 4 research articles for this topic 

In Class: You learned about the W(5) H(1) and completed Phase 2 on p. 13a of your Final ‘Mission’ Packet (Found in W. 4’s HW). This will be IMPORTANT for Week 6 so you MUST complete this before our next meeting. These notes will also help you with this assignment. See below

For this assignment:  You will choose ANY ONE of the research articles you submitted for W. 4’s HW and complete the following in a WORD document. 

Requirements: 

  • 15 pts, Cover/Title Page 
  • 70 pts, Objective Summary: W(5) H(1) — YOU MUST PUT THIS IN YOUR OWN WORDS (Check your similarity BEFORE you submit) 
  • 15 pts, References Page (you will only have one reference listed — the research article you are using. Use the CORRECT references formula in the Foundations text to help you – found in Course Resources folder) 

Resources to help you:

In Foundations Text:

  • See pp. 17-22 to read about objective summaries
  • See pp. 23-28 to read more about avoiding plagiarism
  • See pp. 33-34 for Journal references formula 

Discussion

 Discuss an organization’s need for physical security. What methods, approaches, and models can be used by organizations when designing physical security needs? Lastly, explain how these security measures will safeguard the organization.Please make your initial post and two response posts substantive. A substantive post will do at least two of the following:

  • Ask an interesting, thoughtful question pertaining to the topic
  • Answer a question (in detail) posted by another student or the instructor
  • Provide extensive additional information on the topic
  • Explain, define, or analyze the topic in detail
  • Share an applicable personal experience
  • Provide an outside source (for example, an article from the UC Library) that applies to the topic, along with additional information about the topic or the source (please cite properly in APA)
  • Make an argument concerning the topic

applications of networking techonolgies

 You must obtain prior approval for your topic from the professor via a 1-paragraph
proposal submitted on the CS553 Project Request Form prior to the second week of
class. Do not begin the project until you have obtained approval from the professor.

The topic should illustrate specific applications of Networking Technology principles. If
applicable, data and software for these projects can be obtained from various Internet
sites, or developed by students.   

 You may also use your own creativity to pick an interesting topic, but your instructor
must approve it.

Your assignment is to write a research paper and presentation. The paper must be at
least 20 typed pages plus a bibliography in APA format.  
 

Knowledge systems

Please read Chapter 12: Knowledge Systems: Expert Systems, Recommenders, Chatbots, Virtual Personal Assistants from the attached book and answer the following questions. 

1. Some people say that chatbots are inferior for chatting. Others disagree. Discuss. 

2. Discuss the financial benefits of chatbots.

3. Discuss how IBM Watson will reach 1 billion people by 2018 and what the implications of that are.
 

4.  Compare the chatbots of Facebook and WeChat. Which has more functionalities?

5.  Research the role of chatbots in helping patients with dementia. 

6.  Microsoft partners with the government of Singapore to develop chatbots for e-services. Find out how this is done. 

Answer these questions in APA 7th edition format and include atleast 4 references, including 2 scholarly references. All answers should be completed in total 5 to 6 pages. STRICTLY NO PLAGIARISM

Complete a read me of what each class does in this assignment. (DUE SEPT 12TH 2022!!!!) TODAY

 

import java.util.ArrayList;

public class Checkout{

private ArrayList checkoutList;

Checkout(){

checkoutList= new ArrayList();

}

public int numberOfItems(){

return checkoutList.size();

}

public int totalCost(){

int sum=0;

for (Item i : checkoutList){

sum+=i.getCost();

}

return sum;

}

public int totalTax(){

return (int) java.lang.Math.round(GroceryStore.TAX_RATE*totalCost()/100.0);

}

public void clear(){

checkoutList.clear();

}

public void enterItem(Item i){

checkoutList.add(i);

}

public String toString(){

;

System.out.println(“t”+GroceryStore.STORE_NAME);

System.out.println(“nt——————-“);

for (Item i : checkoutList){

System.out.println(i.toString());

}

System.out.println(“nTax “+GroceryStore.cents2dollarsAndCents(totalTax()));

System.out.println(“nTotal Cost “+GroceryStore.cents2dollarsAndCents(totalCost()+totalTax()));

return “”;

}

}

// Test Check out

 

public class TestCheckout {

public static void main(String[] args) {

 Checkout checkout = new Checkout();

 checkout.enterItem(new Rice(“Basmati Rice”, 2.25, 399));

 checkout.enterItem(new Baguette(“Wheat Baguette”, 105));

 checkout.enterItem(new FlavoredBaguette(“White Baguette”, 145, “Chocolate”, 50));

 checkout.enterItem(new Egg(“Grade A Organic Eggs”, 4, 399));

 System.out.println(“nNumber of items: ” + checkout.numberOfItems() + “n”);

 System.out.println(“nTotal cost: ” + checkout.totalCost() + “n”);

 System.out.println(“nTotal tax: ” + checkout.totalTax() + “n”);

 System.out.println(“nCost + Tax: ” + (checkout.totalCost() + checkout.totalTax()) + “n”);

 System.out.println(checkout);

 checkout.clear();

 checkout.enterItem(new Baguette(“Organic Baguette”, 145));

 checkout.enterItem(new FlavoredBaguette(“Wheat Baguette”, 105, “Caramel”, 50));

 checkout.enterItem(new Rice(“Indian Brown Rice”, 1.33, 89));

 checkout.enterItem(new Egg(“Grade B Egg”, 4, 399));

 checkout.enterItem(new Rice(“Arabic White Rice”, 1.5, 209));

 checkout.enterItem(new Rice(“Spanish Yellow Rice”, 3.0, 109));

 System.out.println(“nNumber of items: ” + checkout.numberOfItems() + “n”);

 System.out.println(“nTotal cost: ” + checkout.totalCost() + “n”);

 System.out.println(“nTotal tax: ” + checkout.totalTax() + “n”);

 System.out.println(“nCost + Tax: ” + (checkout.totalCost() + checkout.totalTax()) + “n”);

 System.out.println(checkout);

}

//Baguette 

public class Baguette extends Item {

private double cost;

public Baguette(String name, double cost) {

super(name);

this.cost = cost;

}

@Override

public int getCost()

{

return (int)Math.ceil(cost);

}

@Override

public String toString() {

return name+” @” + GroceryStore.cents2dollarsAndCents(getCost());

}

}

 

public class Rice extends Item {

double weight;

double price;

public Rice(String name, double weight, double price) {

 super(name);

 this.weight = weight;

 this.price = price;

}

@Override

public int getCost() {

 return (int) Math.ceil(weight * price);

}

@Override

public String toString() {

 return “rice” + weight + “lbs @” + GroceryStore.cents2dollarsAndCents(getCost());

}

}