Answer:
B
Explanation:
Because you do not want to make your presentation be dark especially in a low lighted room.
(Certified MOS 2016 Powerpoint User)
The portion of memory that is more or less permanent is called <u>long term memory.</u>
<u></u>
<h3>What is Long-term memory?</h3>
Long-term memory guides to the memory process in the brain that takes knowledge from the short-term memory store and creates long-lasting memories. These recollections can be from an hour ago or several decades ago. Long-term memory can hold an unlimited amount of knowledge for an indefinite period of time.
<h3>
What is long-term memory in psychology?</h3>
Long-term memory refers to unlimited storage information to be carried for long periods, even for life. There are two types of long-term memory: declarative or direct memory and non-declarative or implicit memory. Direct memory refers to information that can be consciously evoked.
To learn more about Long-term memory, refer
brainly.com/question/25040884
#SPJ4
Answer:
I do not understand can you type in English?
Explanation:
Answer:
The solution code is written in Python:
- sec = int(input("Enter number of seconds: "))
-
- if(sec >=60):
- min = sec // 60
- sec = sec % 60
- else:
- min = 0
-
- print(str(min) + " minutes " + str(sec) + " seconds")
Explanation:
Firstly, use input function to prompt user to enter number of seconds and assign the input value to variable sec (Line 1).
Next, create an if statement to check if the sec is bigger or equal to 60 (Line 3). If so, we user // operator to get minutes and use % operator to get the seconds (Line 4 - 5).
Then we use print function to print the minutes and seconds (Line 9).