Hello, I am charlespierce576! I believe I might have the answer! Simple policies such as turning of off devices not in use. Also unplugging devices during a storm.
        
             
        
        
        
Answer:
its called whats poppin lol 
Explanation:
:) 
 
        
             
        
        
        
<span>The l</span><span>l command is the commonly predefined alias that is configured to run the ls âl command. The command ls stands for list. So instead of writing list, in Linux you only write the command ls. 
The alias are </span>shortcuts and time-savers. By typing ll we'll get the current directory's listing, in long format, including hidden directories.
        
             
        
        
        
Answer:
long power(int i)
{
    return pow(2,i);
}
Explanation:
The above written function is in C++.It does not uses loop.It's return type is long.It uses the function pow that is present in the math library of the c++.It takes two arguments return the result as first argument raised to the power of second.
for ex:-
pow(3,2);
It means 3^2 and it will return 9.
 
        
             
        
        
        
Lookup the isalpha() function in the C standard library, this function will check and return non-zero for alphabetic characters.