Answer:
This is using c++ syntax, you might need to make slight adjustment for other languages.
First activity:
string firstSnack = "chips";
string secondSnack = "pizza";
string thirdSnack = "apples";
string bestSnack = firstSnack;
bestSnack = secondSnack;
Second activity:
double apple = 0.5;
double banana = 0.75;
double orange = 1.43;
double total = apple + banana + orange;
Explanation:
When first declaring a variable, you want to specify the type (such as int, double, string, bool, etc.) and then the name. You can set the variable value in the declaration, or you can set it to a value later in the program by not having the equals sign and whatever comes next.
The user cannot close all the programs if he closes the open virtual desktop.
<h3>What are virtual desktops?</h3>
A virtual desktop is a computer operating system that does not run directly on the endpoint hardware from which a user accesses it. The desktop environment is separated from the physical device used to access it.
I call it a false desktop.
It is use to separate your work activities.
Therefore, the user cannot close all the programs if he closes the open virtual desktop.
learn more on virtual desktop here: brainly.com/question/14332029
#SPJ12
Answer:
Al hablar de entornos digitales de enseñanza y aprendizaje, la frase apunta al avenimiento de medios informáticos y tecnológicos al proceso metodológico de enseñanza de los distintos sistemas educativos a nivel mundial.
Así, la irrupción del internet como medio de búsqueda de información y las herramientas digitales como vídeos, diapositivas y libros electrónicos como métodos de presentación de información han facilitado el acceso de los alumnos y docentes al conocimiento a través de la generación de un entorno digital que permite a estos un acceso mas rápido y abarcativo al conocimiento.
Answer:
harris_poll_ranking = int(input("Enter team's Harris Poll ranking [1 - 2,850]: "))
coaches_poll_ranking = int(input("Enter team's Coaches Poll ranking [1 - 1,475]: "))
computer_ranking = float(input("Enter team's computer ranking [0 - 1]: "))
harris_poll_score = harris_poll_ranking / 2850
coaches_poll_score = coaches_poll_ranking / 1475
bcs_score = harris_poll_score / 3 + coaches_poll_score / 3 + computer_ranking / 3
print(bcs_score)
Explanation:
*The code is in Python.
Ask the user to enter the harris_poll_ranking as int, coaches_poll_ranking as int and computer_ranking as float
Calculate the harris_poll_score, divide the harris_poll_ranking by 2850
Calculate the coaches_poll_score, divide the coaches_poll_ranking by 1475
Calculate the bcs_score, harris_poll_score, coaches_poll_score and computer_ranking by 3 and sum them
Print the bcs_score