Answer: What do you except? All of this is user generated..
Explanation:
 
        
                    
             
        
        
        
Answer:
false 
Explanation:
 plants do that, they absorb carbon dioxide and then they create oxygen, then humans breathe the oxygen and makes CB
 
        
             
        
        
        
The switch statement is an n-way branch. An n-way branch can branch to any of an arbitrary number ( n ) of branches. An if statement can branch two ways, whether the condition is true or false.
The example you gave is a great example of how how code is written can make the code make sense or not.
public void setQuiz( int quiz, int grade )
{
  switch( quiz )
  {
    case 1: // if quiz == 1
      grade1 = grade; //where was grade1 declared?
      break;  // otherwise execution will continue through the next case block
    case 2: // if quiz == 2
      grade2 = grade;
      break;
  }
}
The variable named in the switch statement is tested against each case statement and whichever case statement's value matches, the rest of the switch statement's code is executed. (That's why the break statements are needed) Usually switch statements are written with a default case at the end as a "catchall".
        
             
        
        
        
Within a classful addressing subnet mask, the 32 bits indicate that corresponding bits in an IPv4 address contain network information.
<h3>What is classful IP 
addressing?</h3>
IP address is the address or the code of location to reach at a specific location. It is a unique address of 32 bit.
This address is classified in five classes.
- Class A
- Class B
- Class C
- Class D
- Class E
These class are necessary to obtained the bits for network ID.
Thus, within a classful addressing subnet mask, the 32 bits indicate that corresponding bits in an IPv4 address contain network information.
Learn more about the classful IP addressing here:
brainly.com/question/16842000
#SPJ1
 
        
             
        
        
        
Answer: True 
Explanation: Requirement analysis is the activity that gathers the information about the needs of the user,tools needed, feasibility of the software system etc parameters.After this process the proper guidance is provided by the team software process.
Team software process generates the framework for the processing and working of the software and provide it to the engineers and manager to carry out the work of designing the software.Thus , the given statement is true.