The following cose will be used to copy assignment operator for CarCounter
<u>Explanation:</u>
Complete Program:
#include <iostream>
using namespace std;
class CarCounter
{
public:
CarCounter();
CarCounter& operator=(const CarCounter& objToCopy);
void SetCarCount(const int setVal)
{
carCount = setVal;
}
int GetCarCount() const
{
return carCount;
}
private:
int carCount;
};
CarCounter::CarCounter()
{
carCount = 0;
return;
}
// FIXME write copy assignment operator
/* Your solution goes here */
CarCounter& CarCounter::operator=(const CarCounter& objToCopy)
{
if(this != &objToCopy)
carCount = objToCopy.carCount;
return *this;
}
int main()
{
CarCounter frontParkingLot;
CarCounter backParkingLot;
frontParkingLot.SetCarCount(12);
backParkingLot = frontParkingLot;
cout << "Cars counted: " << backParkingLot.GetCarCount();
cout << endl << endl;
system("pause");
return 0;
}
Complete Question:
Rupa would like to quickly insert a table into her document without having to worry about formatting the data in the table. Which step should Rupa take?
Group of answer choices.
A. Insert tab, Tables group, Draw Table option
B. Insert tab, Tables group, Insert Table option
C. Insert tab, Tables group, Quick Tables option
D. none of the above
Answer:
C. Insert tab, Tables group, Quick Tables option
Explanation:
Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users to type, format and save text-based documents.
In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;
I. View Mode.
II. Print Mode.
III. Drift Layout.
Quick tables refers to the pre-formatted or pre-created stored in building blocks galleries that are easily accessible to the end users at any time.
In this scenario, Rupa would like to quickly insert a table into her document without having to worry about formatting the data in the table. The steps which Rupa should take are click on Insert tab, Tables group and then select the Quick Tables option.
Answer:
Conceptual design is the first stage that involves defining a concept.
Explanation:
In the conceptual design phase it is important to understand the needs, doing research and find out how to meet them defining models and plans. In this stage, you have to define the steps you will need to take to develop the design and identify the challenges you may face in order to be prepare.
Answer:
a. The cell tower forwards the call to the wireless provider's Mobile Telephone Switching Office
Explanation:
When a cell phone user begins to make a call, it is picked up by the cell tower located in the cell in which the cell phone is located and that belongs to the user's wireless provider. The next step in this process is that the cell tower forwards the call to the wireless provider's Mobile Telephone Switching Office.
There are 4 different types of communication and I can share my experience by helping you out to solve the assignment.
Explanation:
1. Verbal Communication:
- Communication with voice
- Provides active listening
- Body language is equally important.
2. Non-Verbal:
- Body language is the most important
- Communicating without using the words
3. Visual communication:
- Listening contents through photos and videos
4. Written communication:
- Serves as record
- Does not require tone
So in day today aspect we come across almost all type of communication. To answer the discussed question
1. Did the variety of communication surprised you?
I would say yes. I can say unknowingly I have experienced various types.
2. Did you find that your were more involved in one type of communication?
I would say yes. People may like communication type depending on their interest and skill set. So according to me even I have involved in my life with one set of communication and I am trying to use it more.
3. Which one(s) is/are most involved?
So it differs from people to people. I like verbal communication, because I am good at speaking with good tone and voice. Also, I am attracted towards visual communication because one picture will talk more than what an essay would communicate.