Ddddddddddddddddddddddddddddddddddddddddd
        
                    
             
        
        
        
Answer: AWS CodeCommit
Explanation:
The AWS service that the developers can use to meet the requirements that are illustrated in the question is the AWS CodeCommit.
The AWS CodeCommit is refered to as a fully-managed source control service which can be used in the hosting of Git-based repositories which are secure.
AWS CodeCommit makes it easy for the collaboration on code for teams in a secure ecosystem. CodeCommit can securely store binaries, source code etc.
 
        
             
        
        
        
Answer:
The data-link layer
Explanation:
The physical layer and data-link layer are often confused a lot especially in terms of what they do in the TCP/IP 7 layer protocol. The physical layer as the name suggests represents the physical devices like the cables and the connectors that join or interconnect computers together. This layer is also responsible for sending the signals over to other connections of a network. The data-link, on the other hand, translates and interprets these sent binary signals so that network devices can communicate. This layer is responsible in adding mac addresses to data packets and encapsulating these packets into frames before being placed on the media for transmission. Since it resides in between the network layer and the physical layer, it connects the upper layers of the TCP/IP model to the physical layer.
 
        
             
        
        
        
Answer:
broadband 
Explanation:
A<u> broadband</u> connection  provides fast internet service and the ability to exchange large files. 
 
        
             
        
        
        
Answer : True  
Explanation: Vectors can hold, data of the same type and can automatically expand accordingly and change it’s size. The date stored in vectors should be linear.  
-	The syntax for vector is vector<int>v;
-	Mostly this is used in C++ as an alternative to arrays  
-	If you want to use vector in your program then define it in the header first  i.e.
#include <vector>
-	Push back is a function, that is used to insert an element into the vector  
-	Pop back removes the element from the vector