The keys in all rows that's sit between the touch keys are the stretch key
Answer:
1. t is a function used to transpose a matrix object. The object is passed as an argument to the function.
2. matplot is a graphical function in R used for data visualization.
3. The c function is used to combine arguments.
4. seq is an R function used to derive a range of numbers, optionally specifying a start, stop and step argument or simply a single numeric argument.
5. legends are used in data visualization to list and define items in the graphical presentation.
6. matrix is a function in R used to create and work with matrix and data frame objects.
7. rownames and colnames are functions used to label the row and columns of a data frame in R.
8. The typeof function return the data type of an object.
Explanation:
The R programming language is a dedicated programming language for data analysis and visualization.
Pseudocode algorithms are used as prototypes of an actual program.
The required pseudocode algorithm is as follows:
- <em>Start</em>
- <em>input name, score, test_worth</em>
- <em>percent_score = score/test_worth * 100</em>
- <em>print name, percent_score</em>
- <em>Stop</em>
<em />
<em />
The first line begins the pseudocode algorithm
<em>Start</em>
The second line gets input for the student's name, score and the worth of the test
<em>input name, score, test_worth</em>
The third line calculates the percentage score
<em>percent_score = score/test_worth * 100</em>
The next line prints the student's name and the percentage score
<em>print name, percent_score</em>
The last line ends the pseudocode
<em>Stop</em>
<em />
<em />
<em />
Read more about pseudocode algorithms at:
brainly.com/question/21172316
Your answer is overall design