Answer:
Sowwy, it's not Me!
The Bermuda Triangle, also known as the Devil's Triangle, is a loosely defined region in the western part of the North Atlantic Ocean where a number of aircraft and ships are said to have disappeared under mysterious circumstances. Most reputable sources dismiss the idea that there is any mystery.[1][2][3]
Bermuda Triangle
Devil's Triangle
 
        
                    
             
        
        
        
Answer:
A,B,D
A. Allows you to be sure the problem and solution are understood
B. Presents the solution in a manner that is easy to share
C. Is a starting point for all other activities
 
        
                    
             
        
        
        
The quote from the text that shows that the author’s purpose is to persuade is D. Critics say that kids stare at computers and TVs all day and do not get enough exercise. The facts stand in counterpoint to this belief.
An argumentative writing prompt is written in order to convince the readers about a particular issue.
According to the author, the fact that children are involved in watching movies, playing games, listening to music, etc doesn't mean that they can't still be productive.
There are some critics that believe that kids stare at computers and TVs all day and do not get enough exercise. This was countered by the author who stated that kids can still engage in exercises or do other productive things.
Read related link on:
brainly.com/question/24861556
 
        
             
        
        
        
Answer:
/*C++ program that prompts user to enter the name of input file(input.txt in this example) and print the sum of the values in the file to console. If file dosnot exist, then close the program */
//header files
#include <fstream>
#include<string>
#include <iostream>
#include <cstdlib> //needed for exit function
using namespace std;
//function prototype
int fileSum(string filename);
int main()
{
 string filename;
 cout << "Enter the name of the input file: ";
 cin >> filename;
 cout << "Sum: " << fileSum(filename) << endl;
 system("pause");
 return 0;
}
/*The function fileSum that takes the string filename and
count the sum of the values and returns the sum of the values*/
int fileSum(string filename)
{
 //Create a ifstream object
 ifstream fin;
 //Open a file
 fin.open(filename);
 //Initialize sum to zero
 int sum=0;
 
 //Check if file exist
 if(!fin)
 {
 cout<<"File does not exist ."<<endl;
 system("pause");
 exit(1);
 }
 else
 {
 int value;
 //read file until end of file exist
 while(fin>>value)
 {
 sum+=value;
 }
 }
 return sum;
}//end of the fileSum
Explanation:
This is a C++ program that prompts user to enter the name of input file(input.txt in this example) and print the sum of the values in the file to console. If file dosnot exist, then close the program.
Check attachment for sample output screenshot. 
 
        
             
        
        
        
Is this a question?
*Answer: not much information to answer with*