Answer:
The answer to this question is given below in the explanation section. 
Explanation:
This program is written in C++.
                                                                          
#include <iostream>
using namespace std;
int main()
{
    
    string word;// variable for taking user input
    int cond;// to set condition true if user preses the stop and exit from loop
    
    cout<<"Enter word: \n";
    cin>>word;
    do// start while loop
    {
        
        
        if(word=="stop" || word =="STOP" || word == "Stop")// if user enter word stop, then program exit
        {
        cond=0;
        
        }
        else//otherwise loop continue
        {
            cout<<" You Entered "+ word +"\n";
            cout<<"Enter word: \n";
            cin>>word;
            cond=1;
        }
    }  
    while(cond == 1);// if user don't enter word "stop" loop run continuesly.  
    cout<<"Program exit";
    
    return 0;
}
 
        
             
        
        
        
Answer:
There's a parking lot that is 600m² big. The lot must be able to hold at least 3 buses and 10 cars.
Each car takes up 6m² and each bus takes up 30m².
However, there can only be 60 vehicles in the lot at any given time.
The cost to park in the lot is $2.50 per day for cars and $7.50 per day for buses. The lot must make at least $75 each day to break even.
What is a possible car to bus ratio that would allow the lot to make profit?
 
        
             
        
        
        
Answer:
Explanation:
The following code is written in Python. It asks the user for an input. Then cleans the input using regex to remove all commas, whitespace, and apostrophes as well as making it all lowercase. Then it reverses the phrase and saves it to a variable called reverse. Finally, it compares the two versions of the phrase, if they are equal it prints out that it is a palindrome, otherwise it prints that it is not a palindrome. The test case output can be seen in the attached picture below.
import re
phrase = input("Enter word or phrase: ")
phrase = re.sub("[,'\s]", '', phrase).lower()
reverse = phrase[::-1]
if phrase == reverse:
    print("This word/phrase is a palindrome")
else:
    print("This word/phrase is NOT a palindrome")
 
        
             
        
        
        
Since Anil needs to show the overlap of people who live in a certain neighborhood in his city that supports a specific political candidate, the type of conceptual diagram which he should use is a: B: Venn diagram.
<h3>What is a Venn diagram?</h3>
A Venn diagram can be defined as a circular graphical (visual) tool that is typically used for representing, logically comparing and contrasting two (2) or more finite sets of data such as objects, students, events, voters, concepts, people, etc. 
In this context, we can reasonably infer and logically deduce that a Venn diagram is a type of conceptual diagram which can be used by Anil in illustrating the overlap of people who are living in a certain neighborhood in his city and supports a specific political candidate in an election.
Read more on Venn diagram here: brainly.com/question/24581814
#SPJ1