Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

I need help, i am a beginner programmer.

+1 vote
asked Mar 23, 2018 by Amon Kiper (170 points)
I have to design a module named timesTen. The module should accept an Integer argument. When the module is called, it should display the product of its argument multiplied times 10.

2 Answers

0 votes
answered Mar 23, 2018 by Shane Such (860 points)
try it out first what language are you using?
commented Mar 28, 2018 by SAIKIRAN KALAHASTI (110 points)
computer programming
commented Mar 28, 2018 by Femrost
In computer programming there are multiple languages you can use like with speaking or writing. I could be writing this in spanish,french,German etc. But I know English  In programing you use different languages like html c++(the one I know) c, c#,java, Java script,visual basic and others. So what language are you using
0 votes
answered Mar 27, 2018 by MaHi

in C, C++, C#

 int timesTen(int number)

 {

   return number*10;

 }

in VB

Public Function timesTen(byval number As Integer) As Integer

     Return (number * 10)

End Function

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...