Answer:
Explanation:
Please see the attached picture for help.
 
        
                    
             
        
        
        
Answer:
.N.	Generación & Descripción
1	
Primera Generación
El período de primera generación: 1946-1959. Base del tubo de vacío.
2	
Segunda Generación
El período de la segunda generación: 1959-1965. Base del Transistor
3	
Tercera generación
El período de tercera generación: 1965-1971. Circuito integrado de base.
4	
Cuarta Generación
El período de cuarta generación: 1971-1980. Base del Microprocesador VLSI.
5	
Quinta Generación
El período de la quinta generación: 1980 en adelante. Base del Microprocesador ULSI. 
Explanation:
espero y esto te sirva de algo
 
        
             
        
        
        
Answer:
O =C3+10-E3
Explanation:
Only addition and subtraction :D
 
        
             
        
        
        
Answer:
presentation
Explanation:
Software like Google Slides and Microsoft Powerpoint can be utilized to present financial performances through the use of slides and charts. 
 
        
             
        
        
        
Answer:
I am doing it with python.
Explanation:
nums = '9 -8 -7 -6 -5 -4 -2 0 1 5 9 6 7 4'
myfile = open('data.txt', 'w')
myfile.write(nums)
myfile.close()
myfile = open('data.txt', 'r')
num1 = (myfile.read())
num1 = num1.split()
print(num1)
print(type(num1))
for x in num1:
    x = int(x)
    if x < 0:
        minus = open('dataminus.txt', 'a')
        minus.write(str(x) + ' ')
        minus.close()
    elif x>= 0:
        plus = open('dataplus.txt', 'a')
        plus.write(str(x)+' ')
        plus.close()