Answer:
"You passed the test!"
Explanation:
Here user reading grade "test_score" and  checking the student score in "If" condition. If it is less than 60 we are printing "You failed the test!" and if it is >60 we are outputting the string  "You passed the test!" and else if it not satisfying any of these then we are printing "You need to study for the next test!".As "test_score" value is 90 which is >60 it satisfies the condition >60. So we are printing the string "You passed the test!"
 
        
             
        
        
        
Answer:
#include <iostream>//including libraries
using namespace std;
int main()
{
 int arr[6] = { 0,1,2,3,4,5 };//make sure size of arr is 1 less than secArr
 int secArr[7];//second array (1 element bigger)
 for (int i = 0;i < 6;i++)//looping through each element (6 times)
 {
  secArr[i + 1] = arr[i];//transferring elements to second array and shifting by 1 cell
  cout << secArr[i + 1] << endl;//printing elements of second array
 }
 return 0;//terminating program
}
Explanation:
The array size can range from any number. just make sure to keep arr one less than secArr. This is because we need the room for the extra element. This task is to help you understand how array work and how to parse through them using loops. For loops are the best for this task because even if you think intuitively, they work for as long as there are items in the array. and you can define the size yourself. 
 
        
             
        
        
        
Answer:
17.0
Explanation:
after first loop numA = 0.0 + 2 = 2.0
after second loop numA = 2.0 + 5 = 7.0
after third loop numA = 7 + 10 = 17.0
 
        
             
        
        
        
I believe it means bullet points as in a form of typing
        
             
        
        
        
#4 is true
We use pseudocode to help us understand code.
#5 is false
Strings are surrounded by quotes, integers are not.
#6 is 100.
Integers are numbers with no decimal places.