Answer:
function
increase_elements_by_x (list, x)
{
var tplist = [];
for (i = 0; i < list.length; i++)
{
tplist[i] = list[i] + x;
print (tplist[i])}
return tplist;
}
var list =[1, 3, 5];
var copyList;
var x = 3;
copyList = increase_elements_by_x (list, x);
print (copyList);
Explanation:
Create a list named list with initial data 1,3,5.
Create a function name increase_elements_by_x which takes list and number as argument.Create empty list tplist. Loop through list, for ever index add x to list[index] and save to an empty list tplist. After loop is exited return tplist.
create a variable copylist and set it to increase_elements_by_x. Value returned by increase_elements_by_x will be saved in copylist. print copy list to see content of copy list.
True vitamins and minerals dissolves in water
Answer: Pulldown menus
Explanation:
Pulldown menus refer to the graphical control element, that is identical to a list box, which enables user to be bake to select one value from a list.
They're regarded as the menu of options that will appear when an item is selected with a mouse. In this case, the item that the user selected will show at the top of the display screen, while the menu appears will show below it.
Therefore, Alex should use the pulldown menus to hide the long list of hypertext links so that it appears only in response to a tap of a major heading in the navigation list.
Answer:
The solution for the current situation in which Skylar is viewing her personal and business calendar in a side-by-side fashion, but she would like to view a single calendar that has appointments and meetings from both personal and business. is:
Configure the Overlay option.
Explanation:
The reasons behind this answer are that in the first place, creating another calendar is too much work. In the second place, the share of the calendars is not going to help her because that would only allow someone else to watch her calendars. However, using the overlay option will allow her to mix them and create one calendar with all her information.
Answer:
The steps to create table, hide boarder and show border around the whole table is given below.
Explanation:
<u>1. Create Table</u>
- Click on insert Tab
- In insert tab, Click on Table
- Select No. of row and columns to create the table
<u>2. Hiding Boarders</u>
- Click on Design Tab
- In table style section Choose the layout that have no boarder
<u>3. Add boarder Around table</u>
- Click on Design Tab
- Select whole table by clicking on Plus sign on the top right corner of table
- Click on arrow of boarders button in Boarders section in design tab
- Select the "outside boarder" option from the list
<em>By following above mentioned steps, jennnine can draw a boarder around the table to distinguish it from rest of the document.</em>