While you’re using the DELETE or UPDATE to change the data in any database like MySQL or ORACLE, the WHERE clause can be used to avoid inadvertently changing data everywhere. 
<u>Explanation:</u>
The WHERE clause checks the condition and the changes mentioned by the DELETE or UPDATE command will be done if the condition is true. There are also other clauses like HAVING, IN which will have range either inclusive or exclusive. 
It is also noted that in MySQL, there is a method called WorkBench which enables safe mode and doesn’t execute statements without the WHERE clause.
 
        
             
        
        
        
<u>Client-server</u> implemented a network where hosts are assigned specific roles, such as for file sharing and printing. Other hosts access those resources but do not host services of their own.
<u>Explanation:</u>
The client-server can be utilized on the web just as on a neighborhood (LAN). Instances of customer server frameworks on the web incorporate internet browsers and web servers, FTP customers and servers, and the DNS. Different hosts get to those assets yet don't have administrations of their own. Since it permits arrange permits numerous PCs/gadgets to interface with each other and offer assets.
 
        
             
        
        
        
Answer:
following are the OSI Layers
1.physical layer
2.datalink layer
3.network layer
4.transport layer
5.session layer
6.presentation layer
7.application layer
Explanation:
physical layer is used to transmit media,signal and binary information
datalink layer is used for physical addressing MAC and LLC
network layer is used for path determination and ip
transport layer is for end to end communication and reliability
session layer is for interhost communication
presentation layer is for data representation and encryption
application layer is network process to application
 
        
             
        
        
        
Answer:
This will work for most languages, but this is mainly for c#. Double check what language your using before putting in this answer.
           Console.WriteLine("What grade are you in?");
            int grade = Convert.ToInt32(Console.ReadLine());
            if (grade == 9)
            {
                Console.WriteLine("Freshman");
            }
            if (grade == 10)
            {
                Console.WriteLine("Sophomore");
            }
            if (grade == 11)
            {
                Console.WriteLine("Junior");
            }
            if (grade == 12)
            {
                Console.WriteLine("Senior");
            }
            if (grade < 8)
            {
                Console.WriteLine("Not in High School");
            }
Explanation:
The first line asks what grade are you in, then when the user types in the grade it saves it in a variable. We then use that variable for the conditionals. The conditional states, whatever grade level your in, it prints your high school year title. If anything is lower than 8, it will print not in high school.