No its measured in Hertz Hz
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
Answer:
All the three statements given are true so the correct option is option 4 which is none of the above.
Explanation:
The options are given in a jumbled up form the options are sorted which are as follows:
- SOA eliminates the use of application boundaries, the traditional methods where security is at the application level aren't likely to be effective
- An atomic service cannot be decomposed into smaller services that provide a useful function
- XML security service may be found in retail application communication.
- None of the mentioned
SOA stands for Service Oriented Architecture. This eliminates the application boundaries so option 1 is true.
An atomic service is defined as the smallest service which cannot be divided further. So this is true as well
The XML security service is incorporated in all retail applications. so this is true as well.
So the remaining option is just None of the mentioned.