Answer
word processor
Explanation:
c. The amount of money needed to pay for burial costs and unpaid debts
b. The ease with which you can adjust your policy
d. Any additional sources of income that would be available to your dependents
b. A computer that is designed to request information from a server
c. Enables the transmission of data over public or private networks A communications, data exchange, and resource-sharing system created by linking
d. two or more computers and establishing standards, or protocols, so that they can work together
Answer:
D
Explanation:
two or more computers and establishing standards, or protocols, so that they can work together
Answer:
The code will display 2.
Explanation:
dct is a dictionary with 3 indexes; January, February, and March. print(dct['February']) gets the value at index 'February', which is 2, as shown in the initialization of dct.
Answer:teleconference
Explanation:
♀️
Answer:
Maintaing Focus and keeping the meeting comfortable and moving.
Explanation:
Answer:
class Vehicle
{
private: //should be declared once
string type; //should be small as C++ is case sensitive
int numAxles;
public: //should be declared once
Vehicle ( string vehicleTypes, int VehicleAxles); \\s should be small as C++ is case sensitive and it is a parametarised constructor
Vehicle (string vehicleType, int b); //s should be small as C++ is case sensitive and now this is also a parametarised constructor
}; //a class ends with }: not with }
Explanation:
There are two constructors in this piece of code. The first constructor was parametrised while the second only had one argument. The second constructor should have 2 arguments like the first construtor or it should be empty. I've passed another argument to the second constructor. Moreover, the class ends with }; not with } and as we know C++ is case sensitive language so, declare the reserved keywords with small letters.