Can someone pls note down all the terms that revolve around computer programming. Terms like syntax and compiler and then some. Also if you could give the meaning to the terms that would be great. Sorry about the bad literature.
here are the basics:
compiler- the pogram which translates the code you write(called the source code) into a sequence of machine language(that which the computer understands)
data type-tells what kind of data a variable holds, say: Integer x, denotes that x is an Integer.
data structure-a mathematical model for data handling, it could be an array(a list with a set number of elements of the same data type) or a linked list(a dynamic array).
control flow structure- are statements that denote loops(while) or conditionals(if and else).
what language do you use?
October 9th, 2009 at 4:35 pm
Nope.
References :
October 9th, 2009 at 5:09 pm
thats a broad request. there’s many languages and who knows how many terms. be more specific
References :
October 9th, 2009 at 5:45 pm
here are the basics:
compiler- the pogram which translates the code you write(called the source code) into a sequence of machine language(that which the computer understands)
data type-tells what kind of data a variable holds, say: Integer x, denotes that x is an Integer.
data structure-a mathematical model for data handling, it could be an array(a list with a set number of elements of the same data type) or a linked list(a dynamic array).
control flow structure- are statements that denote loops(while) or conditionals(if and else).
what language do you use?
References :
October 9th, 2009 at 6:02 pm
http://www.webopedia.com/Programming/
References :