Answer:
Computers can have both a positive and negative impact on education.
Positives:
-students have access to more information (the internet)
-students can more efficiently type and research
-students can save time (ex not having to walk to a library)
Negatives:
-can be a distraction
-students may have a harder time staying on task/topic
-students may develop a technology addiction
Answer:
Marianne needs to create a version of her slide presentation that does not include all the slides and will be used for a particular audience. What is the best way for her to achieve this? A.) Use the Custom Show dialog box to create a new custom show
Answer:
Enter time 1 HH:MM:SS8:5:22
Enter time 2 HH:MM:SS7:24:37
0:40:45
Explanation:
The program for above in Python is:
from datetime import datetime
s1 = input("Enter time 1 HH:MM:SS")
s2 = input("Enter time 2 HH:MM:SS")
Format1 = '%H:%M:%S'
tdiff = datetime.strptime(s1, Format1) - datetime.strptime(s2, Format1)
print(tdiff)
We are using the datetime class in datetime module for using strptime to find the difference between the two times.
Answer:
There is nothing to select you did not add any options
Explanation:
Answer:
All of the above options are incorrect, as the template class is the type of class in which it generate the various types of classes and also provide the specifications according to the specific parameters. The class template is basically initialized by passing all the given types to its argument in the given template function.
The template class are basically created by using the special types of functions which can be operated with the help of generic types without repeating the whole code in the given class.
Therefore, All the options are incorrect.