Answer:
i think the answer is c hope this helps!!!!!
Explanation:
Answer:
To create a list of the cells A2 to A12, convert the A2: A12 range to a table, then select the data validation tab, input list as the type and the name of the A2:A12 range table, and then click ok. This list can now be used as a validation list in another column or worksheet.
Explanation:
Microsoft Excel provides the power of tables and list for categorized data and data validation.
Answer:
1. Using meaningful names for all variables and functions.
2. Use shorter blocks of codes wherever possible
Explanation:
Their code should be easy to read, this can be achieved by avoiding complex syntax, basically they should adopt the two methods stated in the answer
The type of file which can be PNG, Jpg, etc.
Answer:
a. grep 'b[au]nk$' myLine
Explanation:
grep is a command used for searching a specified pattern in a given text.
Our goal is to match the character sequence - bank or bunk at the end of line in a given line referenced by myLine.
The regular expression for the specified match criterion is:
b[au]nk$
The second character can be either a or u.
$ indicates match at end of line.
So the overall grep command is :
grep 'b[au]nk$' myLine