The correct term you're looking for in this instance is capacity as it limits the amount of storage on a secondary device
        
             
        
        
        
Psychology, because psychology is the study of how the mind works, and therefor what causes stress.
        
                    
             
        
        
        
Answer:
public class ANot {
    public static void main(String[] args) {
    
        int numberOfSides = 20;
        boolean isQuadrilateral;
        if(numberOfSides==4){
            isQuadrilateral = true;
            System.out.println("The triangle is quadrilateral");
        }
        else{
            isQuadrilateral=false;
            System.out.println("The triangle is not quadrilateral");
        }           
}
}
Explanation:
- Create and Initilize the int  variable numberOfSides (You can also receive this from a user using the scanner class for example).
- create a boolean variable isQuadrilateral
- Use if and else statement to check if numberOfSides ==4 and assign true to isQuadrilateral else assign false
 
        
             
        
        
        
The Answer is all of them, it's okay when i had to take this class last year and it took me for ever to find the tab and paste options. 
        
             
        
        
        
Answer:
See explanation
Explanation:
Given
if(fish > 400) {
Required
What is the condition checking?
The above statement is an if conditional statement. Analysing the statement in bits:
if -> This represents the beginning of the conditional statement
fish -.> The variable that is being checked
> 400 -> The condition which the variable is being measured by.
So, the statement above is checking if the value of variable fish is greater than 400.
<em>If the condition is true, the instructions associated to that if statement will be executed.</em>