Answer:
a. Advice and possible solutions intended to help or improve something
Explanation:
The answer is a because constructive criticism is when you help someone do/get better at something, through positivity.
 
        
             
        
        
        
Answer:
B
Explanation:
== returns true if both the left side and right side are equal
 
        
                    
             
        
        
        
Answer:
The expression for this question can be given as:
Expression:
ip + (ip + 1) + (*ip + 2)
Explanation:
In the question, it is given that the ip variable that is a pointer type variable has been declared and initialized. This variable result has been declared to be an array of 100 elements and it is also defined that the ip variable is an element of the first half of the array. So the expression of the sum of the elements that point the ip that is ip + (ip + 1) + (*ip + 2). In this expression, ip is a pointer variable that's value is increased by 1 and 2. and all the value will be added in the ip.  
 
        
             
        
        
        
Answer:
import java.util.Scanner;
public class num2 {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int total = 0;
        for(int i=0; i<5; i++){
            System.out.println("Enter next Int: ");
            total = total+in.nextInt();
        }
        System.out.println(total);
    }
}
Explanation:
In the code above written in Java programming language, the for loop statement for(int i=0; i<5; i++) ensures that the loop goes from 0-4 a total of five times.
At each iteration it requests a user to enter an int. The number entered is stored in the variable total which is initially assigned 0.
When the loop finishes execution, total is printed out
 
        
             
        
        
        
I believe this should have some multiple choice options: Application, System, Volume, Security.
The correct answer is volume.