Answer:
personal computers
Explanation:
The third wave of computing was characterized by the introduction of <u>personal computers </u>
Answer:
import pandas as pd
# loads the text file as a pandas dataframe
student_file = pd.read_fwf("std_info.txt")
# opens a new text file if the student_avg does not exist
# the file closes automatically at the end of the with statement
with open('student_avg.txt', 'w+') as file:
for row in student_file.iterrows():
file.write(row)
ee = student_file[student_file['major'=='EE']]
cpe = student_file[student_file['major'=='CPE']]
file.write(f'EE average = {ee['EE'].mean()}')
file.write(f'CPE average = {ee['CPE'].mean()}')
file.write(f'Total average = {student_file['EE'].mean()}')
Explanation:
The python program gets the text file as a fixed-width file and loads the file as a pandas dataframe. The dataframe is used to get the total average GPA the student GPA and the average GPA of students in various departments. The results are saved in a new file called 'student_avg.txt'.
They may want to buy stock if that company may be doing good
Answer:
hypertext
Explanation:
Hypertext is used to describe a computer system that could store literary documents, link them
according to logical relationships, and allow readers to comment and annotate what they read.
Hypertext can also be said to be a system in which text on one page is used to link to text on other pages. They are simply text with links to other text.
Examples of hypertext footnotes, indexes, magazines, newspapers, etc.
A hypertext fiction can be described as an electronic literature with use of hypertext links.
Answer:
b) Operador
Explanation:
Un operador en un lenguaje de programación es un símbolo que le dice al compilador o intérprete que realice una operación matemática, relacional o lógica específica y produzca un resultado final.
En el lenguaje de programación computacional, un operador es un símbolo o construcción que se define dentro del lenguaje de programación que indica al intérprete o compilador lo lógico, relacional, matemático, a realizar sobre un valor o entre valores.
Ejemplos de operadores son;
Operador de adición; +
Operador lógico; Y
Operador de asignación; =
Operador de comparación; >
operador typeid; typeid