The answer is D. Appearance panel
Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
The correct answer is Home.
Indentation is useful to make the document easier to read. To increase the indentation of the paragraph, you press the increase indentation in the <u>Home</u> tab.
you can increase/ decrease indentation in Home tab under the Paragraph groups of command.
Othe options are not correct because:
View tab has settings related to how the document looks like. Insert tab has settings related to the insertion of image, shape, pages, tables, illustration, and links, etc into a document. The review tab allows you to review the document with different available settings.
Answer:
#include <iostream>
#include <array>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
if (toupper(str[i]) != toupper(str[length - 1 - i]))
return false;
return true;
}
int main()
{
array<string, 6> tests = { "madam", "abba", "22", "67876", "444244", "trymEuemYRT" };
for (auto test : tests) {
cout << test << " is " << (isPalindrome(test) ? "" : "NOT ") << "a palindrome.\n";
}
}
Explanation:
The toupper() addition forces characters to uppercase, thereby making the comparison case insensitive.
It should be either windows 98 or windows xp but I think it is windows xp