Answer:
public class Car {
//Member variables
private int yearModel;
private String make;
private int speed;
//Constructor
public Car(int yearModel, String make, int speed) {
this.yearModel = yearModel;
this.make = make;
this.speed = speed;
}
//Accessor Methods getters and setters
public int getYearModel() {
return yearModel;
}
public void setYearModel(int yearModel) {
this.yearModel = yearModel;
}
public String getMake() {
return make;
}
public void setMake(String make) {
this.make = make;
}
public int getSpeed() {
return speed;
}
public void setSpeed(int speed) {
this.speed = speed;
}
//Accelerate function
public void accelerate(){
this.speed+=5;
}
// Brake function
public void brake(){
this.speed-=5;
}
}
Explanation:
- As required by the question, The class Car is created using Java programming language
- The members variables, the constructor, The accessor methods are all created as required by the question (Please pay attention to the comments added to the code)
- The accelerate and brake functions that add and subtract 5 from the speed member variable respectively are also created.
It was created to show the difference between computers that were owned by companies (at one point they were so large and so expensive that only big groups could afford and store them), and the era when computers became small enough for individuals to be able to fit them in their own homes, and also afford them. The era of the Personal Computer (PC) was a huge changing point in history because it brought a lot of power and connectivity into people's homes that hadn't been available before.
Windows paint can be used to open a bitmap file. Usually, when you have a picture, you can use that to edit it.
Also, on a side note, notepad is specifically used for html codes.
Answer: Windows Paint
Answer:
IP address and subnet mask.
Explanation:
The two components which are configured via software in order for a personal computer (PC) to participate in a network environment are;
I. IP address: it is an acronym for internet protocol address and can be defined as a unique number assigned to a computer or other network devices, so as to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network devices connected to the internet or network.
In Computer networking, IP address are classified into two (2) main categories and these are; Local (internal) IP address and Global (external) IP address.
Also, the internet protocol (IP) address comprises of two (2) versions and these are; Internet protocol version 4 (IPv4) and Internet protocol version 6 (IPv6). An example of an IPv4 address is 192.168.1.0.
II. Subnet mask: this is a logical segmentation or subdivision of an internet protocol (IP) network so as to accommodate more hosts (computer systems). An example of a subnet mask is 255.255.0.0.