Answer:
0 540 100 200 350 400 550 600 750
Explanation:
hope this helped
 
        
                    
             
        
        
        
Answer:
People in households buy goods and services from businesses in an attempt to satisfy their unlimited needs and wants.
Explanation:
Households also sell their labor, land, and capital in exchange for income that they use to buy goods and services that firms produce.
 
        
             
        
        
        
Answer:
#include <bits/stdc++.h>
using namespace std;
bool isPalindrome(string str)
{
    char a,b;
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
    a=tolower(str[i]);//Converting both first characters to lowercase..
    b=tolower(str[length-1-i]);
    if (b != a )
return false;
}
return true;
    
}
int main() {
    string t1;
    cin>>t1;
    if(isPalindrome(t1))
    cout<<"The string is Palindrome"<<endl;
    else
    cout<<"The string is not Palindrome"<<endl;
 return 0;
}
Output:-
Enter the string
madam
The string is Palindrome
Enter the string
abba
The string is Palindrome
Enter the string
22
The string is Palindrome
Enter the string
67876
The string is Palindrome
Enter the string
444244
The string is not Palindrome
Explanation:
To ignore the cases of uppercase and lower case i have converted every character to lowercase then checking each character.You can convert to uppercase also that will also work.
 
        
             
        
        
        
Answer:
Explanation:
Since the array is not provided, I created a Python function that takes in the array and loops through it counting all of the words that are longer than 5. Then it returns the variable longer_than_five. To test this function I created an array of words based on the synapse of Pride and Prejudice. The output can be seen in the attached picture below.
def countWords(p_and_p_words):
    longer_than_five = 0
    for word in p_and_p_words:
        if len(word) > 5:
            longer_than_five += 1
    return longer_than_five
 
        
             
        
        
        
In an <u>Internet-based system</u>, the web becomes an integral part of the application, rather than just a communication channel, and systems analysts need new application development tools and solutions to handle the new systems.
d) Internet-based system
<u>Explanation:</u>
Web information system, or web-based information system, is a data framework that utilizes Internet web advancements to convey data and administrations, to clients or other data frameworks/applications.
It is a product framework whose primary intention is to distribute and keep up information by utilizing hypertext-based standards. In an Internet-based system, the Web turns into a fundamental piece of the application, instead of only a correspondence channel, and frameworks investigators need new application advancement instruments and solutions to handle the new systems.