<span>A peer-to-peer network (or workgroup) consists of multiple windows computers that share information, but no computer on the network serves as an authoritative source of user information. domain-based peer-to-peer server-based centralized</span>
        
             
        
        
        
D, I think. I may be wrong. Someone comment and tell me
        
             
        
        
        
Answer:
Explanation:
mostTickets=0;
for (k=0; k< ndays; k++){
if (parkingTickets[k]>mostTickets) mostTickets=parkingTickets[k];
}
 
        
             
        
        
        
Answer: Transmission rate
Explanation:
  Transmission rate is measured in bits per second and it transmitted the data at the different rate across the circuit. The speed in which the data rate is transferred from one device to anther is known as transmission rate. 
The transmission rate are always less as compared to signalling rate because the signalling rate contain the total data which basically include the overhead to control the information. 
Therefore, transmission rate is the correct option. 
  
 
        
             
        
        
        
Answer:
1GL: Machine language. Represented by a series of 1s and 0s. 
2GL: Assembly language. An assembler converts 2GL into machine language. 
3GL: High-level programming language. Uses a compiler to convert into machine language. 
4GL: Specifically designed for creating database management programs.
5GL: Extremely advanced. Uses statements (scripts) rather than algorithms.
Explanation:
Programming languages started as a series of binary digits (i.e. 0's and 1'). This generation of language is referred to as the first generation.
However, the machine language were difficult to read by human, so mnemonics were created (i.e. assembly language). This language uses symbolic codes such as ADD for addition, etc. This is the second generation
The third generation are the high level languages that uses languages that can be easily understood by human, e.g. + means plus. However, the language must be translated; hence the need for a compiler or interpreter, as the case may be.
The fourth and fifth generations are extensions of the third generation languages. The fourth were created to connect to DBMS while the fifth are more advanced.