Answer: Live preview
Explanation:
The live preview feature enables to display the current slide with the design theme formatting applied with the mouse pointer. This feature is also available in digital cameras where the screen can be used as viewfinder.
Answer:
function findLongestWord(str) {
var longestWord = str.split(' ').sort(function(a, b) { return b.length - a.length; });
return longestWord[0].length;
}
findLongestWord(InputHere);
Explanation:
Replace InputHere with the input
Answer:
=POWER(2,14)
Explanation:
The complete question is to write the given formula in cell F1
We have:

The above formula implies 2 raised to the power of 14.
In Excel, this can be achieved using the power function
And the syntax is:
=POWER(m,n)
which means m^n
So, 2^14 will be entered in cell F1 as:
=POWER(2,14)
Answer:
var birthday = "12/2/1978";
Explanation:
It does not create a date object named birthday because in this statement the birthday is a string which contains 12/2/1978 a date it is not date object it is a string.All other three options are correct way to create a date object.
var birthday = new Date();
creates a date object with the current date and time.
we can also pass date string in the new Date().So var birthday = new Date("12/2/1978"); is also correct.
we can also pass year,month,day in new Date() In this order only.So option fourth is also correct.
The components that is responsible for providing instructions and processing for a computer is a. CPU.
<h3>What area of the computer executes commands?</h3>
This command center's central processing unit (CPU) is a sophisticated, large-scale collection of electrical circuitry that carries out pre-stored program instructions. A central processing unit is a must for all computers, big and small.
Note that the CPU, RAM, and ROM chips are all located on the motherboard. The "brain" of the computer is known as the Central Processing Unit (CPU). It carries out instructions (from software) and directs other parts.
Learn more about CPU from
brainly.com/question/26991245
#SPJ1