Answer:
C++
Explanation:
using namespace std;
class AbstractClass {
public:
virtual bool checkUpperCase(string inputString);
virtual string lowerToUppercase(string inputString);
virtual void stringToInt(string inputString);
};
class ConcreteClass: public AbstractClass {
public:
bool checkUpperCase(string inputString) {
bool isUpper = false;
for (int i=0; i < strlen(inputString); i++) {
if (isupper(inputString[i])) {
isUpper = true;
break;
}
return isUpper;
}
string lowerToUppercase(string inputString) {
for (int i=0; i < strlen(inputString); i++) {
putchar(toupper(inputString[i]));
}
return inputString;
}
void stringToInt(string inputString) {
int convertedInteger = stoi(inputString);
convertedInteger+=10;
cout<<convertedInteger<<endl;
}
};
int main() {
ConcreteClass cc;
return 0;
}
Answer:
Availability
Explanation:
With Data availability, it means that we are saying that information is accessible to users. This gives the assurance of the system and also the data being accessible to authenticated users anytime they have the need for it.
It is simply saying that information would be operable by users with authorization whenever they request to.
Explanation:
any four commonly point and draw device are:
1)mouse
2)joystick
3)trackball
4)pointing stick
The Spec book, describes a formatted writing which contains the major specifications and description of the building blocks of an application or process. The design process should follow formatting guidelines such as ;
- Inclusion of table of content, which gives a table like format of the content in the book within the first 25 pages.
- Inclusion of the Spec section number in the <em>header and footer section</em> of each page of the book.
- Avoid including any other value with the <em>spec section number</em>. Hence, the spec section number must be distinctly seperated.
Learn more : brainly.com/question/25648287