Ask Question
25 January, 08:01

Write a program to display the following series of numbers 10 20

+3
Answers (1)
  1. 25 January, 11:53
    0
    R software or Rstudio:-

    x = seq (10, 100, by = 10)

    run x

    [1] 10 20 30 40 50 60 70 80 90 100

    Explanation:

    Programming Language called R and Rstudio, statistical tool to analyze data. x is a variable which saves the data in a vector programming R. seq full form is sequence which is function to imply a set of instruction. 10 in function mean from where to start the sequencing from 100 in function mean to where to end the sequencing to. by means do you want it sequence in 10,100 or 1000. so it updates as per above by 10 [1].
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a program to display the following series of numbers 10 20 ...” in 📙 Business if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers