You use the extension on the end of the file to tell you the type of a file
The extension is the .whatever in the name of the file
Answer:
The correct answer to the following question will be "Operating system".
Explanation:
- An operating system is a machine software that handles hardware of a computer, computing assets and delivers basic services to software programs.
- It is an intermediary between such users and computer hardware.
- It also helps you to interact with your machine without learning how to use your language of the computer.
Therefore, it will be the right answer.
Answer:
function sum(number) {
if (number == 1) {
return 1;
}
return number + sum(number -1);
}
Explanation:
This is a recursive function, it means that is a function that calls itself for example: if you call the function with sum(5) the process is :
sum(5)
|______ 5 + sum(4)
|_______ 4 + sum(3)
|______ 3 + sum(2)
|_____2 + sum(1)
|_____ 1
the result is 1+2+3+4+5 = 15
Answer:SENSORY STORE, FILTER, DETECTOR, STM.
Explanation:Donald Broadbent in 1958 stated one of the earliest theory of attention,he stated that physical features of messages are used to select one message for further processing and that all others are lost.This differs from inattentional blindness, which is when you focus hard on something and fail to notice unexpected things entering your visual area. He believes that
Information from all of the stimuli presented at any given time enters a sensory buffer with unlimited capacity.