Answer:
A
Explanation:
Example: when scrolling through a list of shows, if you filter for action shows, only shows that match the action description would appear
 
        
             
        
        
        
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.
 
        
             
        
        
        
Answer: BeeWare is an open-source library that can be used to develop mobile apps in Python, where all of the objects look the same, no matter what platform it is displayed on. In contrast, the Kivy library uses native objects, so that applications built with it will look like other apps on that platform.
Explanation: