Answer:
The question was solved using an algorithm later translated to a flow chart that adds five scores giving the sum and calculating the average. 
Explanation:
 
        
             
        
        
        
Answer:
Following are the program in c language 
#include<stdio.h> // header file
int main() // main function
{
    int ar[10],k,biggest; // variable declaration
    printf("Enter the ten values:\n");
    for (k = 0;k < 10; k++)  
    {
       scanf("%d", &ar[k]); // user input of 10 number
    }
    biggest = ar[0]; // store the array index of 0 into biggest variable
    for (k = 0; k< 10; k++) // finding the biggest number  
    {
     if (ar[k] >biggest)  
     {
     biggest = ar[k];
    }
    }
printf(" biggest num is %d", biggest); // display the biggest number
return 0;
}
Output:
Enter the ten values:
12
2
4
5
123
45
67
453
89
789
biggest num is 789
Explanation:
Here we declared an array ar[10] of type int which store the 10 integer values.
Taking 10 integer input from the user in array ar .After that iterating the loop and finding the biggest number by using if statement  and store the biggest number in biggest variable .
Finally display biggest number.
 
        
             
        
        
        
Answer:
he eats The candy Bar
Explanation:
I think cause As You told he is fat He might like sugary items
 
        
                    
             
        
        
        
Answer:
a. corporate blogs
Explanation:
corporate blog is the practice of creating content that addresses various topics which includes (updates, expert tips or best practices and company news) from the perspective of a brand. Also, blogs make posts and comments easy to reach and follow.
 
        
             
        
        
        
Answer:
breaking a problem into smaller parts
Explanation:
In language of computer science, decomposition is the process in which complex problems are divided into simpler parts. These simpler parts helps in the solving of the complex problems. They are made easier and comprehensible for the user to understand. Each simple part is further analyzed separately and the solution of the complex issues are derived.  The process becomes lengthy but the solution is found.