Answer:
Prevents lagging
Explanation:
This prevents the website from being slow and upto shape so those who access it dont have difficulties
Answer:
Some of the sites have the rating system for example 3 stars, or the bot has a feature that can capture keywords that include a list of possible indicator that it is a negative review. For example if a user review includes a word "bad" or "horrible" the bot will flag that as a negative review.
Please give brainliest.
Answer:
The department of homeland security mission is to provide the efficient and good security system to the nation in all the aspects against the terrorism.
The main aim of the department of homeland security mission is to anticipate fear based oppressor assaults inside the United States, decrease the weakness of the United States to psychological oppression, and limit the harm, and aid the recuperation from psychological oppressor assaults that do happen in the United States.
The main responsibility of this department is that:
- Providing the security against the threats of terrorism attacks
- Providing the effective and quick recovery from the disaster
- Also, give the secured cyber space to the homeland.
Answer:
#include <iostream>
using namespace std;
int main()
{
string s;
cin>>s; //reading string
int i,j;
bool has_dups=false;
int n= s.length();
for(i=0;i<n;i++) //to check for duplicate characters
{
for(j=0;j<n;j++)
{
if(j!=i && s[i]==s[j]) //to check if it is matched with itself
{
has_dups=true; //if true no need to check others
break;
}
}
}
cout<<has_dups;
return 0;
}
OUTPUT :
California
1
Explanation:
Above program finds if a character repeat itself in the string entered by user.
Answer:
The correct answer to the following question will be "Math.sqrt(area*2)".
Explanation:
- The Math.sqrt( ) method in JavaScript is used to find the squares root of the given figure provided to the feature as a variable.
- Syntax Math.sqrt(value) Variables: this function takes a single variable value that represents the amount whose square root is to be determined.
- The area of the figure is the number of squares needed to cover it entirely, like the tiles on the ground.
Area of the square = side times of the side.
Because each side of the square will be the same, the width of the square will only be one side.
Therefore, it would be the right answer.