Answer:
C.The Position section of the Insert Rows dialog box
Explanation:
A and B options are part of the steps for adding a completely new table to the document.
D option refers to how many rows will be added to the existing table.
Finally, C is correct, since it selects the <em>relative position</em> to add the new rows, using the currently selected row for reference.
The event is called keypress, usually the code is referred to as callback.
Answer:
Answer is in the attached screenshot.
Explanation:
Using regex to split a given input string via whitespace, then returns the first and last element of the array.
Answer:
The Proper codes in Line a and Line b is given below
average=Sum/3
print (" Average is = ", average)
Explanation:
In the given question it calculated the sum but the program does not calculate the average of the 3 numbers.The average of the 3 number is calculated by using average=Sum/3 statement so we add this code in Line a then After that print the value of average by using the print function so we add this code in Line b.