Ask Question
17 February, 07:14

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

+1
Answers (1)
  1. 17 February, 08:24
    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?
Find an answer to your question ✅ “Write a program to display the following series of numbers 10 20 ...” in 📘 Business if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers