Explanation:
In an educational setting, standards-based assessment is assessment that relies on the evaluation of student understanding with respect to agreed-upon standards, also known as "outcomes". The standards set the criteria for the successful demonstration of the understanding of a concept or skill -WIKIPEDIA
 
        
             
        
        
        
Answer:
code = 010100000001101000101
Explanation:
Steps:
The inequality yields 
, where M = 16. Therefore, 
The second step will be to arrange the data bits and check the bits. This will be as follows:
Bit position              number              Check bits            Data Bits
21                                   10101
20                                  10100
The bits are checked up to bit position 1
Thus, the code is 010100000001101000101
 
        
                    
             
        
        
        
Options:
A Infrastructure mode
B Ad hoc mode
C a wireless access point
D static IP addresses
E APIPA
Answer:
A. Infrastructure mode
C. a wireless access point
Explanation: A DHCP is a server that makes use of s standard protocol called dynamic host configuration protocol to automatically assign internet protocol (IP) addresses and other computer parameters to clients. It gives them the opportunity to effectively make use of other network services such as DNS( domain name system) and NTP(network time protocol).
 
        
             
        
        
        
Answer:
1. get the absolute path to the file
2. load the file as a table (dataframe in python)
3. to insert a row;
- create a dataframe of the same field type
 
- concatenate the new dataframe horizontally with the same dataframe
 
4. to delete a row, select and drop the row where the 'Number' field matches a value.
5. to update the values in row, use the number field as a key to replace the existing values.
6. print of save to a variable the rows where the number field matches a given value.
Explanation:
Follow the report template to create a report for the algorithm.
The algorithm gets the absolute path to the file and loads the file as a tabular file from there the data can be queried without accessing the main file. The insert algorithm creates a new dataframe and appends it to the main dataframe.
The delete, update and retrieve all use the same subalgorithm, getting the rows with the number field as the key value.