Answer:
Search Engine
Explanation:
A search engine refers to a computer application software that looks through and locates items in a database. These items will correspond to to the phrases or keywords being searched for that has been entered by a user. 
On the internet or web, popular search engines are provided by google and yahoo and they are designed to carryout web search when users enter search query as keywords or phrases
 
        
                    
             
        
        
        
Answer: E. class, objects
Explanation:
<em>A </em><em><u>class</u></em><em> is the blueprint for </em><em><u>objects</u></em><em> having similar attributes.</em>
As much as classifying something means to define it based on the characteristics that is has that are similar to other things in that class, so also is a class here. 
A class is the blueprint or rather template for making objects that have similar attributes which means that the class therefore gives the object its various attributes and its behavior. 
 
        
             
        
        
        
False there are soooo many more people
Because look on our own Brainly there are more than 1,000 people
MARK ME BRAINLEST
        
             
        
        
        
Answer:
A is the input array
B = []
; %B is initially an empty array
for i = 1:length(A)/2  %iterates over A until the midpoint of A
    B(i) = A(i) + A(end + 1 - i);  %This adds the numbers from the first half and %second half of A, and stores in B
end
disp(B)