Answer:
The solid rod BC has a diameter of 30 mm and is made of an aluminum for which the allowable shearing stress is 25 MPa. Rod AB is hollow and has an outer diameter of 25 mm; it is made of a brass for which the allowable shearing stress is 50 MPa.
 
        
             
        
        
        
Answer:
See attachment for chart
Explanation:
The IPO chart implements he following algorithm
The expressions in bracket are typical examples
<u>Input</u>
Input Number (5, 4.2 or -1.2) --- This will be passed to the Processing module
<u>Processing</u>
Assign variable to the input number (x)
Calculate the square (x = 5 * 5)
Display the result (25) ----> This will be passed to the output module
<u>Output</u>
Display 25
 
        
             
        
        
        
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces  
// from a string  
class GFG  
{  
  
// Function to remove all spaces  
// from a given string  
static int removeSpaces(char []str)  
{  
    // To keep track of non-space character count  
    int count = 0;  
  
    // Traverse the given string.  
    // If current character  
    // is not space, then place  
    // it at index 'count++'  
    for (int i = 0; i<str.length; i++)  
        if (str[i] != ' ')  
            str[count++] = str[i]; // here count is  
                                    // incremented  
          
    return count;  
}  
  
// Driver code  
public static void main(String[] args)  
{  
    char str[] = "g eeks for ge eeks ".toCharArray();  
    int i = removeSpaces(str);  
    System.out.println(String.valueOf(str).subSequence(0, i));  
}  
}  
 
        
                    
             
        
        
        
Answer:
Engineering careers. If you want to stay in engineering, your job opportunities are very much linked to your degree type, and you probably know what many of them are already. ...
Consulting. ...
Technical writing. ...
Business. ...
Investment banking. ...
Law. ...
Manufacturing and production. ...
Logistics and supply chain.
Explanation: