Entries by Student

write my assignment 25277

I’m trying to call a method from a different class and am getting errors on both classes.

Here is the complete source code I’m using in both classes:

package computer;

public class Computer {

  private int HDD;

  private String Brand;

  public Computer(){}

  public Computer(int HDD, String Brand) {

    this.HDD = HDD;

    this.Brand = Brand;

  }

  public int GetHDD() {

    return HDD;

  }

  public void setHDD(int HDD) {

    this.HDD = HDD;

  }

  public String GetBrand() {

    return Brand;

  }

  public void SetBrand(String Brand) {

    this.Brand = Brand;

  }

  public String toString() {

    return “Computer(” + HDD + “GB, ” + Brand + “)”;

  }

}

And

package addcomputer;

/**

 *

 * @author Pokemon

 */

import java.util.Scanner;

/**

 *

 * @author Pokemon

 */

public class AddComputer {

  public static void main(String[] args){

    Scanner in = new Scanner(System.in);

    System.out.print(“Enter the HDD size in your current computer”);

    int HDD = Integer.parseInt(in.nextLine());

    System.out.print(“Enter the Brand name of your Computer”);

    String Brand = in.nextLine();

    Computer myComputer = new Computer(HDD, Brand);

    System.out.println(“Your current system”);

    System.out.println(myComputer);

    System.out.print(“Enter your desired HDD size”);

    HDD = Integer.parseInt(in.nextLine());

    System.out.print(“Enter the brand name you desire for your next computer”);

    Brand = in.nextLine();

    Computer nextComputer = new Computer(HDD, Brand);

    System.out.println(“The computer you next plan to buy”);

    System.out.println(nextComputer);

    in.close();

    }

I have tried importing the package from the first class on the second class, and the second class doesn’t recognize it as existing. Also, the first class keeps saying I need to declare a main method, but when I try it throws errors on the rest of the code.

 

"Not answered?"


Get the Answer

write my assignment 394

 Please read the attached case carefully and prepare a short case write-up answering the questions provided below without any introduction that take space in the paper and doesn’t help with the answer Each question should be labeled and answered individually.  

1. What is your assessment of the Chase Sapphire Reserve card? Is this a good product for JPMorgan Chase (JPMC)? For the Sapphire brand? Why or why not? 2. Why has Chase Sapphire been so successful in acquiring customers? Will this success continue over time? Why or why not? What changes would you make to their customer acquisition strategy going forward?  

 

"Not answered?"


Get the Answer

write my assignment 7552

For this Discussion, you will consider the role of theory in research and the relationship between theory and philosophical orientations. You will also familiarize yourself with a theory in your field so that you may become more conversant in your discipline’s theoretical foundations.

With these thoughts in mind:

By Day 4

Post an explanation of the role of theory in research. Next, identify a theory in your discipline and explain its basic tenets. Then, with this theory in mind, consider your answer to the following question posed by Dr. Burkholder in last week’s reading: “What do I have to believe about the world and about human beings in order for me to accept or use this theory?” Finally, describe the extent to which the epistemological and ontological assumptions of your chosen theory align with the philosophical orientation that reflects your worldview.

 

"Not answered?"


Get the Answer

write my assignment 22824

Complete 6 pages APA formatted article: Americanisation of Media Campaigns by British Political Parties. Today political parties do not believe in such activities as neighborhood canvassing and rallies that brought them in direct contact with the electorate but devote more attention to campaigning through the media. Television has become the most important source of political information and also the most important battleground. In Britain’s increased use of television, reliance on modern communication methods, like public relations consultants, advertising agencies, pollsters for election campaigns have led to the Americanisation of media campaigns. The techniques used for campaigning are almost similar to consumer product marketing techniques.

The American form of media-centered, personalized election campaigning is becoming common all over the world including Britain. Britain even though it is a European country its party system and culture has more in common with the United States than other European countries. The 1997 election campaign and strategy reflect American influence and it is apparent that many strategies and tactics were taken from the 1992 Clinton campaign. In Britain, newspapers still influence and shape the daily political agenda, but it is the television and the radio, which is most likely to influence the electorate to choose their political leaders and parties. In recent times websites too have started to have an impact. In the last general elections in May 2005 the Internet was one of the main sources of information for the younger generation. The use of weblogs where voters can participate and express themselves, again a phenomenon borrowed from America, is being used more and more. In Britain what we see today is Political Marketing again a practice prevalent in America. Political Marketing is the use of focus groups and polls to study the mood of the electorate and also to study the impact of political communication.

In Britain the press is free and there are important safeguards for broadcasters.

 

"Not answered?"


Get the Answer