I'm from non-it background. Its hard for me to understand the technical terms of programming. Can anyone help me in this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

I'm from non-it background. Its hard for me to understand the technical terms of programming. Can anyone help me in this

I can able to understand the concepts of programming. Only concern is I could not understand the technical terms like what is parameter arguments etc.

8th Dec 2019, 4:50 PM
Aravind
23 Answers
+ 7
If the tutorials here don't help with anything, you can always do a web search and learn online or read a book.
9th Dec 2019, 5:55 AM
Sonic
Sonic - avatar
+ 6
If you have a specific issue, ask it in Q&A.
9th Dec 2019, 5:55 AM
Sonic
Sonic - avatar
+ 2
@Aravind Sometimes parameters and arguments are used interchangeably. A parameter is a variable in a method definition. public string MethodOfAction(string myParameter1) // this is the parameter which is a variable in the declaring the method { do some sort of action here } When a method is called, the argument is the data that you pass into the method's parameters class Program { static void Main(string[] args) { string theArgument = "abcdefg"; Console.WriteLine(MethodOfAction(theArgument)); //this argument,the actual value, is then passed to the method } hope that helps. :)
8th Dec 2019, 6:28 PM
laura
+ 1
An argument is the value being passed into the parameter. So an argument shows up in a function or method call. A parameter is defined in the function or method heading. For example, if I have a function that calculates an average based on a sum and a count. I would call it like this avg = CalcAverage(total, count); Here total and count are arguments. The prototype would look something like this. double CalcAverage(int sum, int count); sum and count are the parameters.
9th Dec 2019, 8:58 AM
Michele
Michele - avatar
+ 1
Aravind use Google or read from a book , parameters are like any variable in function brackets , arguments are the values provided for those parameters when making a function call def func(a,b,c): F= a+b+c return F func(1,4,5) a,b,c-->parameters 1,4,5-->arguments
9th Dec 2019, 10:53 AM
Abhay
Abhay - avatar
+ 1
9th Dec 2019, 11:26 AM
Aravind
0
Non - IT background? What is your stream?
8th Dec 2019, 4:59 PM
onekpsc
0
Civil Engineering
8th Dec 2019, 5:00 PM
Aravind
0
Cool , I am also a civil engineer. Welcome to sololearn
8th Dec 2019, 5:02 PM
onekpsc
0
🙌🙌
8th Dec 2019, 5:03 PM
Aravind
0
Bending Moment and Shear Forces doesn't work here. 🙂
8th Dec 2019, 5:07 PM
onekpsc
0
What do you want to learn?
8th Dec 2019, 5:07 PM
onekpsc
0
😅😅
8th Dec 2019, 5:08 PM
Aravind
0
I would like to understand the technical terms of programming. Like what is meant by arguments, parameters etc
8th Dec 2019, 5:09 PM
Aravind
0
People will report this conversation to sololearn since we are off the topic. We can talk privately on how computer science can be implemented to civil engineering field.
8th Dec 2019, 5:11 PM
onekpsc
0
Okay fine
8th Dec 2019, 5:12 PM
Aravind
0
Thanks Laura
9th Dec 2019, 12:49 AM
Aravind
0
...
9th Dec 2019, 6:42 AM
Jomari Ian Lopez
Jomari Ian Lopez - avatar
0
You can start with python or SQL. They are quite easy to comprehend for people without programing background.
9th Dec 2019, 12:33 PM
Tolulope Emmanuel Adeliyi
Tolulope Emmanuel Adeliyi - avatar
0
Okay Tolulope E Adeliyi I'll try that.
9th Dec 2019, 2:24 PM
Aravind