Answer:
Cloud is the correct answer for the above question.
Explanation:
Missing Information:
The option is missing in the question and the question suggests to choice. The option can be liberated, cloud, disperse, digital for this question in which cloud is the correct answer.
Detailed Explanation:
- The cloud is used to store a large amount of data or information for varies users and anyone can store or modify or delete the information from anywhere.
- This service takes money from the user and gives service to modify, edit or add the data from anywhere using the internet. When a user wants to take the service of the cloud then he needs to contact the cloud service provider, then pays money to them and then he can enjoy the service.
- The above question wants to ask about the term which is a vast environment of databases that provide access to the users to store and mane the data and that is the cloud which is the correct answer for the above question.
This is false. Therapeutic services are some of the most expensive.
The biggest security issue with using social networking sites to market your listings is Criminals may use social networking sites to identify your personal data.
<h3>What is a social marketing site?</h3>
A social marketing site is a site where people from around the world are connected in one place and share their thoughts and photos and other data.
The social sites are on the internet and there is a chance of stealing data and it identity theft, phishing, online predators, internet fraud, and other cybercriminal attacks are also some risks.
Thus, the largest security concern with using social networking sites to sell your listings is that thieves could use these sites to find personal information about you.
To learn more about social marketing sites, refer to the link:
brainly.com/question/15051868
#SPJ4
Answer:
// program in C++.
// headres
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// array
int temperatures[7];
// count variable
int count=0;
cout<<"Enter the temperature of all days:";
for(int a=0;a<7;a++)
{
// read temperature of 7 days
cin>>temperatures[a];
// find temperature is extreme or not
if(temperatures[a]<-10||temperatures[a]>25)
// count
count++;
}
// print count of extreme temperature
cout<<"number of days of extreme temperature:"<<count<<endl;
return 0;
}
Explanation:
Create an array of size 7 to store the temperature of all days of week.Read the temperature of each day.If the temperature is less than -10 or greater than 25 then increment the count.This will count the number of days of extreme temperature.Print the count.
Output:
Enter the temperature of all days:-20 12 18 30 32 -15 15
number of days of extreme temperature:4