Answer:
through electronics we have a electrified lighted world. our homes,are lit with light using electricity. the stereo we listen to, electricity makes it happen. tv,computers, and record turntables all need electricity. electricity makes things possible that would otherwise be either impossible or very arduous. we see sounds and enjoy them. we watch entertaining movies. we read books and do our homework with the appreciated help of electricity.
Answer:
WYSIWYG, HTML, Source, and Preview in Browser
Explanation:
First, open the html file you are editing from the File : Open dialog, or from the Open File icon on the toolbar. Click on the toggle Browser Preview on the toolbar or from the View menu. This will give you a quick browser preview. Click on the button again and it will return to the code view
The faster it reaches the bloodstream
Answer:
B) prompt
Explanation:
Prompt tells a user that it's ready to receive commands by displaying a specific set of characters.
For example in <em>windows</em> it can be:
C:\Temp>, The prompt states that user is currently in <em>C </em>drive <em>Temp</em> directory.
in <em>Linux </em>based operating systems it can be:
[email protected]:~/Documents$
where it is in the format [email protected]:~directory$
Answer:
The solution code is written in Python
- numList = [10, 20, 30, 40]
-
- for i in range(0, len(numList) - 1):
- numList[i] = numList[i] + numList[i + 1]
-
- print(numList)
Explanation:
Firstly, create a sample number list, numList (Line 1)
Create a for-loop that will traverse through the array element from 0 till the second last of the element (len(numList) - 1) (Line 3)
Set the current element, numList[i], to the sum of the current element, numList[i] and the next element, numList[i+1]
Print the modified numList (Line 6) and we can see the output as follows:
[30, 50, 70, 40]