Answer:
in my opinion if you have to do three codes in your C++ , you should of course do them in one project. but while submitting you should send the projects individually
Answer:
D. All of these
Explanation:
I hope this helps you! Have a great day!
bren~
Answer:
iPad
IPad mini
IPad Pro
IPad air
Samsung Galaxy tab
Galaxy Tab e
galaxy tab pro
Galaxy tab 2
Explanation:
Also maybe could you look at my 3 biology questions i really need help
Answer:
Option B, CUSTOMER MISBEHAVIOR.
Explanation:
Consumer misbehavior can defined as the behavioral acts by consumers which violate the generally accepted norms of conduct in consumption situations, and disrupt the order expected in such situations. Misbehavior by consumers disrupts the openness, impersonal trust, and orderliness of the exchange environment.
Some of the examples of customer misbehavior are: shoplifting, bending rules, breaking rules by ignoring warnings and using products in forbidden or ways not recommended...
* Routinized response behaviour is a type of purchasing scenario whereby the purchaser of a product or a service has past experience with purchasing it and automatically makes the decision to purchase again.
* Psychological influences refers to the workings of the mind or psyche that influences customer decisions.
* Social influences refers to the intentional and unintentional efforts to change another person's beliefs, attitudes, or behavior.
Therefore, the option that best suits the question is option B, CUSTOMER MISBEHAVIOR.
Answer:
class studentType: public personType
{
public:
virtual void print() = 0;
virtual void calculateGPA() = 0;
void setID(long id) {
studentId = id;
}
void setCourses(const string c[], int noOfC) {
noOfCourses = noOfC;
for (int i=0; i<noOfCourses; i++) {
courses[i] = c[i];
}
}
void setGrades(const char cG[], int noOfC) {
noOfCourses = noOfC;
for (int i=0; i<noOfCourses; i++) {
coursesGrade[i] = cG[i];
}
}
long getID() {
return studentId;
}
string* getCourses() {
return courses;
}
char* getGrades() {
return coursesGrade;
}
studentType(string fName = "", string lastName = "",
long id = 0, string c[] = NULL, char cG[] = NULL, int noOfC = 0);
private:
long studentId;
string courses[6];
char coursesGrade[6];
int noOfCourses;
};
Explanation:
Code rewritten