Basic Programming Pointers 2
Basic Programming Pointers 2
Processing
-> Operations done on this information (input data) is
called Processing.
Output Devices
->These are the computer hardware devices that help
in converting information into human-readable form.
1. Algorithm
->Set of steps or instructions followed to accomplish
specific tasks.
2. Source Code
->The actual text that is used to construct the
program using the language of choice.
3. Compiler
->Helps convert the source code into binary or byte
code it is also called machine language.
4. Data Type
->Can be whole number (integer), floating-point
(decimal point numbers), characters or objects.
5. Variable
->Space holder for the value stored in the memory and
its value can be used in the application.
6. Conditionals
->Knowledge of how to use a certain condition, such
that a set of code should execute only if a certain
condition is true. In case of a false condition, the
program should exit and should not continue the code
further.
7. Array
->The variable that stores elements of a similar data
type.
8. Loop
->Used to execute the series of code until the
condition is true.
9. Function
->Used to accomplish a task in programming. They are
also used to reuse them whenever required at any place
repeatedly.
10. Class
-> A template that contains state and behavior, which
corresponding to programming field and method.
Top Computer programming languages
1. Java
2. C
3. Python
4. C++
5. Visual Basic.NET
6. C#
7. JavaScript
8. PHP
9. SQL
10. Objective - C
1. Low-Level Language
-> hardware dependent and difficult to understand
Machine Language
Assembly Language
2. High-Level Language
->Independent of a hardware and their codes are very
simple and developers can read, write, and debug as
they are similar to English like statements.
Procedural Language
Non-procedural Language
Object-oriented Language
Input
Output
Arithmetic
Conditional
Looping