Answer:
Php. 1050
Explanation:
Total Room sales for Room 101:
Rate = 350
Number of times occupied = 3
Total sales per room : (number of times room was occupied * rate of the room.)
Hence, total sales for room 101:
Php. 350 * 3
= Php. 1050
 
        
             
        
        
        
Assuming that the user is talking about Microsoft Word, the options available when using the replace feature include replace, replace all, and find next. First, the Find what and Replace with boxes locates a word or phrase and replaces it with the new text. Selecting the replace option will update one instance while the replace all option will update all instances without stopping at each one. You can click on the Find Next several times until you come to the instance that you want to update.
 
        
             
        
        
        
<h2>♨ANSWER♥</h2>
The Internet, sometimes called simply "the Net," is a worldwide system of computer networks -- a network of networks in which users at any one computer can, if they have permission, get information from any other computer
<u>☆</u><u>.</u><u>.</u><u>.</u><u>hope this helps</u><u>.</u><u>.</u><u>.</u><u>☆</u>
_♡_<em>mashi</em>_♡_
 
        
                    
             
        
        
        
Answer:
The code is as follows:
for(int j = 0; j < newScores.length-1; j++){  
                newScores[j] = oldScores[j+1];  
            }  
            newScores[oldScores.length-1] = oldScores[0]; 
Explanation:
This loop iterates through the elements of oldScores
for(int j = 0; j < newScores.length-1; j++){  
This enters the elements of oldScores to newScores starting from the element at index 1
                newScores[j] = oldScores[j+1];  
            }  
This moves the first element of index 0 to the last index of newScores
            newScores[oldScores.length-1] = oldScores[0]; 
 
        
             
        
        
        
I believe it's 5 spaces for an indent. If that's incorrect plz forgive me lol.