Answer:
Limitation in the level of possible accuracy of the that can be obtained to mainly whole degrees
Explanation:
The angle measurement values are located around the circularly shaped bevel protractor to which a Vernier scale can be attached to increase the accuracy of the angle measurement reading
The accuracy of the bevel protractor is up to 5 arc minutes or 1/12° with the space on the Vernier scale having graduations of 1/12°, such that two spaces on the main scale is 5 arc minutes more than a space on the Vernier scale and the dimensions of the coincidence of the two scale will have an accuracy of up to 1/12°
Therefore, whereby the Vernier scale is damaged, the accuracy will be limited to the accuracy main scale reading in whole degrees.
I dislike how you wrote the 0’s. But honestly Teachers don’t really care as long as they can read it. So sure send it I guess
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}