Answer:
It is supported by many different experiments.
Explanation:
Scientific theory is based on different experiments and tested in different situations and environment will all aspects. If the experiment finds true then observations will become theory. It can be changed in future if it does not meet the newly proposed conditions. But It does not means that, every theory can be changed.
Answer:
1.Click.
2.Choose “All Programs”
3.Then select, the “Microsoft Office” folder.
4.Now, open your desired Office application. 5.for e.g Microsoft Word 2010.
6.Once the application opens, select.
Click.
7.Now, select the document you wish to open in Office 2010 and click.
Answer:
20 will be displayed on the console.
Explanation:
Given code is:
var numList = [10,20,30];
console.log(numList[numlist.length-2]);
The first line of code declares an array named numList and assigns it values given in the square brackets.
The second line of code is written to display the element on the index obtained by [numlist.length-2]
[numlist.length-2] means the second index.
Hence,
after running the code on JavaScript editor and dry running the code
20 will be displayed on the console.