Answer:
Following are the program in java
public class Vehicle // class vehicle of type public
{
private int modelYear;
Vehicle() // no parameters
{
modelYear=2018;
}
vehicle(int t) // update the value of modelYear
{
modelYear=t;
}
public static void main(String args[]) // main function
{
vehicle ob=new vehicle();// creating instance
vehicle ob1=new vehicle(45);
}
}
Explanation:
Here we create a private data member i.e modelYear of integer type .
We create default constructor and initializes modelYear variable with 2018.
we create a parametrized constructor which update the value of modelYear variable.
From the main function we call both the constructors.
A deque is a type of list
Explanation:
ability to maintain a high level of service for costumers
users may never know when a sight has experienced tremendous growth
ability to respond to users volume issues more quickly
Answer:
Domain Networking.
Explanation:
A domain in networking refers to any group of workstation,users,printers devices ,database servers and computers which share different type of data via resources of network.
Hence domain networking will be the best option for the company having 40 workstation in a single building sharing a single network.
Answer:
Rights and Responsibilities
Explanation: