I believe its "Thinking Universe"
        
             
        
        
        
Select Query
I hope this helps! :)
        
             
        
        
        
Answer:
Option B and C are the correct answer for the above question 
Explanation:
The above question asked about the work of the programmer to catch an error of the program--
-  Then the option B states that the programmer needs to prints the value of the various program variable on every line of the program which is the correct solution because it is used to find the error easily. It defines the value of every variable in every place of the program and the programmer caught the error statement in the program if anywhere the variable gets the false value.
- The C option states to help from a friend, it is also a good solution because the friend can easily be caught the error of the program by seeing every line of code.
- But the other option is not correct because the option A states that the change the name of the variable which is not a result of anything.
- And the option D states that the code will be retyped again which is also not justify anything. 
 
 
        
             
        
        
        
Answer:
public class Calculator {
    private int total;
    private int value;
    
    public Calculator(int startingValue){
        // no need to create a new total variable here, we need to set to the our instance total variable
        total = startingValue;
        value = 0;
    }
    public int add(int value){
        //same here, no need to create a new total variable. We need to add the value to the instance total variable
        total = total + value;
        return total;
    }
    /**
    * Adds the instance variable value to the total
    */
    public int add(){
        // no need to create a new total variable. We need to add the value to the instance total variable
        total += value;
        return total;
    }
    public int multiple(int value){
        // no need to create a new total variable. We need to multiply the instance total variable by value.
        total *= value;
        return total;
    }
    //We need to specify which value refers to which variable. Otherwise, there will be confusion. Since you declare the parameter as value, you need to put this keyword before the instance variable so that it will be distinguishable by the compiler.
    public void setValue(int value){
        this.value = value;
    }
    public int getValue(){
        return value;
    }
}
Explanation:
I fixed the errors. You may see them as comments in the code
 
        
             
        
        
        
A Petri dish (Petri plate) is a shallow cylindrical glass lidded dish that is typically used to culture microorganisms (agar plates). There are glass and plastic Petri dishes, and both can be sterilized (using an autoclave) and re-used. Before being used for culture purposes, it is important to ensure that the Petri dish is not only clean, but also sterile. This helps prevent the contamination of the new culture.Agar is a polymer made up of various sub-units of galactose and various species of red algae. Although it has other uses including culinary and dentistry, agar plays an important role in microbiology as culture media for a variety of microorganisms.As compared to some of the other alternatives like gelatin, agar has a number of advantages which include:Cannot be easily degraded by microorganism Stronger Firmer than gelatin