The farming of maize began in Mesoamerica in 6000 B.C.
The domestication of maize made the city of Tenochtitlan possible by providing the Aztecs the ability to feed millions. Unlike the corn that is known today, the early maize had tiny cobs but dramatically became bigger and more nutritious as time passed.
 
        
                    
             
        
        
        
Answer:
hola me llamos por mi nombre
Explanation:
me gusta la tegnologia 
y no e trabajado xq soy estudiamte aun
 
        
             
        
        
        
Explanation:
==================  
lin_spaced_vector.m  
==================  
function out=lin_spaced_vector(in1,in2)%defining function
out=linspace(in1,in2,200);%200 spaced numbers between in1 and in2
end
===================  
Executable File
===================
clear all%clears history
clc%clears screen
lin_spaced_vector(1,10)%calling function
clear all
clc
lin_spaced_vector(1,10)