Answer:
Check the explanation
Explanation:
#include <bits/stdc++.h>
using namespace std;
class Rectangle{
   public:
       int length;
       int breadth;
       Rectangle(int l,int b){
           length = l;
           breadth = b;
       }
       int area(){
           return length*breadth;
       }
       int perimeter(){
           return 2*(length+breadth);
       }
       bool equals(Rectangle* r){
           // They have the exact same length and width.
           if (r->length == length && r->breadth == breadth)
               return true;
           // They have the same area
           if (r->area() == area())
               return true;
           // They have the same perimeter
           if (r->perimeter() == perimeter())
               return true;
           // They have the same shape-that is, they are similar.
           if (r->length/length == r->breadth/breadth)
               return true;
           return false;
       }
};
int main(){
   Rectangle *r_1 = new Rectangle(6,3);
   Rectangle *r_2 = new Rectangle(3,6);
   cout << r_1->equals(r_2) << endl;
   return 0;
}
 
        
             
        
        
        
Failure of the <u>Brake master </u>cylinder will often result in sudden unexpected loss of the ability to stop the vehicle
<u>Explanation:</u>
The ability to stop the vehicle lies with the Brakes. If brakes of a vehicle do not work properly then it might become difficult to stop the vehicle. This happens when a cylinder called brake master cylinder fails. 
The brake master cylinder might not work properly with the passage of time or it can form internal leaks. This is the master cylinder and it controls other cylinders in a vehicle. Its failure affect the brakes badly, it will be unsafe to drive such a vehicle.
 
        
             
        
        
        
Answer:
felony
Explanation:
It is an offence on the part of a boat operator who is under the control of alcohol while boating, as such could result in property damage, serious bodily injury or death. Where such leads to bodily injury or deaths, the operator could be convicted for felony while misdemeanor applies to property damage.
There have been a reoccurring boating incidence in the country especially in the state of Florida, which has the highest number of boating fatalities hence created stiff penalties for boating under the influence of alcohol.
While it is adviseable for motorists not to drink and drive, it is also not lawful be under the influence when boating as such could cause injury, deaths or property damage and such operator would receive appropriate penalty depending on the outcome of the incident.
 
        
             
        
        
        
All of the following changes have created an urgent need for centralization except The number of qualified software programmers and PC repair technicians is dwindling
<h3><u>
Explanation:</u></h3>
When the processing tasks are carried out on a centralized server it refers to the Centralization. In this type of architecture all the computer systems will be connected to a single server in which all the computational work are performed. The client machines that are connected to the central server will get the resources for computing from the centralized server.
The main reasons for the purpose of centralization includes the following such as the development in the internet that required many computer networks, the basic functioning of the business in which the needed applications are fed on the intranets, the cost associated in the maintenance of personal computers on the single network.