Need To Do this in R Studio...Here are the Instruction
steps:
1. Using the 1:n construct, create the sequence 4,8,12, ...,
48.
2. Similarly, create the sequence 0,5,10,15, ..., 100.
3. Using a for() loop and the print() function, print the values
2,3,4,..., 7.
4. Using a for() loop and the print() function, print the values
8,11,14, ..., 26.
5. Create a vector with a length of 10. Then, using a for() loop,
assign the values
3,6,9, ..., 30. to...