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.
Technology affects people's lives differently.
Some are bad and some are good.
But for me, technology gives us a chance to collaborate and connect even if we are miles away.
People are opening their mind to new kind of knowledge that can help us improve and grow.
Let's say for example you have a toddler, or a pet. Let's say a cat. If the ctrl+alt+delete wasn't there. It would go straight to entering the password. Now let's say your child or pet likes to press the keys for a while. If they manage to press enter and enter the incorrect password. Eventually it will lock up your computer.
The statement that best explains the way that similar applications are used in different devices is option b: Although the systems are different, the apps are still designed to work the same way.
<h3>How does an app work?</h3>
An app is known to be a kind of a software that gives room for a person to be able to carry out some specific tasks.
Note that Applications for desktop or laptop computers are said to be called desktop applications and those apps that are used in mobile devices are known to be called mobile apps.
Hence, The statement that best explains the way that similar apps are used in different devices is option b: Although the systems are different, the apps are still designed to work the same way.
Learn more about Software applications from
brainly.com/question/22442533
#SPJ1
Answer: True
Explanation:
TCP is the transmission control protocol which and TCP ACK is the transmission control handshake method which are used by TCP. It basically indicates the next sequence number in the method when the flag is set.
Firstly, the ACK (Acknowledge) send by the each end for the initial sequence number itself but it does not contained any type of data. In the TCP segment header ACK contain 32 bit field.
The acknowledgement is just a proof to clients that ACK is a specific to the SYN when the clients initiate.